LiveSimulationState

A collection of additional state information, such as domain and clock configuration.

DefenseDigital TwinSimulationSpatial Simulation

Properties

Name Type Description
Clocks object
Domains object
View JSON Schema on GitHub

JSON Schema

amazon-simspace-weaver-live-simulation-state-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-live-simulation-state-schema.json",
  "title": "LiveSimulationState",
  "description": "A collection of additional state information, such as domain and clock configuration.",
  "type": "object",
  "properties": {
    "Clocks": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SimulationClockList"
        },
        {
          "description": "<p>A list of simulation clocks.</p> <note> <p>At this time, a simulation has only one clock.</p> </note>"
        }
      ]
    },
    "Domains": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainList"
        },
        {
          "description": "A list of domains for the simulation. For more information about domains, see <a href=\"https://docs.aws.amazon.com/simspaceweaver/latest/userguide/what-is_key-concepts.html#what-is_key-concepts_domains\">Key concepts: Domains</a> in the <i>SimSpace Weaver User Guide</i>."
        }
      ]
    }
  }
}