social.coves.actor.signup

coves.social

{
  "id": "social.coves.actor.signup",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "handle",
            "email",
            "password"
          ],
          "properties": {
            "email": {
              "type": "string",
              "maxLength": 320,
              "description": "Email address for account recovery and notifications"
            },
            "handle": {
              "type": "string",
              "format": "handle",
              "description": "Requested handle for the account (e.g., alice.coves.dev)"
            },
            "password": {
              "type": "string",
              "maxLength": 512,
              "description": "Account password (must meet strength requirements)"
            },
            "inviteCode": {
              "type": "string",
              "maxLength": 128,
              "description": "Invite code (required if instance has invite-only registration)"
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "InvalidHandle",
          "description": "Handle does not meet format requirements"
        },
        {
          "name": "HandleNotAvailable",
          "description": "The requested handle is already taken"
        },
        {
          "name": "InvalidInviteCode",
          "description": "The provided invite code is invalid or expired"
        },
        {
          "name": "InvalidEmail",
          "description": "The email address is invalid"
        },
        {
          "name": "WeakPassword",
          "description": "Password does not meet strength requirements"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "did",
            "handle",
            "accessJwt",
            "refreshJwt"
          ],
          "properties": {
            "did": {
              "type": "string",
              "format": "did",
              "description": "The DID of the newly created account"
            },
            "handle": {
              "type": "string",
              "format": "handle",
              "description": "The handle of the newly created account"
            },
            "accessJwt": {
              "type": "string",
              "maxLength": 8192,
              "description": "Access token for authenticated requests"
            },
            "refreshJwt": {
              "type": "string",
              "maxLength": 8192,
              "description": "Refresh token for obtaining new access tokens"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Register a new account on the Coves instance. Creates account on PDS and indexes in AppView."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}

Validate Record

Validate a record against social.coves.actor.signup

Validation Options
Treat any remaining unresolved references as valid

Metadata

DID
did:web:coves.social
CID
bafyreieb63kddklh3cjjufhgnfyg77l7fx276cbjn5d2ddyj26du6afvee
Indexed At
2026-07-24 05:18 UTC
AT-URI
at://did:web:coves.social/com.atproto.lexicon.schema/social.coves.actor.signup

Lexicon Garden

@