A record containing a bookmark tag for organization.
Record Key
any
Any valid record key
Properties
color
string
Optional
A hexadecimal color code
maxLength: 70 bytesmaxGraphemes: 7 graphemescreatedAt
string
datetime
Required
A client-defined timestamp for the creation of the tag
description
string
Optional
A description of the tag for additional context
maxLength: 50000 bytesmaxGraphemes: 5000 graphemesname
string
Required
A de-duplicated string containing the name of the tag
maxLength: 640 bytesmaxGraphemes: 64 graphemesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"description": "A de-duplicated string containing the name of the tag",
"maxGraphemes": 64
},
"color": {
"type": "string",
"maxLength": 70,
"description": "A hexadecimal color code",
"maxGraphemes": 7
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "A client-defined timestamp for the creation of the tag"
},
"description": {
"type": "string",
"maxLength": 50000,
"description": "A description of the tag for additional context",
"maxGraphemes": 5000
}
}
},
"description": "A record containing a bookmark tag for organization."
}