{
"name": "Task",
"type": "object",
"title": "Task",
"description": "A task item with priority, due date, and completion status",
"properties": {
"title": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"description": {
"type": "string",
"maxLength": 1000
},
"priority": {
"type": "string",
"enum": ["low", "medium", "high"],
"default": "medium"
},
"completed": {
"type": "boolean",
"default": false
},
"due_date": {
"type": "string",
"format": "date"
},
"tags": {
"type": "array",
"items": {"type": "string"}
},
"internal_notes": {
"type": "string",
"rls": {
"read": {"user_condition": {"role": "admin"}},
"write": {"user_condition": {"role": "admin"}}
}
}
},
"required": ["title"],
"rls": {
"create": true,
"read": {"created_by": "{{user.email}}"},
"update": {"created_by": "{{user.email}}"},
"delete": {"created_by": "{{user.email}}"}
}
}