{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListImportTasksOutput", "title": "ListImportTasksOutput", "type": "object", "properties": { "tasks": { "type": "array", "items": { "type": "object", "properties": { "graphId": { "type": "string" }, "taskId": { "type": "string" }, "source": { "type": "string" }, "format": { "type": "string" }, "roleArn": { "type": "string" }, "status": { "type": "string" } } } }, "nextToken": { "type": "string" } } }