A Cartridge-specific verification record for studios, developers, publishers, and games. Written by the Cartridge verifier account.
Record Key
tid
Timestamp-based ID
Properties
accountType
string
Required
Type of verified account.
maxLength: 64 bytesKnown values:
studio, developer, publisher, gamecreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
displayName
string
Required
Display name at time of verification.
maxLength: 640 byteshandle
string
handle
Required
Handle of the verified account at time of verification.
subject
string
did
Required
DID of the verified account.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"handle",
"displayName",
"accountType",
"createdAt"
],
"properties": {
"handle": {
"type": "string",
"format": "handle",
"description": "Handle of the verified account at time of verification."
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the verified account."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"accountType": {
"type": "string",
"maxLength": 64,
"description": "Type of verified account.",
"knownValues": [
"studio",
"developer",
"publisher",
"game"
]
},
"displayName": {
"type": "string",
"maxLength": 640,
"description": "Display name at time of verification."
}
}
},
"description": "A Cartridge-specific verification record for studios, developers, publishers, and games. Written by the Cartridge verifier account."
}