@salesforce/plugin-packaging
Version:
SF plugin that support Salesforce Packaging Platform
74 lines (73 loc) • 1.81 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/PackageBundleVersionCreateRequestResults",
"definitions": {
"PackageBundleVersionCreateRequestResults": {
"type": "array",
"items": {
"$ref": "#/definitions/BundleSObjects.PackageBundleVersionCreateRequestResult"
}
},
"BundleSObjects.PackageBundleVersionCreateRequestResult": {
"type": "object",
"additionalProperties": false,
"properties": {
"Id": {
"type": "string"
},
"PackageBundleVersionId": {
"type": "string"
},
"RequestStatus": {
"$ref": "#/definitions/BundleSObjects.PkgBundleVersionCreateReqStatus"
},
"CreatedDate": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"Error": {
"type": "array",
"items": {
"type": "string"
}
},
"PackageBundleId": {
"type": "string"
},
"VersionName": {
"type": "string"
},
"MajorVersion": {
"type": "string"
},
"MinorVersion": {
"type": "string"
},
"BundleVersionComponents": {
"type": "string"
},
"Ancestor": {
"type": ["string", "null"]
}
},
"required": [
"BundleVersionComponents",
"CreatedById",
"CreatedDate",
"Id",
"MajorVersion",
"MinorVersion",
"PackageBundleId",
"PackageBundleVersionId",
"RequestStatus",
"VersionName"
]
},
"BundleSObjects.PkgBundleVersionCreateReqStatus": {
"type": "string",
"enum": ["Queued", "Success", "Error"]
}
}
}