projects-app/.gitapp/schemas/projects.json

42 lines
697 B
JSON

{
"$id": "projects",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name",
"key"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"key": {
"type": "string",
"minLength": 2,
"maxLength": 5
},
"description": {
"type": "string"
},
"color": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"active",
"on-hold",
"completed",
"archived"
]
},
"lead": {
"type": "string",
"x-relation": {
"collection": "users",
"type": "single"
}
}
}
}