Now let's take a silly one
0

Configure Feed

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

at main 940 B View raw
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.git.temp.getTag", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": [ 10 "repo", 11 "tag" 12 ], 13 "properties": { 14 "repo": { 15 "type": "string", 16 "format": "did", 17 "description": "DID of the repository" 18 }, 19 "tag": { 20 "type": "string", 21 "description": "Name of tag, such as v1.3.0" 22 } 23 } 24 }, 25 "output": { 26 "encoding": "*/*" 27 }, 28 "errors": [ 29 { 30 "name": "RepoNotFound", 31 "description": "Repository not found or access denied" 32 }, 33 { 34 "name": "TagNotFound", 35 "description": "Tag not found" 36 }, 37 { 38 "name": "InvalidRequest", 39 "description": "Invalid request parameters" 40 } 41 ] 42 } 43 } 44}