{ "$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-create-application-response-schema.json", "title": "CreateApplicationResponse", "description": "CreateApplicationResponse schema from AWS Mainframe Modernization API", "type": "object", "properties": { "applicationArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the application." } ] }, "applicationId": { "allOf": [ { "$ref": "#/components/schemas/Identifier" }, { "description": "The unique application identifier." } ] }, "applicationVersion": { "allOf": [ { "$ref": "#/components/schemas/Version" }, { "description": "The version number of the application." } ] } }, "required": [ "applicationArn", "applicationId", "applicationVersion" ] }