Skip to content

Commit dbcd603

Browse files
Merge pull request #855 from NHSDigital/feature/NRL-1144-retrieval-mechanism-fhirs
NRL-1144 draft FHIR valueSet and codeSystem for retrieval
2 parents c8f24f6 + abee8c2 commit dbcd603

File tree

2 files changed

+104
-0
lines changed

2 files changed

+104
-0
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"resourceType": "CodeSystem",
3+
"id": "England-RetrievalMechanismNRL",
4+
"url": "https://fhir.nhs.uk/England/CodeSystem/England-RetrievalMechanismNRL",
5+
"version": "1.0.0",
6+
"name": "EnglandRetrievalMechanismNRL",
7+
"title": "England Retrieval MechanismNRL",
8+
"status": "draft",
9+
"experimental": false,
10+
"date": "2025-02-28",
11+
"publisher": "NHS England",
12+
"contact": [
13+
{
14+
"name": "NHS England",
15+
"telecom": [
16+
{
17+
"system": "email",
18+
"value": "[email protected]",
19+
"use": "work",
20+
"rank": 1
21+
}
22+
]
23+
},
24+
{
25+
"name": "NRL Team at NHS Digital",
26+
"telecom": [
27+
{
28+
"system": "email",
29+
"value": "[email protected]",
30+
"use": "work"
31+
}
32+
]
33+
}
34+
],
35+
"description": "A CodeSystem to identify the means by which an NRL DocumentReference can be retrieved via its content.attachment url.",
36+
"copyright": "Copyright © 2025+ NHS England Licensed under the Apache License, Version 2.0 (the \\\"License\\\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \\\"AS IS\\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. HL7® FHIR® standard Copyright © 2011+ HL7 The HL7® FHIR® standard is used under the FHIR license. You may obtain a copy of the FHIR license at https://www.hl7.org/fhir/license.html.",
37+
"content": "complete",
38+
"hierarchyMeaning": "is-a",
39+
"concept": [
40+
{
41+
"code": "Direct",
42+
"display": "Direct",
43+
"definition": "This document can be directly retrieved via HTTP(s) at its public URL."
44+
},
45+
{
46+
"code": "Proxy",
47+
"display": "Proxy",
48+
"definition": "This document must be retrieved via a proxy.",
49+
"concept": [
50+
{
51+
"code": "SSP",
52+
"display": "Spine Secure Proxy",
53+
"definition": "This document can be retrieved via Spine Secure Proxy by authorised organisations. The custodian's ASID will be needed and can be found in the context.related field."
54+
},
55+
{
56+
"code": "NDR",
57+
"display": "National Document Repository",
58+
"definition": "This document can be retrieved via the National Document Repository proxy service."
59+
}
60+
]
61+
}
62+
]
63+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"resourceType": "ValueSet",
3+
"id": "England-RetrievalMechanism",
4+
"url": "https://fhir.nhs.uk/England/ValueSet/England-RetrievalMechanism",
5+
"version": "1.0.0",
6+
"name": "EnglandRetrievalMechanism",
7+
"status": "draft",
8+
"date": "2025-02-28",
9+
"publisher": "NHS Digital",
10+
"contact": {
11+
"name": "NRL Team at NHS Digital",
12+
"telecom": {
13+
"system": "email",
14+
"value": "[email protected]",
15+
"use": "work"
16+
}
17+
},
18+
"description": "A code to represent the means by which the document being referenced can be accessed (via the url in the content.attachment).",
19+
"copyright": "Copyright 2025 NHS Digital.",
20+
"compose": {
21+
"include": [
22+
{
23+
"system": "https://fhir.nhs.uk/England/CodeSystem/England-RetrievalMechanismNRL",
24+
"concept": [
25+
{
26+
"code": "Direct",
27+
"display": "Direct"
28+
},
29+
{
30+
"code": "SSP",
31+
"display": "Spine Secure Proxy"
32+
},
33+
{
34+
"code": "NDR",
35+
"display": "National Document Repository"
36+
}
37+
]
38+
}
39+
]
40+
}
41+
}

0 commit comments

Comments
 (0)