Something went wrong. Try again.
atproto made easy crates.io/crates/jacquard
atproto rust
Something went wrong. Try again.
1.4 kB · 52 lines
JSON
at bos-beta
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152{ "lexicon": 1, "id": "tools.ozone.queue.updateQueue", "defs": { "main": { "type": "procedure", "description": "Update queue properties. Currently only supports updating the name and enabled status to prevent configuration conflicts.", "input": { "encoding": "application/json", "schema": { "type": "object", "required": [ "queueId" ], "properties": { "description": { "type": "string", "description": "Optional description of the queue" }, "enabled": { "type": "boolean", "description": "Enable or disable the queue" }, "name": { "type": "string", "description": "New display name for the queue" }, "queueId": { "type": "integer", "description": "ID of the queue to update" } } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "queue" ], "properties": { "queue": { "type": "ref", "ref": "tools.ozone.queue.defs#queueView" } } } } } }}