The SyncJob status.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-sync-job-status-schema.json", "title": "SyncJobStatus", "description": "The SyncJob status.", "type": "object", "properties": { "state": { "allOf": [ { "$ref": "#/components/schemas/SyncJobState" }, { "description": "The SyncJob status state." } ] }, "error": { "allOf": [ { "$ref": "#/components/schemas/ErrorDetails" }, { "description": "The SyncJob error." } ] } } }