{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-start-read-set-export-job-response-schema.json", "name": "StartReadSetExportJobResponse", "type": "object", "required": [ "id", "sequenceStoreId", "destination", "status", "creationTime" ], "properties": { "id": { "allOf": [ { "$ref": "#/components/schemas/ExportJobId" }, { "description": "The job's ID." } ] }, "sequenceStoreId": { "allOf": [ { "$ref": "#/components/schemas/SequenceStoreId" }, { "description": "The read set's sequence store ID." } ] }, "destination": { "allOf": [ { "$ref": "#/components/schemas/S3Destination" }, { "description": "The job's output location." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/ReadSetExportJobStatus" }, { "description": "The job's status." } ] }, "creationTime": { "allOf": [ { "$ref": "#/components/schemas/SyntheticTimestamp_date_time" }, { "description": "When the job was created." } ] } } }