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/BundleListCommandResults", "definitions": { "BundleListCommandResults": { "type": "array", "items": { "$ref": "#/definitions/BundleListCommandResult" } }, "BundleListCommandResult": { "$ref": "#/definitions/BundleSObjects.Bundle" }, "BundleSObjects.Bundle": { "type": "object", "properties": { "BundleName": { "type": "string" }, "Description": { "type": "string" }, "Id": { "type": "string" }, "IsDeleted": { "type": "boolean" }, "CreatedDate": { "type": "string" }, "CreatedById": { "type": "string" }, "LastModifiedDate": { "type": "string" }, "LastModifiedById": { "type": "string" }, "SystemModstamp": { "type": "string" } }, "required": [ "BundleName", "Id", "IsDeleted", "CreatedDate", "CreatedById", "LastModifiedDate", "LastModifiedById", "SystemModstamp" ], "additionalProperties": false } } }