UNPKG

@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.

79 lines (78 loc) 1.39 kB
{ "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" }, "acceptsNewMembers": { "type": "string", "maxLength": 255 }, "foundedAtYear": { "type": "number" }, "foundedAtMonth": { "type": "number" }, "maximumMembers": { "type": "number" }, "additionalProductInformation": { "type": "string" }, "participation": { "type": "string" }, "actsEcological": { "type": "boolean" }, "economicalBehavior": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }