Skip to content

Commit 1d2f26d

Browse files
committed
Merge branch 'localization-rg' into localization
* localization-rg: Expand localization documentation with organization type support, rename zorgcontext to zorgContext, and update OpenAPI specification accordingly. Add appendix detailing FHIR considerations and clarify advantages of the JSON API approach. added localization.openapi.json Clarify authentication options in localization documentation, update NUTS URA Credential to X509 URA Credential. # Conflicts: # input/images/localization.openapi.json # input/pagecontent/localization.md
2 parents 6ed66f0 + e79a0a6 commit 1d2f26d

File tree

4 files changed

+184
-214
lines changed

4 files changed

+184
-214
lines changed

input/data/nvi_openapi.yaml

Lines changed: 0 additions & 108 deletions
This file was deleted.

input/images/localization.openapi.json

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,28 @@
1515
"schema": {
1616
"type": "object",
1717
"properties": {
18-
"pseudo-BSN": {
18+
"pseudoBsn": {
1919
"type": "string",
2020
"description": "Pseudo BSN identifier"
2121
},
22-
"zorgcontext": {
23-
"$ref": "#/components/schemas/ZorgcontextEnum",
24-
"description": "Zorgcontext code"
22+
"zorgContext": {
23+
"$ref": "#/components/schemas/ZorgContextEnum",
24+
"description": "zorgContext code"
2525
},
26-
"URA": {
26+
"ura": {
2727
"type": "string",
2828
"description": "URA identifier"
2929
},
30-
"Organization-type": {
30+
"organizationType": {
3131
"$ref": "#/components/schemas/OrganisatieTypeEnum",
3232
"description": "Organization type"
3333
}
3434
},
3535
"required": [
36-
"pseudo-BSN",
37-
"zorgcontext",
38-
"URA",
39-
"Organization-type"
36+
"pseudoBsn",
37+
"zorgContext",
38+
"ura",
39+
"organizationType"
4040
]
4141
}
4242
}
@@ -52,7 +52,7 @@
5252
"summary": "Delete an NVI resource",
5353
"parameters": [
5454
{
55-
"name": "pseudo-BSN",
55+
"name": "pseudoBsn",
5656
"in": "query",
5757
"required": true,
5858
"schema": {
@@ -61,16 +61,16 @@
6161
"description": "Pseudo BSN identifier"
6262
},
6363
{
64-
"name": "zorgcontext",
64+
"name": "zorgContext",
6565
"in": "query",
6666
"required": true,
6767
"schema": {
68-
"$ref": "#/components/schemas/ZorgcontextEnum"
68+
"$ref": "#/components/schemas/ZorgContextEnum"
6969
},
70-
"description": "Zorgcontext code"
70+
"description": "Zorg context code"
7171
},
7272
{
73-
"name": "URA",
73+
"name": "ura",
7474
"in": "query",
7575
"required": true,
7676
"schema": {
@@ -79,7 +79,7 @@
7979
"description": "URA identifier"
8080
},
8181
{
82-
"name": "Organization-type",
82+
"name": "organizationType",
8383
"in": "query",
8484
"required": true,
8585
"schema": {
@@ -98,7 +98,7 @@
9898
"summary": "Retrieve NVI resources",
9999
"parameters": [
100100
{
101-
"name": "pseudo-BSN",
101+
"name": "pseudoBsn",
102102
"in": "query",
103103
"required": true,
104104
"schema": {
@@ -107,16 +107,16 @@
107107
"description": "Pseudo BSN identifier"
108108
},
109109
{
110-
"name": "zorgcontext",
110+
"name": "zorgContext",
111111
"in": "query",
112112
"required": true,
113113
"schema": {
114-
"$ref": "#/components/schemas/ZorgcontextEnum"
114+
"$ref": "#/components/schemas/ZorgContextEnum"
115115
},
116-
"description": "Zorgcontext code"
116+
"description": "Zorg context code"
117117
},
118118
{
119-
"name": "Organization-type",
119+
"name": "organizationType",
120120
"in": "query",
121121
"required": true,
122122
"schema": {
@@ -143,20 +143,20 @@
143143
"format": "date-time",
144144
"description": "Creation datetime"
145145
},
146-
"pseudo-BSN": {
146+
"pseudoBsn": {
147147
"type": "string",
148148
"description": "Pseudo BSN identifier"
149149
},
150-
"zorgcontext": {
150+
"zorgContext": {
151151
"type": null,
152-
"$ref": "#/components/schemas/ZorgcontextEnum",
153-
"description": "Zorgcontext identifier"
152+
"$ref": "#/components/schemas/ZorgContextEnum",
153+
"description": "zorgContext identifier"
154154
},
155-
"URA": {
155+
"ura": {
156156
"type": "string",
157-
"description": "URA value"
157+
"description": "ura value"
158158
},
159-
"Organization-type": {
159+
"organizationType": {
160160
"$ref": "#/components/schemas/OrganisatieTypeEnum",
161161
"description": "Organization type"
162162
}
@@ -187,7 +187,7 @@
187187
],
188188
"description": "Enum for OrganisatieType codes<br><br> - 2.16.840.1.113883.2.4.15.1060|H1 (Huisartsinstelling)<br><br> - 2.16.840.1.113883.2.4.15.1060|V4 (Ziekenhuis)<br><br> - 2.16.840.1.113883.2.4.15.1060|A1 (Apotheekinstelling)<br><br> - 2.16.840.1.113883.2.4.15.1060|X3 (Verplegings- of verzorgingsinstelling)<br><br> - 2.16.840.1.113883.2.4.15.1060|L1 (Laboratorium)<br><br> - 2.16.840.1.113883.2.4.15.1060|G5 (Geestelijke Gezondheidszorg)<br><br> - 2.16.840.1.113883.5.1008|OTH (Overige)<br><br>"
189189
},
190-
"ZorgcontextEnum": {
190+
"ZorgContextEnum": {
191191
"type": "string",
192192
"enum": [
193193
"http://snomed.info/sct|721912009",
@@ -200,4 +200,4 @@
200200
}
201201
}
202202
}
203-
}
203+
}

0 commit comments

Comments
 (0)