Amazon RoboMaker · Schema

UpdateWorldTemplateRequest

UpdateWorldTemplateRequest schema from openapi

RoboticsSimulation

Properties

Name Type Description
template object
name object
templateBody object
templateLocation object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-update-world-template-request-schema.json Raw ↑
{
  "$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-update-world-template-request-schema.json",
  "title": "UpdateWorldTemplateRequest",
  "description": "UpdateWorldTemplateRequest schema from openapi",
  "type": "object",
  "properties": {
    "template": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (arn) of the world template to update."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateName"
        },
        {
          "description": "The name of the template."
        }
      ]
    },
    "templateBody": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Json"
        },
        {
          "description": "The world template body."
        }
      ]
    },
    "templateLocation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateLocation"
        },
        {
          "description": "The location of the world template."
        }
      ]
    }
  },
  "required": [
    "template"
  ]
}