add grade field to education entry (#463)

* add grade field to education entry

* remove optional and use "| None"

* remove optional and use "| None"

* update schema
This commit is contained in:
Ian Holloway
2025-10-23 14:21:32 -04:00
committed by GitHub
parent f18869930a
commit 8ad18fe9c0
6 changed files with 41 additions and 1 deletions

View File

@@ -372,6 +372,21 @@
}
]
},
"grade": {
"default": null,
"examples": [
"GPA: 3.00/4.00"
],
"title": "Grade",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"date": {
"default": null,
"description": "The date can be written in the formats YYYY-MM-DD, YYYY-MM, or YYYY, or as an arbitrary string such as \"Fall 2023.\"",