{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Deployment", "title": "Deployment", "type": "object", "properties": { "id": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The identifier for the deployment resource." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The description for the deployment resource." } ] }, "createdDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time that the deployment resource was created." } ] }, "apiSummary": { "allOf": [ { "$ref": "#/components/schemas/PathToMapOfMethodSnapshot" }, { "description": "A summary of the RestApi at the date and time that the deployment resource was created." } ] } }, "description": "An immutable representation of a RestApi resource that can be called by users using Stages. A deployment must be associated with a Stage for it to be callable over the Internet." }