{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-application-summary-schema.json", "title": "ApplicationSummary", "description": "Provides application summary information, including the application Amazon Resource Name (ARN), name, and status.", "type": "object", "properties": { "ApplicationName": { "allOf": [ { "$ref": "#/components/schemas/ApplicationName" }, { "description": "The name of the application." } ] }, "ApplicationARN": { "allOf": [ { "$ref": "#/components/schemas/ResourceARN" }, { "description": "The ARN of the application." } ] }, "ApplicationStatus": { "allOf": [ { "$ref": "#/components/schemas/ApplicationStatus" }, { "description": "The status of the application." } ] }, "ApplicationVersionId": { "allOf": [ { "$ref": "#/components/schemas/ApplicationVersionId" }, { "description": "Provides the current application version." } ] }, "RuntimeEnvironment": { "allOf": [ { "$ref": "#/components/schemas/RuntimeEnvironment" }, { "description": "The runtime environment for the application." } ] }, "ApplicationMode": { "allOf": [ { "$ref": "#/components/schemas/ApplicationMode" }, { "description": "For a Kinesis Data Analytics for Apache Flink application, the mode is STREAMING. For a Kinesis Data Analytics Studio notebook, it is INTERACTIVE." } ] } }, "required": [ "ApplicationName", "ApplicationARN", "ApplicationStatus", "ApplicationVersionId", "RuntimeEnvironment" ] }