Roivant Sciences · JSON Structure

Datavant Healthjump Structure

Composite payload structure showing how Healthjump records hang off a patient when assembling a longitudinal record bundle. Aligns to the per-entity schemas in json-schema/.

Type: object Properties: 11 Required: 1
BiotechPharmaceuticalDrug DevelopmentClinical TrialsHealth DataTokenizationElectronic Health RecordsReal World EvidenceHolding CompanyHealthcare

Datavant Healthjump Structure is a JSON Structure definition published by Roivant Sciences, describing 11 properties, of which 1 is required. It conforms to the https://json-schema.org/draft/2020-12/schema meta-schema.

Properties

patient encounters vitals allergies immunizations medications diagnoses procedures labs documents appointments

Meta-schema: https://json-schema.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/roivant-sciences/json-structure/datavant-healthjump-structure.json",
  "title": "Datavant Healthjump Patient Bundle Structure",
  "description": "Composite payload structure showing how Healthjump records hang off a patient when assembling a longitudinal record bundle. Aligns to the per-entity schemas in json-schema/.",
  "type": "object",
  "properties": {
    "patient": { "$ref": "https://github.com/api-evangelist/roivant-sciences/json-schema/datavant-healthjump-patient-schema.json" },
    "encounters": {
      "type": "array",
      "items": { "$ref": "https://github.com/api-evangelist/roivant-sciences/json-schema/datavant-healthjump-encounter-schema.json" }
    },
    "vitals": {
      "type": "array",
      "items": { "$ref": "https://github.com/api-evangelist/roivant-sciences/json-schema/datavant-healthjump-vitals-schema.json" }
    },
    "allergies": { "type": "array" },
    "immunizations": { "type": "array" },
    "medications": { "type": "array" },
    "diagnoses": { "type": "array" },
    "procedures": { "type": "array" },
    "labs": { "type": "array" },
    "documents": { "type": "array" },
    "appointments": { "type": "array" }
  },
  "required": ["patient"]
}