Identity verification status record — proves that a DID has been verified by a trusted verifier.
Record Key
tid
Timestamp-based ID
Properties
credentialRef
string
Optional
Reference to the W3C Verifiable Credential (e.g., a JWT or URN).
maxLength: 4096 bytesstatus
string
Required
Verification status.
Known values:
verified, pending, revokedverifiedAt
string
datetime
Required
ISO 8601 timestamp of when verification was performed.
verifierDid
string
did
Required
DID of the verifier that issued this verification.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"status",
"verifierDid",
"verifiedAt"
],
"properties": {
"status": {
"type": "string",
"description": "Verification status.",
"knownValues": [
"verified",
"pending",
"revoked"
]
},
"verifiedAt": {
"type": "string",
"format": "datetime",
"description": "ISO 8601 timestamp of when verification was performed."
},
"verifierDid": {
"type": "string",
"format": "did",
"description": "DID of the verifier that issued this verification."
},
"credentialRef": {
"type": "string",
"maxLength": 4096,
"description": "Reference to the W3C Verifiable Credential (e.g., a JWT or URN)."
}
}
},
"description": "Identity verification status record — proves that a DID has been verified by a trusted verifier."
}