A Beacon Bits event fragment collected by the user
Record Key
tid
Timestamp-based ID
Properties
collectedAt
string
datetime
Required
Timestamp when the fragment was collected
createdAt
string
datetime
Required
Timestamp when the fragment record was written
eventSlug
string
Required
Event identifier for this fragment
maxGraphemes: 128 graphemesfragmentId
string
Required
Fragment identifier within the event
maxGraphemes: 128 graphemessource
string
Required
How the fragment was collected
Known values:
check_in, pass_exchangeView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"eventSlug",
"fragmentId",
"source",
"collectedAt",
"createdAt"
],
"properties": {
"source": {
"type": "string",
"description": "How the fragment was collected",
"knownValues": [
"check_in",
"pass_exchange"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the fragment record was written"
},
"eventSlug": {
"type": "string",
"description": "Event identifier for this fragment",
"maxGraphemes": 128
},
"fragmentId": {
"type": "string",
"description": "Fragment identifier within the event",
"maxGraphemes": 128
},
"collectedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the fragment was collected"
}
}
},
"description": "A Beacon Bits event fragment collected by the user"
}