Amazon HealthOmics · Schema
GetReadSetImportJobResponse
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing
Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| sequenceStoreId | object | |
| roleArn | object | |
| status | object | |
| statusMessage | object | |
| creationTime | object | |
| completionTime | object | |
| sources | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-get-read-set-import-job-response-schema.json",
"title": "GetReadSetImportJobResponse",
"type": "object",
"required": [
"id",
"sequenceStoreId",
"roleArn",
"status",
"creationTime",
"sources"
],
"properties": {
"id": {
"allOf": [
{
"$ref": "#/components/schemas/ImportJobId"
},
{
"description": "The job's ID."
}
]
},
"sequenceStoreId": {
"allOf": [
{
"$ref": "#/components/schemas/SequenceStoreId"
},
{
"description": "The job's sequence store ID."
}
]
},
"roleArn": {
"allOf": [
{
"$ref": "#/components/schemas/RoleArn"
},
{
"description": "The job's service role ARN."
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/ReadSetImportJobStatus"
},
{
"description": "The job's status."
}
]
},
"statusMessage": {
"allOf": [
{
"$ref": "#/components/schemas/JobStatusMessage"
},
{
"description": "The job's status message."
}
]
},
"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."
}
]
},
"sources": {
"allOf": [
{
"$ref": "#/components/schemas/ImportReadSetSourceList"
},
{
"description": "The job's source files."
}
]
}
}
}