a list of groceries
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"groceryItem",
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime"
},
"groceryItem": {
"type": "string",
"maxGraphemes": 100,
"minGraphemes": 1
}
}
},
"description": "a list of groceries"
}