Skip to content

Commit a254dbd

Browse files
Finalize RDF FHIR Observation example
1 parent c650091 commit a254dbd

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

input/pagecontent/dynamic-data.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,17 @@ Find a mock observation RDF below, it contains different types of fhir:value obj
126126
fhir:coding ( [ # Example coding value, "A little of time"
127127
fhir:code [ fhir:v "91621-3" ] ;
128128
fhir:system [ fhir:v "https://loinc.org/LA14732-4"^^xsd:anyURI ] ;
129-
fhir:display [ fhir:v "{{value}}" ]
129+
fhir:display [ fhir:v "A little of time" ]
130130
] )
131131
] . # Value can be of different types, only one value is allowed
132132
fhir:value [ # Cardinality 0..1.
133133
a fhir:dateTime ; # Example dateTime value, e.g. a birthDate.
134134
fhir:v "1990-10-05T08:28:56.623Z"^^xsd:dateTime
135-
] .
135+
] . # Value can be of different types, only one value is allowed
136+
fhir:value [ # Cardinality 0..1.
137+
a fhir:string ; # Example string value.
138+
fhir:v "Often"^^xsd:string
139+
] . # Value can be of different types, only one value is allowed
136140
```
137141

138142
### QuestionnaireResponse

0 commit comments

Comments
 (0)