@teikei/schemas
Version:
Teikei validation schemas. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.
24 lines (23 loc) • 378 B
JSON
{
"type": "object",
"required": ["name", "city", "latitude", "longitude"],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string",
"maxLength": 255
},
"city": {
"type": "string",
"maxLength": 255
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
}
}
}