a2bad977a8
* ✨ Add getRepos and getRecords endpoints for bulk fetching * ✨ Fix issues and add tests for get repos and get records * ✨ Use the right lxm * 🐛 Revert changes in lockfile * ✨ Add getAccountInfos in PDS * 🐛 Fix type def for repo and record view detail * ✅ Update snapshots * ✅ Update snapshots * ✨ Consolidate error type for com.atproto and tools.ozone getRecord error type * 🧹 Cleanup * ✅ Update snapshots * ✅ Update snapshots * ✨ Changeset
44 lines
1004 B
JSON
44 lines
1004 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "tools.ozone.moderation.getRepos",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "Get details about some repositories.",
|
|
"parameters": {
|
|
"type": "params",
|
|
"required": ["dids"],
|
|
"properties": {
|
|
"dids": {
|
|
"type": "array",
|
|
"maxLength": 100,
|
|
"items": {
|
|
"type": "string",
|
|
"format": "did"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["repos"],
|
|
"properties": {
|
|
"repos": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "union",
|
|
"refs": [
|
|
"tools.ozone.moderation.defs#repoViewDetail",
|
|
"tools.ozone.moderation.defs#repoViewNotFound"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|