A candidate feature idea on an anab.at board. Lives in the board owner's repo.
Record Key
tid
Timestamp-based ID
Properties
archived
boolean
Optional
No description available.
Default:
falseboard
string
at-uri
Required
The at.anab.board record this idea belongs to (same repo).
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
string
uri
Optional
at:// or https:// link to the long-form subject.
text
string
Optional
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemestitle
string
Required
No description available.
maxLength: 1200 bytesmaxGraphemes: 120 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"board",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"board": {
"type": "string",
"format": "at-uri",
"description": "The at.anab.board record this idea belongs to (same repo)."
},
"title": {
"type": "string",
"maxLength": 1200,
"maxGraphemes": 120
},
"subject": {
"type": "string",
"format": "uri",
"description": "at:// or https:// link to the long-form subject."
},
"archived": {
"type": "boolean",
"default": false
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A candidate feature idea on an anab.at board. Lives in the board owner's repo."
}