{ "$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-simulation-application-summary-schema.json", "title": "SimulationApplicationSummary", "description": "Summary information for a simulation application.", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The name of the simulation application." } ] }, "arn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the simulation application." } ] }, "version": { "allOf": [ { "$ref": "#/components/schemas/Version" }, { "description": "The version of the simulation application." } ] }, "lastUpdatedAt": { "allOf": [ { "$ref": "#/components/schemas/LastUpdatedAt" }, { "description": "The time, in milliseconds since the epoch, when the simulation application was last updated." } ] }, "robotSoftwareSuite": { "allOf": [ { "$ref": "#/components/schemas/RobotSoftwareSuite" }, { "description": "Information about a robot software suite (ROS distribution)." } ] }, "simulationSoftwareSuite": { "allOf": [ { "$ref": "#/components/schemas/SimulationSoftwareSuite" }, { "description": "Information about a simulation software suite." } ] } } }