-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.json
More file actions
40 lines (40 loc) · 1.55 KB
/
Copy pathlist.json
File metadata and controls
40 lines (40 loc) · 1.55 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
{
"resource": "List",
"toolName": "list",
"title": "List",
"description": "Search for or read a FHIR List resource — a curated collection of resources. For direct read, provide _id alone. For search, code is ALWAYS required along with a scoping param. Use code=problems + patient for the problem list, code=medications + patient (+ optionally encounter) for medication reconciliation lists, code=pedigree-list + patient for family history, or code=patients + identifier (system|id format) for patient lists.",
"supportsDirectRead": true,
"searchParams": {
"_id": "List resource ID — performs direct read when provided alone",
"code": "REQUIRED — type of list: problems, medications, pedigree-list, or patients",
"date": "When the list was prepared",
"empty-reason": "Why the list is empty",
"encounter": "Encounter context (for medication lists)",
"identifier": "Business identifier in system|value format (for patient lists)",
"item": "Reference to an actual entry in the list",
"notes": "Free-text notes on the list",
"patient": "Patient FHIR ID",
"source": "Who authored the list",
"status": "Status: current, retired, entered-in-error",
"subject": "Subject of the list (Patient or Group)",
"title": "Descriptive name of the list"
},
"requireOneOf": [
[
"code",
"patient"
],
[
"code",
"subject"
],
[
"code",
"identifier"
],
[
"code",
"encounter"
]
]
}