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
Copy file name to clipboardExpand all lines: specification/validated-relationships-service-api.yaml
+89-2Lines changed: 89 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ info:
89
89
90
90
## Headers
91
91
This API is case-insensitive when processing request headers, meaning it will accept headers regardless of the letter casing used. (e.g. X-Request-Id, x-request-id are treated the same). When sending headers back in the response, we preserve the exact casing as received in the original request.
92
-
92
+
93
93
## Errors
94
94
We use standard HTTP status codes to show whether an API request succeeded or not. They are usually in the range:
95
95
@@ -1808,7 +1808,7 @@ components:
1808
1808
An empty bundle suggests that no candidate proxy/patient links were identified.
description: List of names associated with the patient.
2354
+
items:
2355
+
type: object
2356
+
required:
2357
+
- use
2358
+
- family
2359
+
additionalProperties: false
2360
+
properties:
2361
+
id:
2362
+
type: string
2363
+
description: Unique object identifier for this name.
2364
+
use:
2365
+
type: string
2366
+
description: |
2367
+
How this name should be used.
2368
+
* usual - Known as, conventional or the one patient normally uses. A patient always has a usual name.
2369
+
* temp - An alias or temporary name. This may also be used for temporary names assigned at birth or in emergency situations.
2370
+
* nickname - A name that the patient prefers to be addressed by, but is not part of their usual name.
2371
+
* old - This name is no longer in use (or was never correct, but retained for records).
2372
+
* maiden - Name changed for Marriage. A name used prior to changing name because of marriage. This term is not gender specific. The use of this term does not imply any particular history for a person's name.
2373
+
2374
+
The following use codes are included in the [name-use](https://www.hl7.org/fhir/valueset-name-use.html) value set, but should not be used and is not be returned as part of a retrieval.
2375
+
* official - The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called "legal name".
2376
+
* anonymous - Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons).
2377
+
enum: [usual, temp, nickname, old, maiden]
2378
+
period:
2379
+
type: object
2380
+
description: |
2381
+
Business effective period when the name was, is, or will be in use.
2382
+
required:
2383
+
- start
2384
+
properties:
2385
+
start:
2386
+
type: string
2387
+
format: date
2388
+
description: Start date of time period, if known, in format `yyyy-mm-dd`. Can be a future date.
2389
+
end:
2390
+
type: string
2391
+
format: date
2392
+
description: End date of time period, if known and if not ongoing, in format `yyyy-mm-dd`. Can be a future date.
2393
+
given:
2394
+
type: array
2395
+
maxItems: 5
2396
+
description: |
2397
+
Given names, including any middle names.
2398
+
2399
+
Each name(s) should be a separate item in the list. The first given name may include multiple names, separated by a space.
2400
+
Subsequent names must be broken down into list items. For example, the input `[Jane Marie Anne, Jo Adele]` returns `[Jane Marie Anne, Jo, Adele]`.
2401
+
2402
+
items:
2403
+
type: string
2404
+
maxLength: 35
2405
+
family:
2406
+
type: string
2407
+
maxLength: 35
2408
+
description: Family name (often called Surname).
2409
+
prefix:
2410
+
type: array
2411
+
description: Name prefixes, titles, and prenominals.
2412
+
items:
2413
+
type: string
2414
+
suffix:
2415
+
type: array
2416
+
description: Name suffices and postnominals.
2417
+
items:
2418
+
type: string
2419
+
2420
+
PDSBirthDate:
2421
+
description: |
2422
+
The date on which the patient was born or is officially deemed to have been born.
2423
+
2424
+
It is a date in the format `yyyy-mm-dd`. Due to data quality issues on a small number of patients `yyyy-mm` and `yyyy` format may also be returned.
0 commit comments