Amazon HealthOmics · JSON Structure

Healthomics Task List Item Structure

A workflow run task.

Type: object Properties: 9
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

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

Properties

taskId status name cpus memory creationTime startTime stopTime gpus

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-task-list-item-schema.json",
  "name": "TaskListItem",
  "type": "object",
  "properties": {
    "taskId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskId"
        },
        {
          "description": "The task's ID."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskStatus"
        },
        {
          "description": "The task's status."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskName"
        },
        {
          "description": "The task's name."
        }
      ]
    },
    "cpus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskListItemCpusInteger"
        },
        {
          "description": "The task's CPU count."
        }
      ]
    },
    "memory": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskListItemMemoryInteger"
        },
        {
          "description": "The task's memory use in gigabyes."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskTimestamp"
        },
        {
          "description": "When the task was created."
        }
      ]
    },
    "startTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskTimestamp"
        },
        {
          "description": "When the task started."
        }
      ]
    },
    "stopTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskTimestamp"
        },
        {
          "description": "When the task stopped."
        }
      ]
    },
    "gpus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskListItemGpusInteger"
        },
        {
          "description": " The number of Graphics Processing Units (GPU) specified for the task. "
        }
      ]
    }
  },
  "description": "A workflow run task."
}