an item in my grocery list
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"description": "the name of the item in my list",
"maxGraphemes": 300,
"minGraphemes": 0
},
"checked": {
"type": "boolean"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "an item in my grocery list\n"
}