Amazon HealthOmics · Schema

FileInformation

Details about a file.

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
totalParts object
partSize object
contentLength object
View JSON Schema on GitHub

JSON Schema

healthomics-file-information-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-file-information-schema.json",
  "title": "FileInformation",
  "type": "object",
  "properties": {
    "totalParts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FileInformationTotalPartsInteger"
        },
        {
          "description": "The file's total parts."
        }
      ]
    },
    "partSize": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FileInformationPartSizeLong"
        },
        {
          "description": "The file's part size."
        }
      ]
    },
    "contentLength": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FileInformationContentLengthLong"
        },
        {
          "description": "The file's content length."
        }
      ]
    }
  },
  "description": "Details about a file."
}