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