Amazon HealthOmics · Schema
StartRunResponse
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing
Properties
| Name | Type | Description |
|---|---|---|
| arn | object | |
| id | object | |
| status | object | |
| tags | 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-start-run-response-schema.json",
"title": "StartRunResponse",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/RunArn"
},
{
"description": "The run's ARN."
}
]
},
"id": {
"allOf": [
{
"$ref": "#/components/schemas/RunId"
},
{
"description": "The run's ID."
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/RunStatus"
},
{
"description": "The run's status."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagMap"
},
{
"description": "The run's tags."
}
]
}
}
}