atproto blogging
at main 35 lines 903 B view raw
1{ 2 "lexicon": 1, 3 "id": "tools.ozone.set.addValues", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Add values to a specific set. Attempting to add values to a set that does not exist will result in an error.", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": [ 13 "name", 14 "values" 15 ], 16 "properties": { 17 "name": { 18 "type": "string", 19 "description": "Name of the set to add values to" 20 }, 21 "values": { 22 "type": "array", 23 "description": "Array of string values to add to the set", 24 "items": { 25 "type": "string" 26 }, 27 "minLength": 1, 28 "maxLength": 1000 29 } 30 } 31 } 32 } 33 } 34 } 35}