{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-export-read-set-job-detail-schema.json", "name": "ExportReadSetJobDetail", "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 job's sequence store ID." } ] }, "destination": { "allOf": [ { "$ref": "#/components/schemas/S3Destination" }, { "description": "The job's destination in Amazon S3." } ] }, "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." } ] }, "completionTime": { "allOf": [ { "$ref": "#/components/schemas/SyntheticTimestamp_date_time" }, { "description": "When the job completed." } ] } }, "description": "Details about a read set export job." }