A stored pass received from another Beacon Bits user
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the pass record was written
eventSlug
string
Optional
Optional event identifier associated with the pass
maxGraphemes: 128 graphemesfragmentReceived
string
Optional
Optional fragment identifier awarded during the pass
maxGraphemes: 128 graphemespassedAt
string
datetime
Required
Timestamp when the pass exchange occurred
receivedCard
object
Required
No description available.
venueName
string
Required
Venue display name captured at pass time
maxGraphemes: 128 graphemesvenueUri
string
Required
Venue where the pass exchange happened
withDid
string
did
Required
DID of the other user in the pass exchange
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"withDid",
"venueUri",
"venueName",
"receivedCard",
"passedAt",
"createdAt"
],
"properties": {
"withDid": {
"type": "string",
"format": "did",
"description": "DID of the other user in the pass exchange"
},
"passedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the pass exchange occurred"
},
"venueUri": {
"type": "string",
"description": "Venue where the pass exchange happened"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the pass record was written"
},
"eventSlug": {
"type": "string",
"description": "Optional event identifier associated with the pass",
"maxGraphemes": 128
},
"venueName": {
"type": "string",
"description": "Venue display name captured at pass time",
"maxGraphemes": 128
},
"receivedCard": {
"type": "object",
"required": [
"handle"
],
"properties": {
"handle": {
"type": "string",
"description": "Handle snapshot captured from the other user at pass time",
"maxGraphemes": 256
}
}
},
"fragmentReceived": {
"type": "string",
"description": "Optional fragment identifier awarded during the pass",
"maxGraphemes": 128
}
}
},
"description": "A stored pass received from another Beacon Bits user"
}