This repository has no description
1{
2 "lexicon": 1,
3 "id": "sh.tangled.git.temp.formatPatch",
4 "defs": {
5 "main": {
6 "type": "query",
7 "parameters": {
8 "type": "params",
9 "required": ["repo", "from", "to"],
10 "properties": {
11 "repo": {
12 "type": "string",
13 "format": "did",
14 "description": "DID of the repository"
15 },
16 "from": {
17 "type": "string"
18 },
19 "to": {
20 "type": "string"
21 }
22 }
23 },
24 "output": {
25 "encoding": "*/*"
26 },
27 "errors": [
28 {
29 "name": "RepoNotFound",
30 "description": "Repository not found or access denied"
31 },
32 {
33 "name": "RevisionNotFound",
34 "description": "One or both revisions not found"
35 },
36 {
37 "name": "InvalidRequest",
38 "description": "Invalid request parameters"
39 }
40 ]
41 }
42 }
43}