{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImportTaskOutput", "title": "ImportTaskOutput", "type": "object", "properties": { "graphId": { "type": "string" }, "taskId": { "type": "string" }, "source": { "type": "string" }, "format": { "type": "string" }, "roleArn": { "type": "string" }, "status": { "type": "string", "enum": [ "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED" ] }, "importOptions": { "type": "object" }, "importTaskDetails": { "type": "object", "properties": { "status": { "type": "string" }, "startTime": { "type": "string", "format": "date-time" }, "timeElapsedSeconds": { "type": "integer" }, "progressPercentage": { "type": "integer" }, "errorCount": { "type": "integer" }, "errorDetails": { "type": "string" }, "statementCount": { "type": "integer" }, "dictionaryEntryCount": { "type": "integer" } } } } }