A Cartridge-specific verification record for studios, developers, and publishers. Written by the Cartridge verifier account.
Record Key
tid
Timestamp-based ID
Properties
accountType
string
Required
Type of verified account.
Known values:
studio, developer, publishercreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
displayName
string
Required
Display name at time of verification.
handle
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",
"description": "Type of verified account.",
"knownValues": [
"studio",
"developer",
"publisher"
]
},
"displayName": {
"type": "string",
"description": "Display name at time of verification."
}
}
},
"description": "A Cartridge-specific verification record for studios, developers, and publishers. Written by the Cartridge verifier account."
}