mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
23 lines
374 B
JSON
23 lines
374 B
JSON
{
|
|
"type": "object",
|
|
"required": ["id", "name", "email"],
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer",
|
|
"format": "int64"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 100
|
|
},
|
|
"email": {
|
|
"type": "string",
|
|
"format": "email"
|
|
},
|
|
"address": {
|
|
"$ref": "./address-schema.json"
|
|
}
|
|
}
|
|
}
|