tools.ozone.verification.grantVerifications

ozone-lexicons.bsky.social

Documentation

Grant verifications to multiple subjects. Allows batch processing of up to 100 verifications at once.

main procedure

Grant verifications to multiple subjects. Allows batch processing of up to 100 verifications at once.

Input

Encodingapplication/json
verifications array Required

Array of verification requests to process

maxLength: 100 items

Output

Encodingapplication/json
failedVerifications array Required

No description available.

verifications array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "verifications"
      ],
      "properties": {
        "verifications": {
          "type": "array",
          "items": {
            "ref": "#verificationInput",
            "type": "ref"
          },
          "maxLength": 100,
          "description": "Array of verification requests to process"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "verifications",
        "failedVerifications"
      ],
      "properties": {
        "verifications": {
          "type": "array",
          "items": {
            "ref": "tools.ozone.verification.defs#verificationView",
            "type": "ref"
          }
        },
        "failedVerifications": {
          "type": "array",
          "items": {
            "ref": "#grantError",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Grant verifications to multiple subjects. Allows batch processing of up to 100 verifications at once."
}
grantError object

Error object for failed verifications.

Properties

error string Required

Error message describing the reason for failure.

subject string did Required

The did of the subject being verified

View raw schema
{
  "type": "object",
  "required": [
    "error",
    "subject"
  ],
  "properties": {
    "error": {
      "type": "string",
      "description": "Error message describing the reason for failure."
    },
    "subject": {
      "type": "string",
      "format": "did",
      "description": "The did of the subject being verified"
    }
  },
  "description": "Error object for failed verifications."
}
verificationInput object

No description available.

Properties

createdAt string datetime Optional

Timestamp for verification record. Defaults to current time when not specified.

displayName string Required

Display name of the subject the verification applies to at the moment of verifying.

handle string handle Required

Handle of the subject the verification applies to at the moment of verifying.

subject string did Required

The did of the subject being verified

View raw schema
{
  "type": "object",
  "required": [
    "subject",
    "handle",
    "displayName"
  ],
  "properties": {
    "handle": {
      "type": "string",
      "format": "handle",
      "description": "Handle of the subject the verification applies to at the moment of verifying."
    },
    "subject": {
      "type": "string",
      "format": "did",
      "description": "The did of the subject being verified"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime",
      "description": "Timestamp for verification record. Defaults to current time when not specified."
    },
    "displayName": {
      "type": "string",
      "description": "Display name of the subject the verification applies to at the moment of verifying."
    }
  }
}

Lexicon Garden

@