You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "b.Well FHIR Server API documentation",
7
+
"license": {
8
+
"name": "MIT",
9
+
"url": "https://opensource.org/licenses/MIT"
10
+
}
11
+
},
12
+
"servers": [
13
+
{
14
+
"url": "<HOST_SERVER>",
15
+
"description": "<ENVIRONMENT> FHIR Server"
16
+
}
17
+
],
18
+
"paths": {
19
+
"/Patient/{id}/$everything": {
20
+
"get": {
21
+
"summary": "FHIR $everything Operation",
22
+
"description": "The FHIR server supports the $everything endpoint of the FHIR specification. This operation is used to retrieve all resources related to the provided patient resource.\n\nIt is mandatory to provide id in path param.",
23
+
"parameters": [
24
+
{
25
+
"name": "id",
26
+
"in": "path",
27
+
"required": true,
28
+
"schema": {
29
+
"type": "string"
30
+
},
31
+
"description": "The sourceId or UUID of the patient whose related resources are to be fetched."
32
+
},
33
+
{
34
+
"name": "_type",
35
+
"in": "query",
36
+
"required": false,
37
+
"schema": {
38
+
"type": "string"
39
+
},
40
+
"description": "A comma-separated list of resource names to filter the resources fetched."
41
+
}
42
+
],
43
+
"responses": {
44
+
"200": {
45
+
"description": "A Bundle containing the related resources.",
0 commit comments