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
@@ -1802,7 +1802,7 @@ components:
1802
1802
An empty bundle suggests that no candidate proxy/patient links were identified.
description: List of names associated with the patient.
2346
+
items:
2347
+
type: object
2348
+
required:
2349
+
- use
2350
+
- family
2351
+
additionalProperties: false
2352
+
properties:
2353
+
id:
2354
+
type: string
2355
+
description: Unique object identifier for this name.
2356
+
use:
2357
+
type: string
2358
+
description: |
2359
+
How this name should be used.
2360
+
* usual - Known as, conventional or the one patient normally uses. A patient always has a usual name.
2361
+
* temp - An alias or temporary name. This may also be used for temporary names assigned at birth or in emergency situations.
2362
+
* nickname - A name that the patient prefers to be addressed by, but is not part of their usual name.
2363
+
* old - This name is no longer in use (or was never correct, but retained for records).
2364
+
* 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.
2365
+
2366
+
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.
2367
+
* official - The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called "legal name".
2368
+
* anonymous - Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons).
2369
+
enum: [usual, temp, nickname, old, maiden]
2370
+
period:
2371
+
type: object
2372
+
description: |
2373
+
Business effective period when the name was, is, or will be in use.
2374
+
required:
2375
+
- start
2376
+
properties:
2377
+
start:
2378
+
type: string
2379
+
format: date
2380
+
description: Start date of time period, if known, in format `yyyy-mm-dd`. Can be a future date.
2381
+
end:
2382
+
type: string
2383
+
format: date
2384
+
description: End date of time period, if known and if not ongoing, in format `yyyy-mm-dd`. Can be a future date.
2385
+
given:
2386
+
type: array
2387
+
maxItems: 5
2388
+
description: |
2389
+
Given names, including any middle names.
2390
+
2391
+
Each name(s) should be a separate item in the list. The first given name may include multiple names, separated by a space.
2392
+
Subsequent names must be broken down into list items. For example, the input `[Jane Marie Anne, Jo Adele]` returns `[Jane Marie Anne, Jo, Adele]`.
2393
+
2394
+
items:
2395
+
type: string
2396
+
maxLength: 35
2397
+
family:
2398
+
type: string
2399
+
maxLength: 35
2400
+
description: Family name (often called Surname).
2401
+
prefix:
2402
+
type: array
2403
+
description: Name prefixes, titles, and prenominals.
2404
+
items:
2405
+
type: string
2406
+
suffix:
2407
+
type: array
2408
+
description: Name suffices and postnominals.
2409
+
items:
2410
+
type: string
2411
+
2412
+
PDSBirthDate:
2413
+
description: |
2414
+
The date on which the patient was born or is officially deemed to have been born.
2415
+
2416
+
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