Amazon HealthOmics · Schema

WorkflowParameter

A workflow parameter.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
description object
optional object
View JSON Schema on GitHub

JSON Schema

healthomics-workflow-parameter-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-parameter-schema.json",
  "title": "WorkflowParameter",
  "type": "object",
  "properties": {
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowParameterDescription"
        },
        {
          "description": "The parameter's description."
        }
      ]
    },
    "optional": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Whether the parameter is optional."
        }
      ]
    }
  },
  "description": "A workflow parameter."
}