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

34 lines
580 B
JSON

{
"$id": "sprints",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name",
"startDate",
"endDate"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"startDate": {
"type": "string",
"format": "date"
},
"endDate": {
"type": "string",
"format": "date"
},
"goal": {
"type": "string"
},
"project": {
"type": "string",
"x-relation": {
"collection": "projects",
"type": "single"
}
}
}
}