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

16 lines
224 B
JSON

{
"type": "object",
"required": ["id", "name"],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"location": {
"$ref": "./address-schema.json"
}
}
}