atproto blogging
at main 47 lines 1.0 kB view raw
1{ 2 "lexicon": 1, 3 "id": "tools.ozone.moderation.getRepos", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get details about some repositories.", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "dids" 12 ], 13 "properties": { 14 "dids": { 15 "type": "array", 16 "items": { 17 "type": "string", 18 "format": "did" 19 }, 20 "maxLength": 100 21 } 22 } 23 }, 24 "output": { 25 "encoding": "application/json", 26 "schema": { 27 "type": "object", 28 "required": [ 29 "repos" 30 ], 31 "properties": { 32 "repos": { 33 "type": "array", 34 "items": { 35 "type": "union", 36 "refs": [ 37 "tools.ozone.moderation.defs#repoViewDetail", 38 "tools.ozone.moderation.defs#repoViewNotFound" 39 ] 40 } 41 } 42 } 43 } 44 } 45 } 46 } 47}