1{
2 "lexicon": 1,
3 "id": "sh.tangled.repo.setDefaultBranch",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Set the default branch for a repository",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "repo",
14 "defaultBranch"
15 ],
16 "properties": {
17 "repo": {
18 "type": "string",
19 "format": "at-uri"
20 },
21 "defaultBranch": {
22 "type": "string"
23 }
24 }
25 }
26 }
27 }
28 }
29}