{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-annotation-import-job-item-schema.json", "name": "AnnotationImportJobItem", "type": "object", "required": [ "id", "destinationName", "roleArn", "status", "creationTime", "updateTime" ], "properties": { "id": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The job's ID." } ] }, "destinationName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The job's destination annotation store." } ] }, "roleArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The job's service role ARN." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/JobStatus" }, { "description": "The job's status." } ] }, "creationTime": { "allOf": [ { "$ref": "#/components/schemas/CreationTime" }, { "description": "When the job was created." } ] }, "updateTime": { "allOf": [ { "$ref": "#/components/schemas/UpdateTime" }, { "description": "When the job was updated." } ] }, "completionTime": { "allOf": [ { "$ref": "#/components/schemas/CompletionTime" }, { "description": "When the job completed." } ] }, "runLeftNormalization": { "allOf": [ { "$ref": "#/components/schemas/RunLeftNormalization" }, { "description": "The job's left normalization setting." } ] }, "annotationFields": { "allOf": [ { "$ref": "#/components/schemas/AnnotationFieldMap" }, { "description": " The annotation schema generated by the parsed annotation data. " } ] } }, "description": "An annotation import job." }