Something went wrong. Try again.
Monorepo for Tangled
Something went wrong. Try again.
983 B · 39 lines
JSON
12345678910111213141516171819202122232425262728293031323334353637383940{ "lexicon": 1, "id": "sh.tangled.git.countRefUpdates", "defs": { "main": { "type": "query", "parameters": { "type": "params", "required": ["subject"], "properties": { "subject": { "type": "string", "format": "did", "description": "Repo DID whose ref-update records to list." } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["count", "distinctAuthors"], "properties": { "count": { "type": "integer", "minimum": 0, "description": "Total number of matching records." }, "distinctAuthors": { "type": "integer", "minimum": 0, "description": "Number of distinct authors among the matching records." } } } } } }}