Amazon HealthOmics · Schema

ListWorkflowsResponse

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
items object
nextToken object
View JSON Schema on GitHub

JSON Schema

healthomics-list-workflows-response-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-list-workflows-response-schema.json",
  "title": "ListWorkflowsResponse",
  "type": "object",
  "properties": {
    "items": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowList"
        },
        {
          "description": "The workflows' items."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowListToken"
        },
        {
          "description": "A pagination token that's included if more results are available."
        }
      ]
    }
  }
}