1{
2 "lexicon": 1,
3 "id": "sh.tangled.repo.placeholder",
4 "defs": {
5 "main": {
6 "type": "query",
7 "parameters": {
8 "type": "params",
9 "properties": {
10 "user": {"type": "string"},
11 "knot": {"type": "string"},
12 "starred": {"type": "boolean"}
13 }
14 },
15 "output": {
16 "schema": {
17 "type": "object",
18 "properties": {
19 "repos": {
20 "type": "array",
21 "items": {
22 "type": "object",
23 "required": ["name"],
24 "properties": {
25 "name": {"type": "string"},
26 "knot": {"type": "string"},
27 "private": {"type": "boolean"}
28 }
29 }
30 }
31 }
32 }
33 }
34 }
35 }
36}
37