Skip to content

Commit 9b11e55

Browse files
committed
fix: update schema
1 parent f606f89 commit 9b11e55

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$ref": "#/definitions/BundleUninstallResult",
4+
"definitions": {
5+
"BundleUninstallResult": {
6+
"$ref": "#/definitions/BundleSObjects.PkgBundleVerUninstallReqResult"
7+
},
8+
"BundleSObjects.PkgBundleVerUninstallReqResult": {
9+
"type": "object",
10+
"additionalProperties": false,
11+
"properties": {
12+
"Id": {
13+
"type": "string"
14+
},
15+
"UninstallStatus": {
16+
"$ref": "#/definitions/BundleSObjects.PkgBundleVersionUninstallReqStatus"
17+
},
18+
"CreatedDate": {
19+
"type": "string"
20+
},
21+
"CreatedById": {
22+
"type": "string"
23+
},
24+
"Error": {
25+
"type": "array",
26+
"items": {
27+
"type": "string"
28+
}
29+
},
30+
"PackageBundleVersionId": {
31+
"type": "string"
32+
},
33+
"InstalledPkgBundleVersionId": {
34+
"type": "string"
35+
},
36+
"ValidationError": {
37+
"type": "string"
38+
}
39+
},
40+
"required": ["CreatedById", "CreatedDate", "Id", "PackageBundleVersionId", "UninstallStatus"]
41+
},
42+
"BundleSObjects.PkgBundleVersionUninstallReqStatus": {
43+
"type": "string",
44+
"enum": ["Queued", "InProgress", "Success", "Error"]
45+
}
46+
}
47+
}

0 commit comments

Comments
 (0)