A record that holds a did:key for verifying a players stats. This is intended to be written at a verification authorities repo
Record Key
literal:self
Fixed literal value
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
key
ref
blue.2048.key.defs#key
Required
A did:key that is used to verify an at://2048 authority has verified this players stats to a certain degree
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"key",
"createdAt"
],
"properties": {
"key": {
"ref": "blue.2048.key.defs#key",
"type": "ref",
"description": "A did:key that is used to verify an at://2048 authority has verified this players stats to a certain degree"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A record that holds a did:key for verifying a players stats. This is intended to be written at a verification authorities repo"
}