{ "$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-failed-create-simulation-job-request-schema.json", "title": "FailedCreateSimulationJobRequest", "description": "Information about a failed create simulation job request.", "type": "object", "properties": { "request": { "allOf": [ { "$ref": "#/components/schemas/SimulationJobRequest" }, { "description": "The simulation job request." } ] }, "failureReason": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The failure reason of the simulation job request." } ] }, "failureCode": { "allOf": [ { "$ref": "#/components/schemas/SimulationJobErrorCode" }, { "description": "The failure code." } ] }, "failedAt": { "allOf": [ { "$ref": "#/components/schemas/FailedAt" }, { "description": "The time, in milliseconds since the epoch, when the simulation job batch failed." } ] } } }