{ "$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-world-export-job-summary-schema.json", "title": "WorldExportJobSummary", "description": "Information about a world export job.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the world export job." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/WorldExportJobStatus" }, { "description": "

The status of the world export job.

Pending

The world export job request is pending.

Running

The world export job is running.

Completed

The world export job completed.

Failed

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

Canceled

The world export job was cancelled.

Canceling

The world export job is being cancelled.

" } ] }, "createdAt": { "allOf": [ { "$ref": "#/components/schemas/CreatedAt" }, { "description": "The time, in milliseconds since the epoch, when the world export job was created." } ] }, "worlds": { "allOf": [ { "$ref": "#/components/schemas/Arns" }, { "description": "A list of worlds." } ] }, "outputLocation": { "$ref": "#/components/schemas/OutputLocation" } } }