No description available.
Record Key
tid
Timestamp-based ID
Properties
category
string
Optional
No description available.
maxLength: 64 bytescontent
string
Required
No description available.
maxLength: 50000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
lastUpdated
string
datetime
Required
An RFC 3339 formatted timestamp.
relatedFacts
array
of
string
at-uri
Optional
AT URIs of related facts
tags
array
of
string
Optional
No description available.
maxLength: 20 itemstitle
string
Required
No description available.
maxLength: 256 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"content",
"createdAt",
"lastUpdated"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 20
},
"title": {
"type": "string",
"maxLength": 256
},
"content": {
"type": "string",
"maxLength": 50000
},
"category": {
"type": "string",
"maxLength": 64
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"lastUpdated": {
"type": "string",
"format": "datetime"
},
"relatedFacts": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"description": "AT URIs of related facts"
}
}
}
}