Amazon HealthOmics · JSON Structure

Healthomics Run List Item Structure

A workflow run.

Type: object Properties: 10
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

RunListItem is a JSON Structure definition published by Amazon HealthOmics, describing 10 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

arn id status workflowId name priority storageCapacity creationTime startTime stopTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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."
}