Mirror of @tangled.org/core. Running on a Raspberry Pi Zero 2 (Please be gentle).
at HEAD 44 lines 946 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": "at-uri", 17 "description": "AT-URI 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}