blob: e8836fa9d66a076591e8e548dd7f049bab6be1ee [file] [log] [blame]
Marcel van Lohuizen6cb08782020-01-13 18:03:27 +01001// This test tests the conversion and ordering of definitions.
2
3-- definition.json --
4{
5 "$schema": "http://json-schema.org/draft-07/schema#",
6
7 "$id": "http://cuelang.org/go/encoding/openapi/testdata/order.json",
8
9 "definitions": {
10 "address": {
11 "type": "object",
12 "properties": {
13 "street_address": { "type": "string" },
14 "city": { "type": "string" },
15 "state": { "type": "string" }
16 },
17 "required": ["street_address", "city", "state"]
18 },
19 "person": {
20 "type": "object",
21 "properties": {
22 "name": { "type": "string" },
23 "children": {
24 "type": "array",
25 "items": { "$ref": "#/definitions/person" },
26 "default": []
27 }
28 }
29 }
30 },
31
32 "type": "object",
33
34 "properties": {
35 "person": { "$ref": "#/definitions/person" },
36 "billing_address": { "$ref": "#/definitions/address" },
37 "shipping_address": { "$ref": "#/definitions/address" }
38 }
39}
40
41-- out.cue --
Marcel van Lohuizen6cb08782020-01-13 18:03:27 +010042Schema :: _ @jsonschema(schema="http://json-schema.org/draft-07/schema#",id="http://cuelang.org/go/encoding/openapi/testdata/order.json")
43Schema :: {
44 person?: def.person
45 billing_address?: def.address
46 shipping_address?: def.address
47 ...
48}
49
50def: address :: {
51 street_address: string
52 city: string
53 state: string
54 ...
55}
56
57def: person :: {
58 name?: string
59 children?: [...def.person]
60 ...
61}