A wishlist or registry item. Can be generic or specific.
tid
Timestamp-based ID
Properties
budget
ref
#moneyRange
Optional
The budget the user is willing to spend.
color
string
Optional
Color preference (e.g. 'Space Black', 'Red').
maxLength: 200 bytesmaxGraphemes: 50 graphemescreatedAt
string
datetime
Required
Timestamp when the item was created.
description
string
Optional
Open description field for any additional details, preferences, or notes.
maxLength: 10000 bytesmaxGraphemes: 2000 graphemesimage
blob
Optional
An image of the item.
maxSize: 1.0 MBisDonation
boolean
Optional
Whether this item is a donation link (e.g. GoFundMe, charity). Donation items appear first in list views.
falselinks
array
of
ref
#link
Optional
Links to product pages, listings, or references.
maxLength: 20 itemsname
string
Required
The name of the item. Can be generic (e.g. 'a new laptop') or specific (e.g. 'MacBook Pro M4 14"').
maxLength: 1000 bytesmaxGraphemes: 200 graphemesprice
ref
#money
Optional
The actual or listed price of the item.
priority
string
Optional
How much the user wants this item.
must-have, strong-desire, somedaysize
string
Optional
Size specification (e.g. 'Large', '10.5', '14 inch').
maxLength: 200 bytesmaxGraphemes: 50 graphemesupdatedAt
string
datetime
Optional
Timestamp when the item was last modified.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1000,
"description": "The name of the item. Can be generic (e.g. 'a new laptop') or specific (e.g. 'MacBook Pro M4 14\"').",
"maxGraphemes": 200
},
"size": {
"type": "string",
"maxLength": 200,
"description": "Size specification (e.g. 'Large', '10.5', '14 inch').",
"maxGraphemes": 50
},
"color": {
"type": "string",
"maxLength": 200,
"description": "Color preference (e.g. 'Space Black', 'Red').",
"maxGraphemes": 50
},
"image": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "An image of the item."
},
"links": {
"type": "array",
"items": {
"ref": "#link",
"type": "ref"
},
"maxLength": 20,
"description": "Links to product pages, listings, or references."
},
"price": {
"ref": "#money",
"type": "ref",
"description": "The actual or listed price of the item."
},
"budget": {
"ref": "#moneyRange",
"type": "ref",
"description": "The budget the user is willing to spend."
},
"priority": {
"type": "string",
"description": "How much the user wants this item.",
"knownValues": [
"must-have",
"strong-desire",
"someday"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the item was created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the item was last modified."
},
"isDonation": {
"type": "boolean",
"default": false,
"description": "Whether this item is a donation link (e.g. GoFundMe, charity). Donation items appear first in list views."
},
"description": {
"type": "string",
"maxLength": 10000,
"description": "Open description field for any additional details, preferences, or notes.",
"maxGraphemes": 2000
}
}
},
"description": "A wishlist or registry item. Can be generic or specific."
}