Ephemeral challenge-response auth record. Client writes this to prove PDS write access during login, server verifies the nonce, then client deletes it immediately.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"nonce",
"createdAt"
],
"properties": {
"nonce": {
"type": "string",
"description": "Server-issued challenge nonce to prove write access."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this verification record was created."
}
}
},
"description": "Ephemeral challenge-response auth record. Client writes this to prove PDS write access during login, server verifies the nonce, then client deletes it immediately."
}