An item I want to shop for.
Record Key
tid
Timestamp-based ID
Properties
checked
boolean
Optional
A boolean value showing whether the item has been checked or not, it's optional as it defaults to unchecked
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
text
string
Required
the name of the item being added to the grocery list
maxGraphemes: 300 graphemesminGraphemes: 1 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"description": "the name of the item being added to the grocery list",
"maxGraphemes": 300,
"minGraphemes": 1
},
"checked": {
"type": "boolean",
"description": "A boolean value showing whether the item has been checked or not, it's optional as it defaults to unchecked"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "An item I want to shop for."
}