Bulk Data Access IG
4.0.0 - STU 4 International flag

Bulk Data Access IG, published by HL7 International / FHIR Infrastructure. This guide is not an authorized publication; it is the continuous build for version 4.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/bulk-data/ and changes regularly. See the Directory of published versions

Example Binary: Bulk Data Manifest Example By Resource Type

This content is an example of the Bulk Data Manifest Logical Model and is not a FHIR Resource

    
{
  "resourceType": "http://hl7.org/fhir/uv/bulkdata/StructureDefinition/BulkDataManifest",
  "id": "BulkDataManifestByTypeExample",
  "transactionTime": "2021-01-01T00:00:00Z",
  "requiresAccessToken": true,
  "output": [
    {
      "type": "Patient",
      "url": "https://example.org/output/patient_file_1.ndjson"
    },
    {
      "type": "Observation",
      "url": "https://example.org/output/observation_file_1.ndjson"
    },
    {
      "type": "Observation",
      "url": "https://example.org/output/observation_file_2.ndjson"
    }
  ],
  "deleted": [
    {
      "url": "https://example.org/output/del_file_1.ndjson"
    }
  ],
  "error": [
    {
      "url": "https://example.org/output/err_file_1.ndjson"
    }
  ],
  "extension": [
    {
      "url": "http://example.org/fhir/StructureDefinition/includes-telehealth-patients",
      "valueBoolean": true
    }
  ]
}