Amazon HealthOmics · Schema

SourceFiles

Source files for a sequence.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
source1 object
source2 object
View JSON Schema on GitHub

JSON Schema

healthomics-source-files-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-source-files-schema.json",
  "title": "SourceFiles",
  "type": "object",
  "required": [
    "source1"
  ],
  "properties": {
    "source1": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Uri"
        },
        {
          "description": "The location of the first file in Amazon S3."
        }
      ]
    },
    "source2": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Uri"
        },
        {
          "description": "The location of the second file in Amazon S3."
        }
      ]
    }
  },
  "description": "Source files for a sequence."
}