{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationSummary", "title": "ApplicationSummary", "type": "object", "required": [ "ApplicationName", "ApplicationARN", "ApplicationStatus", "ApplicationVersionId", "RuntimeEnvironment" ], "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." } ] } }, "description": "Provides application summary information, including the application Amazon Resource Name (ARN), name, and status." }