UNPKG

@salesforce/plugin-packaging

Version:

SF plugin that support Salesforce Packaging Platform

59 lines (58 loc) 1.28 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "$ref": "#/definitions/PackageListCommandResult", "definitions": { "PackageListCommandResult": { "type": "array", "items": { "$ref": "#/definitions/Package2Result" } }, "Package2Result": { "type": "object", "additionalProperties": false, "properties": { "SubscriberPackageId": { "type": "string" }, "Description": { "type": "string" }, "NamespacePrefix": { "type": "string" }, "ContainerOptions": { "$ref": "#/definitions/PackageType" }, "ConvertedFromPackageId": { "type": "string" }, "PackageErrorUsername": { "type": "string" }, "AppAnalyticsEnabled": { "type": "boolean" }, "Alias": { "type": "string" }, "CreatedBy": { "type": "string" }, "IsOrgDependent": { "type": "string" }, "Id": { "type": "string" }, "Name": { "type": "string" } } }, "PackageType": { "type": "string", "enum": ["Managed", "Unlocked"] } } }