StopAppInput

StopAppInput schema from Amazon SimSpace Weaver API

DefenseDigital TwinSimulationSpatial Simulation

Properties

Name Type Description
App object
Domain object
Simulation object
View JSON Schema on GitHub

JSON Schema

amazon-simspace-weaver-stop-app-input-schema.json Raw ↑
{
  "$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-stop-app-input-schema.json",
  "title": "StopAppInput",
  "description": "StopAppInput schema from Amazon SimSpace Weaver API",
  "type": "object",
  "properties": {
    "App": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SimSpaceWeaverResourceName"
        },
        {
          "description": "The name of the app."
        }
      ]
    },
    "Domain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SimSpaceWeaverResourceName"
        },
        {
          "description": "The name of the domain of the app."
        }
      ]
    },
    "Simulation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SimSpaceWeaverResourceName"
        },
        {
          "description": "The name of the simulation of the app."
        }
      ]
    }
  },
  "required": [
    "App",
    "Domain",
    "Simulation"
  ]
}