{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-create-application-request-schema.json", "title": "CreateApplicationRequest", "description": "CreateApplicationRequest schema from Amazon CodeDeploy", "type": "object", "properties": { "applicationName": { "type": "string", "description": "The name of the application." }, "computePlatform": { "type": "string", "description": "The destination platform type for the deployment.", "enum": [ "Server", "Lambda", "ECS" ] } }, "required": [ "applicationName" ] }