-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractitioner.json
More file actions
48 lines (48 loc) · 1.53 KB
/
Copy pathpractitioner.json
File metadata and controls
48 lines (48 loc) · 1.53 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
41
42
43
44
45
46
47
48
{
"resource": "Practitioner",
"toolName": "practitioner",
"title": "Practitioner",
"description": "Search for or read a FHIR Practitioner resource. For direct read, provide _id alone. For search, provide at least one of: identifier, name, given + family, email, phone, or telecom. This resource represents healthcare providers — physicians, nurses, pharmacists, etc.",
"supportsDirectRead": true,
"searchParams": {
"_id": "Practitioner resource ID — performs direct read when provided alone",
"active": "Whether the record is active",
"address": "Any part of the address",
"address-city": "City",
"address-country": "Country",
"address-postalcode": "Postal / ZIP code",
"address-state": "State",
"address-use": "Use of the address (home, work, temp, old, billing)",
"communication": "Language of communication",
"email": "Email address",
"family": "Family (last) name",
"gender": "Gender: male, female, other, unknown",
"given": "Given (first) name",
"identifier": "Practitioner identifier (e.g. NPI, DEA)",
"name": "Any part of the practitioner's name",
"phone": "Phone number",
"phonetic": "A portion of name using phonetic matching",
"telecom": "Any contact detail value"
},
"requireOneOf": [
[
"identifier"
],
[
"name"
],
[
"given",
"family"
],
[
"email"
],
[
"phone"
],
[
"telecom"
]
]
}