No description available.
Record Key
tid
Timestamp-based ID
Properties
args
array
of
object
Required
No description available.
maxLength: 10 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Required
No description available.
maxLength: 1024 bytespredicate
string
Required
No description available.
maxLength: 64 bytestags
array
of
string
Optional
No description available.
maxLength: 20 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"predicate",
"args",
"description",
"createdAt"
],
"properties": {
"args": {
"type": "array",
"items": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"maxLength": 64
},
"type": {
"type": "string",
"default": "symbol",
"maxLength": 32
},
"description": {
"type": "string",
"maxLength": 256
}
}
},
"maxLength": 10
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 20
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"predicate": {
"type": "string",
"maxLength": 64
},
"description": {
"type": "string",
"maxLength": 1024
}
}
}
}