The record containing a Bet placed on a Cumulus Market
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
market
ref
com.atproto.repo.strongRef
Required
The record containing the Cumulus Market for this Bet
position
string
Required
No description available.
maxLength: 3 bytesminLength: 2 bytesAllowed:
yes, noView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"market",
"position",
"createdAt"
],
"properties": {
"market": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The record containing the Cumulus Market for this Bet"
},
"position": {
"enum": [
"yes",
"no"
],
"type": "string",
"maxLength": 3,
"minLength": 2
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "The record containing a Bet placed on a Cumulus Market"
}