@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.
54 lines (53 loc) • 912 B
JSON
{
"type": "object",
"required": ["name", "city", "address", "latitude", "longitude"],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string",
"maxLength": 255
},
"city": {
"type": "string",
"maxLength": 255
},
"address": {
"type": "string",
"maxLength": 255
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
},
"url": {
"anyOf": [
{
"type": "string",
"maxLength": 255,
"format": "url"
},
{
"type": "string",
"enum": [
""
]
}
]
},
"description": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
}
}
}