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