A relationship between a game and an organization.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
displayName
string
Optional
The name to be used if there is no profile associated with this credit, or the profile is inaccessible.
maxLength: 640 bytesgame
ref
com.atproto.repo.strongRef
Required
The game to which this organization is being credited.
org
ref
com.atproto.repo.strongRef
Required
No description available.
roles
array
of
ref
games.gamesgamesgamesgames.defs#companyRole
Required
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"org",
"game",
"roles"
],
"properties": {
"org": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"game": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The game to which this organization is being credited."
},
"roles": {
"type": "array",
"items": {
"ref": "games.gamesgamesgamesgames.defs#companyRole",
"type": "ref"
}
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"displayName": {
"type": "string",
"maxLength": 640,
"description": "The name to be used if there is no profile associated with this credit, or the profile is inaccessible."
}
}
},
"description": "A relationship between a game and an organization."
}