19 lines
328 B
JSON
19 lines
328 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": ["null", "string"]
|
||
|
},
|
||
|
"firstName": {
|
||
|
"type": ["null", "string"]
|
||
|
},
|
||
|
"lastName": {
|
||
|
"type": ["null", "string"]
|
||
|
},
|
||
|
"division": {
|
||
|
"type": ["null", "string"]
|
||
|
}
|
||
|
}
|
||
|
}
|