Marks an item as bought. Stored in the list owner's repo.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the item was marked as bought.
item
string
at-uri
Required
AT-URI of the purchased item.
price
ref
blue.registry.item#money
Optional
What was actually paid.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"item",
"createdAt"
],
"properties": {
"item": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the purchased item."
},
"price": {
"ref": "blue.registry.item#money",
"type": "ref",
"description": "What was actually paid."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the item was marked as bought."
}
}
},
"description": "Marks an item as bought. Stored in the list owner's repo."
}