-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCapTemplate.json
115 lines (115 loc) · 2.53 KB
/
CapTemplate.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"resourceType": "CapabilityStatement",
"id": "example",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"></div>"
},
"url": "urn:uuid:68D043B5-9ECF-4559-A57A-396E0D452311",
"version": "20130510",
"name": "SMSPMock",
"title": "MOCK SMSP Server",
"status": "draft",
"experimental": true,
"date": "2018-09-09",
"publisher": "Tim Coates",
"contact": [
{
"name": "Me",
"telecom": [
{
"system": "email",
"value": "[email protected]"
}
]
}
],
"description": "This is the FHIR capability statement for the SMSPMock server",
"useContext": [
{
"code": {
"system": "http://hl7.org/fhir/usage-context-type",
"code": "focus"
},
"valueCodeableConcept": {
"coding": [
{
"system": "http://hl7.org/fhir/variant-state",
"code": "positive"
}
]
}
}
],
"jurisdiction": [
{
"coding": [
{
"system": "urn:iso:std:iso:3166",
"code": "GB",
"display": "United Kingdom of Great Britain and Northern Ireland (the)"
}
]
}
],
"purpose": "MOCK SMSP capability statement, published for info only.",
"copyright": "Copyright © Tim Coates",
"kind": "instance",
"software": {
"name": "MOCK SMSP",
"version": "0.1",
"releaseDate": "2018-09-10"
},
"implementation": {
"description": "MOCK Service",
"url": "https://github.com/TimCoates/SMSPMock"
},
"fhirVersion": "3",
"acceptUnknown": "both",
"format": [
"xml",
"json"
],
"implementationGuide": [
"http://hl7.org/fhir/us/lab"
],
"rest": [
{
"mode": "server",
"documentation": "MOCK SMSP FHIR Endpoint",
"resource": [
{
"type": "Patient",
"profile": {
"reference": "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Patient-1"
},
"documentation": "Care Connect Patient profile.",
"interaction": [
{
"code": "read"
}
],
"updateCreate": false,
"conditionalCreate": false,
"conditionalRead": "full-support",
"conditionalUpdate": false,
"conditionalDelete": "not-supported",
"searchParam": [
{
"name": "nhs-number",
"definition": "http://hl7.org/fhir/SearchParameter/Patient-identifier",
"type": "token",
"documentation": "Supports search by NHS Number"
},
{
"name": "simple-trace",
"definition": "http://hl7.org/fhir/SearchParameter/Patient-general-practitioner",
"type": "reference",
"documentation": "Provides search by DOB, surname and postcode"
}
]
}
]
}
]
}