tools.ozone.set.deleteValues

ozone-lexicons.bsky.social

Documentation

Delete values from a specific set. Attempting to delete values that are not in the set will not result in an error

main procedure

Delete values from a specific set. Attempting to delete values that are not in the set will not result in an error

Input

Encodingapplication/json
name string Required

Name of the set to delete values from

values array Required

Array of string values to delete from the set

minLength: 1 items

Errors

SetNotFound set with the given name does not exist
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 delete values from"
        },
        "values": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "minLength": 1,
          "description": "Array of string values to delete from the set"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "SetNotFound",
      "description": "set with the given name does not exist"
    }
  ],
  "description": "Delete values from a specific set. Attempting to delete values that are not in the set will not result in an error"
}

Lexicon Garden

@