User-suggested edits to an existing venue record
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"changes",
"createdAt"
],
"properties": {
"changes": {
"type": "array",
"items": {
"type": "object",
"required": [
"field",
"value"
],
"properties": {
"field": {
"type": "string",
"maxLength": 64,
"description": "Field name in camelCase"
},
"value": {
"type": "string",
"maxLength": 4096,
"description": "Proposed new value"
}
}
},
"description": "List of field changes"
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT-URI reference to the town.laugh.db.venue record"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of when the suggestion was created"
}
}
},
"description": "User-suggested edits to an existing venue record"
}