{ "$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-application-version-summary-schema.json", "title": "ApplicationVersionSummary", "description": "Defines an application version summary.", "type": "object", "properties": { "applicationVersion": { "allOf": [ { "$ref": "#/components/schemas/Version" }, { "description": "The application version." } ] }, "creationTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The timestamp when the application version was created." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/ApplicationVersionLifecycle" }, { "description": "The status of the application." } ] }, "statusReason": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The reason for the reported status." } ] } }, "required": [ "applicationVersion", "creationTime", "status" ] }