Patient
| Field | Type | Required | Description |
|---|---|---|---|
firstName | String | mandatory | |
lastName | String | mandatory | |
birthdate | String | mandatory | As YYYY-MM-DD format |
address | Address | mandatory | |
gender | String | mandatory | Could be: male or female |
ssnNumber | String | optional | Begin with 756 and contain a total of 13 digits like 7560000000000 |
Exemple
Required fields only
{
"firstName": "Martin",
"lastName": "BRON",
"birthdate": "1990-02-20",
"address": {
"street": "Street 30",
"zip": "1700",
"city": "Fribourg"
},
"gender": "male"
}
All fields
{
"firstName": "Martine",
"lastName": "BRON",
"birthdate": "1990-02-20",
"address":{
"street": "Street 30",
"zip": "75000",
"city": "Paris",
"countryCode": "FR"
},
"gender": "female",
"ssnNumber": "7560000000000"
}