toolsOzoneSetAddValues top-level constant

Map<String, dynamic> const toolsOzoneSetAddValues

tools.ozone.set.addValues

Implementation

const toolsOzoneSetAddValues = <String, dynamic>{
  "lexicon": 1,
  "id": "tools.ozone.set.addValues",
  "defs": {
    "main": {
      "type": "procedure",
      "description":
          "Add values to a specific set. Attempting to add values to a set that does not exist will result in an error.",
      "input": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["name", "values"],
          "properties": {
            "name": {
              "type": "string",
              "description": "Name of the set to add values to"
            },
            "values": {
              "type": "array",
              "description": "Array of string values to add to the set",
              "items": {"type": "string"},
              "minLength": 1,
              "maxLength": 1000
            }
          }
        }
      }
    }
  }
};