atproto blogging
at main 50 lines 1.1 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.labeler.getServices", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get information about a list of labeler services.", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "dids" 12 ], 13 "properties": { 14 "detailed": { 15 "type": "boolean", 16 "default": false 17 }, 18 "dids": { 19 "type": "array", 20 "items": { 21 "type": "string", 22 "format": "did" 23 } 24 } 25 } 26 }, 27 "output": { 28 "encoding": "application/json", 29 "schema": { 30 "type": "object", 31 "required": [ 32 "views" 33 ], 34 "properties": { 35 "views": { 36 "type": "array", 37 "items": { 38 "type": "union", 39 "refs": [ 40 "app.bsky.labeler.defs#labelerView", 41 "app.bsky.labeler.defs#labelerViewDetailed" 42 ] 43 } 44 } 45 } 46 } 47 } 48 } 49 } 50}