{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-schema/amazon-robomaker-openapi-deployment-config-schema.json", "title": "DeploymentConfig", "description": "Information about a deployment configuration.", "type": "object", "properties": { "concurrentDeploymentPercentage": { "allOf": [ { "$ref": "#/components/schemas/Percentage" }, { "description": "The percentage of robots receiving the deployment at the same time." } ] }, "failureThresholdPercentage": { "allOf": [ { "$ref": "#/components/schemas/Percentage" }, { "description": "The percentage of deployments that need to fail before stopping deployment." } ] }, "robotDeploymentTimeoutInSeconds": { "allOf": [ { "$ref": "#/components/schemas/DeploymentTimeout" }, { "description": "The amount of time, in seconds, to wait for deployment to a single robot to complete. Choose a time between 1 minute and 7 days. The default is 5 hours." } ] }, "downloadConditionFile": { "allOf": [ { "$ref": "#/components/schemas/S3Object" }, { "description": "The download condition file." } ] } } }