Files
blackroad-os-prism-console/templates/notion/TEMPLATE-DATABASE-TASKS.json
Alexa Louise 557ff7fc14 feat: Sync latest templates from blackroad-sandbox
 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-12 01:38:06 -06:00

73 lines
1.2 KiB
JSON

{
"parent": {
"type": "page_id",
"page_id": "{{PARENT_PAGE_ID}}"
},
"title": [
{
"type": "text",
"text": {
"content": "Tasks"
}
}
],
"properties": {
"Name": {
"title": {}
},
"Status": {
"select": {
"options": [
{
"name": "Todo",
"color": "gray"
},
{
"name": "In Progress",
"color": "blue"
},
{
"name": "Done",
"color": "green"
},
{
"name": "Blocked",
"color": "red"
}
]
}
},
"Priority": {
"select": {
"options": [
{
"name": "High",
"color": "red"
},
{
"name": "Medium",
"color": "yellow"
},
{
"name": "Low",
"color": "gray"
}
]
}
},
"Assignee": {
"people": {}
},
"Due Date": {
"date": {}
},
"Tags": {
"multi_select": {}
},
"Estimate": {
"number": {
"format": "number"
}
}
}
}