Marcel van Lohuizen | 6cb0878 | 2020-01-13 18:03:27 +0100 | [diff] [blame] | 1 | // 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 Lohuizen | 6cb0878 | 2020-01-13 18:03:27 +0100 | [diff] [blame] | 42 | Schema :: _ @jsonschema(schema="http://json-schema.org/draft-07/schema#",id="http://cuelang.org/go/encoding/openapi/testdata/order.json") |
| 43 | Schema :: { |
| 44 | person?: def.person |
| 45 | billing_address?: def.address |
| 46 | shipping_address?: def.address |
| 47 | ... |
| 48 | } |
| 49 | |
| 50 | def: address :: { |
| 51 | street_address: string |
| 52 | city: string |
| 53 | state: string |
| 54 | ... |
| 55 | } |
| 56 | |
| 57 | def: person :: { |
| 58 | name?: string |
| 59 | children?: [...def.person] |
| 60 | ... |
| 61 | } |