{ "$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-code-configuration-description-schema.json", "title": "ApplicationCodeConfigurationDescription", "description": "Describes code configuration for an application.", "type": "object", "properties": { "CodeContentType": { "allOf": [ { "$ref": "#/components/schemas/CodeContentType" }, { "description": "Specifies whether the code content is in text or zip format." } ] }, "CodeContentDescription": { "allOf": [ { "$ref": "#/components/schemas/CodeContentDescription" }, { "description": "Describes details about the location and format of the application code." } ] } }, "required": [ "CodeContentType" ] }