update documentation

This commit is contained in:
SowinskiBraeden committed 2023-01-07 15:11:05 -08:00
1 parent 0d29e1f382
commit 807758d924
1 file changed
+8 -4
+8 -4
View File
@@ -190,9 +190,12 @@ There are several account that can be registered into the system. As you may gue
```jsonc ```jsonc
{ {
"firstname": "Homer", "firstname": "Homer",
"middlename": "Jay", "middlename": "Jay", // (optional)
"lastname": "Simpson", "lastname": "Simpson",
"dob": "12-05-1956", "province": "...", // (optional)
"city": "Springfield", // (optional)
"postal": "...", // (optional)
"dob": "12-05-1956", // (optional)
"email": "homer_simpson@example.com", "email": "homer_simpson@example.com",
"password1": "homerLovesDuffBeer123", "password1": "homerLovesDuffBeer123",
"password2": "homerLovesDuffBeer123" "password2": "homerLovesDuffBeer123"
@@ -223,11 +226,12 @@ There are several account that can be registered into the system. As you may gue
```jsonc ```jsonc
{ {
"firstname": "Bart", "firstname": "Bart",
"middlename": "JoJo", "middlename": "JoJo", // (optional)
"lastname": "Simpson", "lastname": "Simpson",
"age": 10, "age": 10,
"gradelevel": 4, "gradelevel": 4,
"dob": "17-12-1979", "dob": "17-12-1979",
"email": "bartsimpson@example.com",
"province": "...", "province": "...",
"city": "Springfield", "city": "Springfield",
"address": "742 Evergreen Terrace", "address": "742 Evergreen Terrace",
@@ -962,7 +966,7 @@ In the case of an emergency for a specified student, a contact is required to be
"province": "...", // (optional) "province": "...", // (optional)
"city": "Springfield", // (optional) "city": "Springfield", // (optional)
"address": "742 Evergreen Terrace", // (optional) "address": "742 Evergreen Terrace", // (optional)
"postal": " // (optional) "postal": "..." // (optional)
} }
``` ```