{
  "resourceType": "Bundle",
  "id": "novus-example-bundle",
  "type": "collection",
  "entry": [
    {
      "resource": {
        "resourceType": "Patient",
        "id": "patient-001",
        "name": [
          {
            "use": "official",
            "family": "Lovelace",
            "given": [
              "Ada"
            ]
          }
        ],
        "gender": "female",
        "birthDate": "1985-12-10",
        "address": [
          {
            "city": "London",
            "country": "GB"
          }
        ]
      }
    },
    {
      "resource": {
        "resourceType": "Observation",
        "id": "obs-weight",
        "status": "final",
        "category": [
          {
            "coding": [
              {
                "code": "vital-signs"
              }
            ]
          }
        ],
        "code": {
          "coding": [
            {
              "system": "http://loinc.org",
              "code": "29463-7",
              "display": "Body weight"
            }
          ]
        },
        "subject": {
          "reference": "Patient/patient-001"
        },
        "effectiveDateTime": "2026-01-05",
        "valueQuantity": {
          "value": 68.0,
          "unit": "kg",
          "system": "http://unitsofmeasure.org",
          "code": "kg"
        }
      }
    },
    {
      "resource": {
        "resourceType": "Observation",
        "id": "obs-bp",
        "status": "final",
        "code": {
          "coding": [
            {
              "system": "http://loinc.org",
              "code": "85354-9",
              "display": "Blood pressure"
            }
          ]
        },
        "subject": {
          "reference": "Patient/patient-001"
        },
        "effectiveDateTime": "2026-01-05",
        "component": [
          {
            "code": {
              "coding": [
                {
                  "code": "8480-6",
                  "display": "Systolic"
                }
              ]
            },
            "valueQuantity": {
              "value": 118,
              "unit": "mmHg"
            }
          },
          {
            "code": {
              "coding": [
                {
                  "code": "8462-4",
                  "display": "Diastolic"
                }
              ]
            },
            "valueQuantity": {
              "value": 76,
              "unit": "mmHg"
            }
          }
        ]
      }
    },
    {
      "resource": {
        "resourceType": "Encounter",
        "id": "enc-001",
        "status": "finished",
        "class": {
          "code": "AMB",
          "display": "ambulatory"
        },
        "subject": {
          "reference": "Patient/patient-001"
        },
        "period": {
          "start": "2026-01-05T09:00:00Z",
          "end": "2026-01-05T09:30:00Z"
        }
      }
    },
    {
      "resource": {
        "resourceType": "Condition",
        "id": "cond-001",
        "clinicalStatus": {
          "coding": [
            {
              "code": "active"
            }
          ]
        },
        "code": {
          "coding": [
            {
              "system": "http://snomed.info/sct",
              "code": "38341003",
              "display": "Hypertension"
            }
          ]
        },
        "subject": {
          "reference": "Patient/patient-001"
        },
        "recordedDate": "2025-11-20"
      }
    }
  ]
}
