Patsiendi üldandmete teenus / Master Patient Index - Downloaded Version 1.5.0 See the Directory of published versions
| Official URL: https://fhir.ee/mpi/OperationDefinition/patient-foreign | Version: 1.5.0 | |||
| Active as of 2026-03-26 | Computable Name: EEMPIPatientForeignSearch | |||
The foreign patient search operation to perform search over non-estonian patient resources.
URL: [base]/Patient/$foreign
| Use | Name | Scope | Cardinality | Type | Binding | Documentation |
| IN | identifier-country | 1..1 | string | Three-letter country code of the issuer of the identifier according to the ISO standard. | ||
| IN | birthdate | 0..1 | date | Patient's date of birth in yyyy-mm-dd format. | ||
| IN | gender | 0..1 | string | Patient's gender. | ||
| IN | given | 0..1 | string | Given name. Search supports similarity, allows up to 2 typos, case-insensitive. Comma-separated values are allowed. | ||
| IN | family | 0..1 | string | Family name. Search supports similarity, allows up to 2 typos, case-insensitive. Comma-separated values are allowed. | ||
| IN | telecom | 0..1 | string | Telecom value, e-mail or phone number. Case-insensitive. Comma-separated values are allowed. | ||
| OUT | return | 1..1 | Bundle | Returns Bundle (with type collection) with Patient instances. |
Näide päringust:
GET {MPI}/Patient/$foreign?gender=male&birthdate=1979-12-25&family=Graham&given=Gene&identifier_country=UZB&telecom=%2B1234567
Vastusena tuleb (collection) Bundle mis tagastab kollektsiooni leitud ressurssidest (ilma metainformatsioonita):
{
"resourceType": "Bundle",
"type": "collection",
"entry": [
{
"resource": {
"resourceType": "Patient",
"id": "895",
"meta": {
"lastUpdated": "2024-08-05T08:41:32.120+03:00",
"profile": [
"https://fhir.ee/mpi/StructureDefinition/ee-mpi-patient-verified"
]
},
"identifier": [
{
"system": "https://fhir.ee/sid/pid/uzb/ppn",
"value": "113354925133"
}
],
"active": true,
"name": [
{
"use": "official",
"family": "Graham",
"given": [
"Gene"
]
}
],
"telecom": [
{
"system": "phone",
"value": "+1234567",
"period": {
"start": "2024-08-05T08:41:32+03:00"
}
}
],
"gender": "male",
"birthDate": "1979-12-25"
}
}
]
}