Amazon RoboMaker · Schema
CreateWorldTemplateRequest
CreateWorldTemplateRequest schema from openapi
RoboticsSimulation
Properties
| Name | Type | Description |
|---|---|---|
| clientRequestToken | object | |
| name | object | |
| templateBody | object | |
| templateLocation | object | |
| tags | object |
JSON Schema
{
"$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-create-world-template-request-schema.json",
"title": "CreateWorldTemplateRequest",
"description": "CreateWorldTemplateRequest schema from openapi",
"type": "object",
"properties": {
"clientRequestToken": {
"allOf": [
{
"$ref": "#/components/schemas/ClientRequestToken"
},
{
"description": "Unique, case-sensitive identifier that you provide to ensure the idempotency of the request."
}
]
},
"name": {
"allOf": [
{
"$ref": "#/components/schemas/TemplateName"
},
{
"description": "The name of the world 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."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagMap"
},
{
"description": "A map that contains tag keys and tag values that are attached to the world template."
}
]
}
}
}