tools.ozone.set.addValues

ozone-lexicons.bsky.social

Documentation

Add values to a specific set. Attempting to add values to a set that does not exist will result in an error.

main procedure

Add values to a specific set. Attempting to add values to a set that does not exist will result in an error.

Input

Encodingapplication/json
name string Required

Name of the set to add values to

values array Required

Array of string values to add to the set

maxLength: 1000 itemsminLength: 1 items
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": [
        "name",
        "values"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Name of the set to add values to"
        },
        "values": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "maxLength": 1000,
          "minLength": 1,
          "description": "Array of string values to add to the set"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Add values to a specific set. Attempting to add values to a set that does not exist will result in an error."
}

Lexicon Garden

@