diff --git a/examples/patient_base-examples.json b/examples/patient_base-examples.json deleted file mode 100644 index 4347d4a..0000000 --- a/examples/patient_base-examples.json +++ /dev/null @@ -1,102 +0,0 @@ -# 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" -} - diff --git a/examples/patient_base.1.json b/examples/patient_base.1.json new file mode 100644 index 0000000..7958cc6 --- /dev/null +++ b/examples/patient_base.1.json @@ -0,0 +1,39 @@ +{ + "//comment": "A common patient: Insured, with contact info.", + "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" +} \ No newline at end of file diff --git a/examples/patient_base.2.json b/examples/patient_base.2.json new file mode 100644 index 0000000..956b61c --- /dev/null +++ b/examples/patient_base.2.json @@ -0,0 +1,21 @@ +{ + "//comment": "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" +} \ No newline at end of file diff --git a/examples/patient_base.3.json b/examples/patient_base.3.json new file mode 100644 index 0000000..f41c44b --- /dev/null +++ b/examples/patient_base.3.json @@ -0,0 +1,39 @@ +{ + "//comment": "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" +} \ No newline at end of file