Skip to content

Commit

Permalink
Data: change typicalPersonsAddressBook to fill in optional fields so …
Browse files Browse the repository at this point in the history
…that JsonSerializableAddressBookTest passes
  • Loading branch information
laney0808 committed Apr 2, 2024
1 parent da03a90 commit d7609b6
Showing 1 changed file with 56 additions and 56 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
"dateOfBirth": "2001-01-01",
"sex": "F",
"status": "HEALTHY",
"email": null,
"country": null,
"allergies": null,
"bloodType": null,
"condition": null,
"dateOfAdmission": null,
"diagnosis": null,
"symptom": null
"email": "[email protected]",
"country": "Singapore",
"allergies": "Peanuts",
"bloodType": "A+",
"condition": "High blood pressure",
"dateOfAdmission": "2024-01-01",
"diagnosis": "Runny nose",
"symptom": "Sneezing, sniffing"
},
{
"nric": "T0439571C",
Expand All @@ -26,14 +26,14 @@
"dateOfBirth": "2001-01-01",
"sex": "M",
"status": "UNWELL",
"email": null,
"country": null,
"allergies": null,
"bloodType": null,
"condition": null,
"dateOfAdmission": null,
"diagnosis": null,
"symptom": null
"email": "[email protected]",
"country": "Singapore",
"allergies": "Peanuts",
"bloodType": "A+",
"condition": "High blood pressure",
"dateOfAdmission": "2024-01-01",
"diagnosis": "Runny nose",
"symptom": "Sneezing, sniffing"
},
{
"nric": "T0284994B",
Expand All @@ -43,14 +43,14 @@
"dateOfBirth": "2001-01-01",
"sex": "M",
"status": "PENDING",
"email": null,
"country": null,
"allergies": null,
"bloodType": null,
"condition": null,
"dateOfAdmission": null,
"diagnosis": null,
"symptom": null
"email": "[email protected]",
"country": "Singapore",
"allergies": "Peanuts",
"bloodType": "A+",
"condition": "High blood pressure",
"dateOfAdmission": "2024-01-01",
"diagnosis": "Runny nose",
"symptom": "Sneezing, sniffing"
},
{
"nric": "S9839571A",
Expand All @@ -60,14 +60,14 @@
"dateOfBirth": "2001-01-01",
"sex": "M",
"status": "HEALTHY",
"email": null,
"country": null,
"allergies": null,
"bloodType": null,
"condition": null,
"dateOfAdmission": null,
"diagnosis": null,
"symptom": null
"email": "[email protected]",
"country": "Singapore",
"allergies": "Peanuts",
"bloodType": "A+",
"condition": "High blood pressure",
"dateOfAdmission": "2024-01-01",
"diagnosis": "Runny nose",
"symptom": "Sneezing, sniffing"
},
{
"nric": "S8913957B",
Expand All @@ -77,14 +77,14 @@
"dateOfBirth": "2001-01-01",
"sex": "F",
"status": "UNWELL",
"email": null,
"country": null,
"allergies": null,
"bloodType": null,
"condition": null,
"dateOfAdmission": null,
"diagnosis": null,
"symptom": null
"email": "[email protected]",
"country": "Singapore",
"allergies": "Peanuts",
"bloodType": "A+",
"condition": "High blood pressure",
"dateOfAdmission": "2024-01-01",
"diagnosis": "Runny nose",
"symptom": "Sneezing, sniffing"
},
{
"nric": "T0536171Z",
Expand All @@ -94,14 +94,14 @@
"dateOfBirth": "2001-01-01",
"sex": "F",
"status": "PENDING",
"email": null,
"country": null,
"allergies": null,
"bloodType": null,
"condition": null,
"dateOfAdmission": null,
"diagnosis": null,
"symptom": null
"email": "[email protected]",
"country": "Singapore",
"allergies": "Peanuts",
"bloodType": "A+",
"condition": "High blood pressure",
"dateOfAdmission": "2024-01-01",
"diagnosis": "Runny nose",
"symptom": "Sneezing, sniffing"
},
{
"nric": "T0829102Z",
Expand All @@ -111,14 +111,14 @@
"dateOfBirth": "2001-01-01",
"sex": "M",
"status": "HEALTHY",
"email": null,
"country": null,
"allergies": null,
"bloodType": null,
"condition": null,
"dateOfAdmission": null,
"diagnosis": null,
"symptom": null
"email": "[email protected]",
"country": "Singapore",
"allergies": "Peanuts",
"bloodType": "A+",
"condition": "High blood pressure",
"dateOfAdmission": "2024-01-01",
"diagnosis": "Runny nose",
"symptom": "Sneezing, sniffing"
}
]
}

0 comments on commit d7609b6

Please sign in to comment.