rename
This commit is contained in:
+44
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"$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"
|
||||
}
|
||||
Reference in New Issue
Block a user