Working with Extensions

Aidbox Native Extensions

In addition to the FHIR extensions, Aidbox has its own implementation of extensions as native attributes.

First, you will need to create an Attribute resource.

PUT /Attribute/Observation.hrtakencontext

resourceType: Attribute
resource: {id: Observation, resourceType: Entity}
path: [hrtakencontext]
id: Observation.hrtakencontext
module: fhir-3.0.1
order: 100
type: {id: CodeableConcept, resourceType: Entity}
description: How it was done hrtakencontext

Now, you can create a resource using the native Aidbox extension.

PUT /Observation/sample-for-hrtakencontext 

resourceType: Observation
id: sample-for-hrtakencontext
text: {div: "<div>\n Heart Rate Patient: Jane Smith (8867-4): 50 beats/minute\n\ </div>", status: generated}
hrtakencontext:
  text: not set
  coding:
    - {code: '0', system: 'https://myhealth.aidbox.app/HeartRateMotionContext', display: not set}
value:
  Quantity: {code: "/min", unit: "beats/minute", value: 50, system: "http://unitsofmeasure.org"}
status: final
subject: {display: Jane Smith}
category:
  - text: Vital Signs
    coding:
      - {code: vital-signs, system: 'http://hl7.org/fhir/observation-category', display: Vital Signs}
code:
  text: Heart rate
  coding:
    - {code: 8867-4, system: 'http://loinc.org', display: Heart rate}
effective: {dateTime: '2018-11-20T15:12:00.000+0300'}

Last updated