-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatient.json
More file actions
60 lines (60 loc) · 2.83 KB
/
Copy pathpatient.json
File metadata and controls
60 lines (60 loc) · 2.83 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"resource": "Patient",
"toolName": "patient",
"title": "Patient",
"description": "Search for or read a FHIR Patient resource. For direct read, provide _id alone. For search, this tool enforces strict identification and accepts only one of these parameter sets: identifier (MRN, FHIR ID, or other system|value identifier); given + family + birthdate; or given + family + legal-sex (or gender) + telecom. A name fragment alone is never accepted.",
"supportsDirectRead": true,
"searchParams": {
"_id": "Patient resource ID — performs direct read when provided alone",
"active": "Whether the patient record is active",
"address": "Street address line",
"address-city": "City",
"address-country": "Country",
"address-postalcode": "Postal / ZIP code",
"address-state": "State (US states only)",
"address-use": "Use of the address (home, work, temp, old)",
"birthdate": "Date of birth in YYYY-MM-DD format",
"death-date": "Date of death in YYYY-MM-DD format",
"doc-type": "Singapore document type (only respected when a Singapore document ID is passed as an identifier)",
"email": "Email address",
"family": "Family (last) name",
"gender": "Administrative gender: female, male, other, unknown",
"general-practitioner": "Patient's nominated primary care provider (Practitioner, Organization, PractitionerRole)",
"given": "Given (first) name",
"identifier": "Business identifier in system|value format (e.g. MRN, SSN, FHIR ID)",
"language": "Patient's preferred language (coded)",
"legal-sex": "Legal sex — takes precedence over gender when both are provided: female, male, nonbinary, x, unknown",
"link": "Another Patient or RelatedPerson resource linked to this patient",
"name": "Any part of the patient's name — ignored when family or given is also provided",
"organization": "Managing organization for the patient record",
"own-name": "Patient's own last name (non-US names) — used with other name parameters",
"own-prefix": "Patient's own last name prefix (non-US names) — requires own-name",
"partner-name": "Patient's spouse's last name (non-US names) — requires own-name",
"partner-prefix": "Patient's spouse's last name prefix (non-US names) — requires own-name",
"phone": "Phone number",
"phonetic": "A portion of the name using phonetic matching",
"telecom": "Phone number or email address (prefix # to skip phone validation, + for international)"
},
"requireOneOf": [
[
"identifier"
],
[
"given",
"family",
"birthdate"
],
[
"given",
"family",
"legal-sex",
"telecom"
],
[
"given",
"family",
"gender",
"telecom"
]
]
}