{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-run-list-item-schema.json", "name": "RunListItem", "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." } ] }, "workflowId": { "allOf": [ { "$ref": "#/components/schemas/WorkflowId" }, { "description": "The run's workflow ID." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/RunName" }, { "description": "The run's name." } ] }, "priority": { "allOf": [ { "$ref": "#/components/schemas/RunListItemPriorityInteger" }, { "description": "The run's priority." } ] }, "storageCapacity": { "allOf": [ { "$ref": "#/components/schemas/RunListItemStorageCapacityInteger" }, { "description": "The run's storage capacity." } ] }, "creationTime": { "allOf": [ { "$ref": "#/components/schemas/RunTimestamp" }, { "description": "When the run was created." } ] }, "startTime": { "allOf": [ { "$ref": "#/components/schemas/RunTimestamp" }, { "description": "When the run started." } ] }, "stopTime": { "allOf": [ { "$ref": "#/components/schemas/RunTimestamp" }, { "description": "When the run stopped." } ] } }, "description": "A workflow run." }