{ "$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-finished-worlds-summary-schema.json", "title": "FinishedWorldsSummary", "description": "Information about worlds that finished.", "type": "object", "properties": { "finishedCount": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "The total number of finished worlds." } ] }, "succeededWorlds": { "allOf": [ { "$ref": "#/components/schemas/Arns" }, { "description": "A list of worlds that succeeded." } ] }, "failureSummary": { "allOf": [ { "$ref": "#/components/schemas/FailureSummary" }, { "description": "Information about worlds that failed." } ] } } }