@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.
64 lines (63 loc) • 1.15 kB
JSON
{
"type": "object",
"required": ["email", "name", "password", "origin", "baseurl"],
"properties": {
"id": {
"type": "integer"
},
"email": {
"type": "string",
"maxLength": 255
},
"name": {
"type": "string",
"maxLength": 255
},
"password": {
"type": "string",
"maxLength": 255
},
"origin": {
"type": "string",
"maxLength": 255
},
"baseurl": {
"type": "string",
"maxLength": 255
},
"phone": {
"type": "string",
"maxLength": 255
},
"isVerified": {
"type": "boolean"
},
"verifyToken": {
"type": "string",
"maxLength": 255
},
"verifyExpires": {
"type": "string",
"format": "date-time"
},
"verifyChanges": {
"type": "object"
},
"resetToken": {
"type": "string",
"maxLength": 255
},
"resetExpires": {
"type": "string",
"format": "date-time"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
}
}
}