{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simspace-weaver/refs/heads/main/json-schema/amazon-simspace-weaver-start-app-input-schema.json", "title": "StartAppInput", "description": "StartAppInput schema from Amazon SimSpace Weaver API", "type": "object", "properties": { "ClientToken": { "allOf": [ { "$ref": "#/components/schemas/ClientToken" }, { "description": "A value that you provide to ensure that repeated calls to this API operation using the same parameters complete only once. A ClientToken is also known as an idempotency token. A ClientToken expires after 24 hours." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "The description of the app." } ] }, "Domain": { "allOf": [ { "$ref": "#/components/schemas/SimSpaceWeaverResourceName" }, { "description": "The name of the domain of the app." } ] }, "LaunchOverrides": { "$ref": "#/components/schemas/LaunchOverrides" }, "Name": { "allOf": [ { "$ref": "#/components/schemas/SimSpaceWeaverResourceName" }, { "description": "The name of the app." } ] }, "Simulation": { "allOf": [ { "$ref": "#/components/schemas/SimSpaceWeaverResourceName" }, { "description": "The name of the simulation of the app." } ] } }, "required": [ "Domain", "Name", "Simulation" ] }