{ "$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-generation-job-response-schema.json", "title": "CreateWorldGenerationJobResponse", "description": "CreateWorldGenerationJobResponse schema from openapi", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the world generator job." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/WorldGenerationJobStatus" }, { "description": "

The status of the world generator job.

Pending

The world generator job request is pending.

Running

The world generator job is running.

Completed

The world generator job completed.

Failed

The world generator job failed. See failureCode for more information.

PartialFailed

Some worlds did not generate.

Canceled

The world generator job was cancelled.

Canceling

The world generator job is being cancelled.

" } ] }, "createdAt": { "allOf": [ { "$ref": "#/components/schemas/CreatedAt" }, { "description": "The time, in milliseconds since the epoch, when the world generator job was created." } ] }, "failureCode": { "allOf": [ { "$ref": "#/components/schemas/WorldGenerationJobErrorCode" }, { "description": "

The failure code of the world generator job if it failed:

InternalServiceError

Internal service error.

LimitExceeded

The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.

ResourceNotFound

The specified resource could not be found.

RequestThrottled

The request was throttled.

InvalidInput

An input parameter in the request is not valid.

" } ] }, "clientRequestToken": { "allOf": [ { "$ref": "#/components/schemas/ClientRequestToken" }, { "description": "Unique, case-sensitive identifier that you provide to ensure the idempotency of the request." } ] }, "template": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (arn) of the world template." } ] }, "worldCount": { "allOf": [ { "$ref": "#/components/schemas/WorldCount" }, { "description": "Information about the world count. " } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagMap" }, { "description": "A map that contains tag keys and tag values that are attached to the world generator job." } ] }, "worldTags": { "allOf": [ { "$ref": "#/components/schemas/TagMap" }, { "description": "A map that contains tag keys and tag values that are attached to the generated worlds." } ] } } }