This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / lexicons / repo / getRepoByName.json
1.1 kB 45 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.getRepoByName", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": ["owner", "name"], 10 "properties": { 11 "owner": { 12 "type": "string", 13 "format": "did", 14 "description": "DID of the account that owns the repo." 15 }, 16 "name": { 17 "type": "string", 18 "description": "Name of the repo as it appears in its url." 19 } 20 } 21 }, 22 "output": { 23 "encoding": "application/json", 24 "schema": { 25 "type": "object", 26 "required": ["uri", "value"], 27 "properties": { 28 "uri": { 29 "type": "string", 30 "format": "at-uri" 31 }, 32 "cid": { 33 "type": "string", 34 "format": "cid" 35 }, 36 "value": { 37 "type": "unknown", 38 "description": "Embedded sh.tangled.repo record." 39 } 40 } 41 } 42 } 43 } 44 } 45}