mrpy.nvim/schema.json

45 lines
799 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "ETA yaml frontmatter",
"properties": {
"name": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"backlog",
"selected for development",
"in progress",
"in review",
"on hold",
"done",
"closed"
]
},
"markdown_content": {
"type": "string"
},
"id": {
"type": "string",
"pattern": "^[a-z0-9]+$"
},
"parent_list": {
"anyOf": [
{
"const": 900400316794,
"description": "OPE Tooling"
}
]
}
},
"required": [
"name",
"status",
"markdown_content",
"parent_list"
],
"title": "clickup task",
"type": "object"
}