Record declaring a verification relationship between an account and a .edu domain. Verifications are only considered valid by an app if issued by an account the app considers trusted.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"domain",
"createdAt"
],
"properties": {
"domain": {
"type": "string",
"description": "The domain the subject is verified under."
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the subject the verification applies to."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Date of when the verification was created."
}
}
},
"description": "Record declaring a verification relationship between an account and a .edu domain. Verifications are only considered valid by an app if issued by an account the app considers trusted."
}