A wishlist or registry.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the list was created.
description
string
Optional
A longer description of the list's purpose or occasion.
maxLength: 5000 bytesmaxGraphemes: 1000 graphemestitle
string
Required
The title of the list.
maxLength: 500 bytesmaxGraphemes: 100 graphemesupdatedAt
string
datetime
Optional
Timestamp when the list was last modified.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 500,
"description": "The title of the list.",
"maxGraphemes": 100
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the list was created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the list was last modified."
},
"description": {
"type": "string",
"maxLength": 5000,
"description": "A longer description of the list's purpose or occasion.",
"maxGraphemes": 1000
}
}
},
"description": "A wishlist or registry."
}