mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
34 lines
718 B
JSON
34 lines
718 B
JSON
{
|
|
"description": "User update data",
|
|
"required": true,
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 100
|
|
},
|
|
"email": {
|
|
"type": "string",
|
|
"format": "email"
|
|
},
|
|
"age": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 150
|
|
},
|
|
"address": {
|
|
"$ref": "../schemas/address-schema.json"
|
|
},
|
|
"preferences": {
|
|
"$ref": "../schemas/user-preferences-schema.json"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|