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

21 lines
331 B
JSON

{
"$id": "labels",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name",
"color"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"color": {
"type": "string"
},
"description": {
"type": "string"
}
}
}