cycle.fhir.me0.2.0 · ci-build
Example · Observation

Basal Body Temperature Example

A standalone Layer 1 basal body temperature fact from the longitudinal example.

TypeObservation
Idbasal-body-temperature-example

Source

Preview only. The full JSON is published as Observation-basal-body-temperature-example.json.

Observation-basal-body-temperature-example.json previewjson
1{
2 "resourceType": "Observation",
3 "id": "basal-body-temperature-example",
4 "status": "final",
5 "category": [
6 {
7 "coding": [
8 {
9 "system": "http://terminology.hl7.org/CodeSystem/observation-category",
10 "code": "vital-signs",
11 "display": "Vital Signs"
12 }
13 ]
14 }
15 ],
16 "code": {
17 "coding": [
18 {
19 "system": "http://loinc.org",
20 "code": "8310-5",
21 "display": "Body temperature"
22 }
23 ]
24 },
25 "effectiveDateTime": "2025-12-09T06:45:00-05:00",
26 "valueQuantity": {
27 "value": 36.42,
28 "unit": "degree Celsius",
29 "system": "http://unitsofmeasure.org",
30 "code": "Cel"
31 },
32 "contained": [
33 {
34 "resourceType": "Patient",
35 "id": "example-patient"
36 }
37 ],
38 "subject": {
39 "reference": "#example-patient"
40 }
41}