Something went wrong. Try again.
atproto made easy crates.io/crates/jacquard
atproto rust
Something went wrong. Try again.
1.3 kB · 47 lines
JSON
at bos-beta
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647{ "lexicon": 1, "id": "tools.ozone.queue.deleteQueue", "defs": { "main": { "type": "procedure", "description": "Delete a moderation queue. Optionally migrate reports to another queue.", "input": { "encoding": "application/json", "schema": { "type": "object", "required": [ "queueId" ], "properties": { "migrateToQueueId": { "type": "integer", "description": "Optional: migrate all reports to this queue. If not specified, reports will be set to unassigned (-1)." }, "queueId": { "type": "integer", "description": "ID of the queue to delete" } } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "deleted" ], "properties": { "deleted": { "type": "boolean" }, "reportsMigrated": { "type": "integer", "description": "Number of reports that were migrated (if migration occurred)" } } } } } }}