Amazon HealthOmics · Schema

RunListItem

A workflow run.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
arn object
id object
status object
workflowId object
name object
priority object
storageCapacity object
creationTime object
startTime object
stopTime object
View JSON Schema on GitHub

JSON Schema

healthomics-run-list-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-run-list-item-schema.json",
  "title": "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."
}