A ranked list of games created by a user
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
items
array
of
ref
#listItem
Optional
Deprecated: use at.postgame.list.item records instead
name
string
Required
No description available.
maxLength: 256 bytesnumbered
boolean
Optional
Whether to display position numbers on items
updatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
url
string
uri
Optional
Deprecated: clients should derive a view URL from the record's at-uri instead
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt",
"updatedAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Deprecated: clients should derive a view URL from the record's at-uri instead"
},
"name": {
"type": "string",
"maxLength": 256
},
"items": {
"type": "array",
"items": {
"ref": "#listItem",
"type": "ref"
},
"description": "Deprecated: use at.postgame.list.item records instead"
},
"numbered": {
"type": "boolean",
"description": "Whether to display position numbers on items"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A ranked list of games created by a user"
}