Amazon HealthOmics · JSON Structure

Healthomics File Information Structure

Details about a file.

Type: object Properties: 3
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

FileInformation is a JSON Structure definition published by Amazon HealthOmics, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

totalParts partSize contentLength

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-file-information-schema.json",
  "name": "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."
}