You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
1.8 KiB
JSON
103 lines
1.8 KiB
JSON
# A simple patient
|
|
{
|
|
"bsn": 123451111,
|
|
"name": {
|
|
"firstname": "Marie Antoinette",
|
|
"initials": "MA",
|
|
"infix_own": "de",
|
|
"own_lastname": "Villepin",
|
|
"infix_partner": "van der",
|
|
"partner_lastname": "Dussen"
|
|
},
|
|
"gender": "V",
|
|
"dob": "1970-07-01",
|
|
"category": "V",
|
|
"doctor": 1051234,
|
|
"address": {
|
|
"street": "Lange Geer",
|
|
"housenumber": 4,
|
|
"housenumber_suffix": "A",
|
|
"postcode": "2611PV",
|
|
"city": "Delft"
|
|
},
|
|
"contact": {
|
|
"tel": [
|
|
"+31612345678",
|
|
"+31701234567"
|
|
],
|
|
"email": [
|
|
"marie.de.villepin@example.tld"
|
|
]
|
|
},
|
|
"insurance": {
|
|
"policy_number": "123456789012345",
|
|
"uzovi": 3331
|
|
},
|
|
"patid": 1234,
|
|
"pat_unid": "1234",
|
|
"start_date": "1994-08-20"
|
|
}
|
|
|
|
# Fairly minimal patient. Not insured, no contact info, no first name, no address info, etc.
|
|
{
|
|
"bsn": 123451112,
|
|
"name": {
|
|
"firstname": "J.J.",
|
|
"initials": "JJ",
|
|
"own_lastname": "Jansen"
|
|
},
|
|
"gender": "M",
|
|
"category": "V",
|
|
"doctor": 1051234,
|
|
"contact": {
|
|
"tel": [
|
|
],
|
|
"email": [
|
|
]
|
|
},
|
|
"patid": 1235,
|
|
"pat_unid": "1235",
|
|
"start_date": "1900-01-01"
|
|
}
|
|
|
|
# Patient that has passed away
|
|
{
|
|
"bsn": 123451113,
|
|
"name": {
|
|
"firstname": "Abe",
|
|
"initials": "AGM",
|
|
"own_lastname": "Lincoln",
|
|
"infix_partner": "van",
|
|
"partner_lastname": "Dijk"
|
|
},
|
|
"gender": "M",
|
|
"dob": "1990-12-20",
|
|
"category": "V",
|
|
"doctor": 1051234,
|
|
"address": {
|
|
"street": "Dorpsstraat",
|
|
"housenumber": 1,
|
|
"housenumber_suffix": "-15",
|
|
"postcode": "9999AA",
|
|
"city": "Duckstad"
|
|
},
|
|
"contact": {
|
|
"tel": [
|
|
"+31201234567"
|
|
],
|
|
"email": [
|
|
"stovepipe@example.tld"
|
|
]
|
|
},
|
|
"insurance": {
|
|
"policy_number": "123456789012345",
|
|
"uzovi": 101
|
|
},
|
|
"patid": 1236,
|
|
"pat_unid": "123e4567-e89b-12d3-a456-426614174000",
|
|
"start_date": "1997-01-01",
|
|
"end_date": "2023-01-05",
|
|
"end_reason": "O"
|
|
}
|
|
|