Files
varsity/test/shared/schemas/user-schema.json
2025-10-01 20:01:42 +00:00

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"
}
}
}