app.protoimsg.chat.authVerify

lexicon.store View official

Documentation

Ephemeral challenge-response auth record. Client writes this to prove PDS write access during login, server verifies the nonce, then client deletes it immediately.

main record

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

createdAt string datetime Required

When this verification record was created.

nonce string Required

Server-issued challenge nonce to prove write access.

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."
}

Lexicon Garden

@