this repo has no description
1{
2 "lexicon": 1,
3 "id": "example.lexicon.query",
4 "revision": 1,
5 "description": "exersizes many lexicon features for the query type",
6 "defs": {
7 "main": {
8 "type": "query",
9 "description": "a query type",
10 "parameters": {
11 "type": "params",
12 "description": "a params type",
13 "required": ["string"],
14 "properties": {
15 "boolean": {
16 "type": "boolean",
17 "description": "field of type boolean"
18 },
19 "integer": {
20 "type": "integer",
21 "description": "field of type integer"
22 },
23 "string": {
24 "type": "string",
25 "description": "field of type string"
26 },
27 "handle": {
28 "type": "string",
29 "format": "handle",
30 "description": "field of type string, format handle"
31 },
32 "unknown": {
33 "type": "unknown",
34 "description": "field of type unknown"
35 },
36 "array": {
37 "type": "array",
38 "description": "field of type array",
39 "items": { "type": "integer" }
40 }
41 }
42 },
43 "output": {
44 "description": "output body type",
45 "encoding": "application/json",
46 "schema": {
47 "type": "object",
48 "properties": {
49 "a": {
50 "type": "integer"
51 },
52 "b": {
53 "type": "integer"
54 }
55 }
56 }
57 },
58 "errors": [
59 {
60 "name": "DemoError",
61 "description": "demo error value"
62 },
63 {
64 "name": "AnotherDemoError",
65 "description": "another demo error value"
66 }
67 ]
68 }
69 }
70}