Amazon HealthOmics · Schema

WorkflowListItem

A workflow.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
arn object
id object
name object
status object
type object
digest object
creationTime object
metadata object
View JSON Schema on GitHub

JSON Schema

healthomics-workflow-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-workflow-list-item-schema.json",
  "title": "WorkflowListItem",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowArn"
        },
        {
          "description": "The workflow's ARN."
        }
      ]
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowId"
        },
        {
          "description": "The workflow's ID."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowName"
        },
        {
          "description": "The workflow's name."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowStatus"
        },
        {
          "description": "The workflow's status."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowType"
        },
        {
          "description": "The workflow's type."
        }
      ]
    },
    "digest": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowDigest"
        },
        {
          "description": "The workflow's digest."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowTimestamp"
        },
        {
          "description": "When the workflow was created."
        }
      ]
    },
    "metadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowMetadata"
        },
        {
          "description": " Any metadata available for workflow. The information listed may vary depending on the workflow, and there may also be no metadata to return. "
        }
      ]
    }
  },
  "description": "A workflow."
}