Something went wrong. Try again.
Monorepo for Tangled
Something went wrong. Try again.
958 B · 38 lines
JSON
at sl/sv-pull
123456789101112131415161718192021222324252627282930313233343536373839{ "lexicon": 1, "id": "sh.tangled.string.countStrings", "defs": { "main": { "type": "query", "parameters": { "type": "params", "required": ["subject"], "properties": { "subject": { "type": "string", "description": "Scope identifier whose string 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." } } } } } }}