{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-schema/amazon-mainframe-modernization-deployment-summary-schema.json", "title": "DeploymentSummary", "description": "A subset of information about a specific deployment.", "type": "object", "properties": { "applicationId": { "allOf": [ { "$ref": "#/components/schemas/Identifier" }, { "description": "The unique identifier of the application." } ] }, "applicationVersion": { "allOf": [ { "$ref": "#/components/schemas/Version" }, { "description": "The version of the application." } ] }, "creationTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The timestamp when the deployment was created." } ] }, "deploymentId": { "allOf": [ { "$ref": "#/components/schemas/Identifier" }, { "description": "The unique identifier of the deployment." } ] }, "environmentId": { "allOf": [ { "$ref": "#/components/schemas/Identifier" }, { "description": "The unique identifier of the runtime environment." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/DeploymentLifecycle" }, { "description": "The current status of the deployment." } ] }, "statusReason": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The reason for the reported status." } ] } }, "required": [ "applicationId", "applicationVersion", "creationTime", "deploymentId", "environmentId", "status" ] }