UNPKG

@salesforce/plugin-packaging

Version:

SF plugin that support Salesforce Packaging Platform

63 lines 1.48 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "$ref": "#/definitions/ReportCommandResult", "definitions": { "ReportCommandResult": { "type": "array", "items": { "$ref": "#/definitions/BundleSObjects.PkgBundleVersionInstallReqResult" } }, "BundleSObjects.PkgBundleVersionInstallReqResult": { "type": "object", "additionalProperties": false, "properties": { "Id": { "type": "string" }, "InstallStatus": { "$ref": "#/definitions/BundleSObjects.PkgBundleVersionInstallReqStatus" }, "ValidationError": { "type": "string" }, "CreatedDate": { "type": "string" }, "CreatedById": { "type": "string" }, "Error": { "type": "array", "items": { "type": "string" } }, "PackageBundleVersionId": { "type": "string" }, "DevelopmentOrganization": { "type": "string" } }, "required": [ "CreatedById", "CreatedDate", "DevelopmentOrganization", "Id", "InstallStatus", "PackageBundleVersionId", "ValidationError" ] }, "BundleSObjects.PkgBundleVersionInstallReqStatus": { "type": "string", "enum": [ "Queued", "InProgress", "Success", "Error" ] } } }