-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathannotationStructureDefinition.json
More file actions
44 lines (44 loc) · 1.01 KB
/
Copy pathannotationStructureDefinition.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"resourceType": "StructureDefinition",
"id": "patient-annotation",
"url": "http://example.org/fhir/StructureDefinition/patient-annotation",
"version": "1.0.0",
"name": "PatientAnnotation",
"title": "Patient Annotation",
"status": "active",
"description": "An annotation for the Patient resource.",
"fhirVersion": "4.0.1",
"kind": "complex-type",
"abstract": false,
"context": [
{
"type": "element",
"expression": "Patient"
}
],
"snapshot": {
"element": [
{
"id": "Extension",
"path": "Extension",
"short": "Extension element",
"definition": "Annotation for a Patient resource.",
"min": 0,
"max": "*"
},
{
"id": "Extension.valueString",
"path": "Extension.valueString",
"short": "Annotation text",
"definition": "The text of the annotation.",
"min": 1,
"max": "1",
"type": [
{
"code": "string"
}
]
}
]
}
}