aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-core-lib/openecomp-utilities-lib/src/test/resources/jsonUtil/json_schema/schemaWithRefsAndDefaults.json
blob: de027b9d5605d1dfe1568d0e944972d459a17f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "definitions": {
    "city": {
      "type": "string",
      "enum": [
        "Tel Aviv",
        "New York",
        "London"
      ],
      "default": "Tel Aviv"
    },
    "zipCode" : {
      "type" : "integer"
    }
  },
  "type": "object",
  "properties": {
    "address": {
      "type": "object",
      "properties": {
        "streetAddress": {
          "type": "string"
        },
        "city": {
          "$ref": "#/definitions/city"
        },
        "cityZipCode" : {"$ref" : "#/definitions/zipCode"}
      },
      "required": [
        "streetAddress",
        "city"
      ]
    },
    "phoneNumber": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "location": {
            "type": "string"
          },
          "locationZipCode" : {"$ref" : "#/definitions/zipCode"},
          "code": {
            "type": "integer",
            "default": 777
          }
        },
        "required": [
          "location",
          "code"
        ]
      },
      "default": [
        {
          "location": "Home",
          "code": 1
        },
        {
          "location": "Office",
          "code": 2
        }
      ]
    },
    "cityOfBirth" : { "$ref"  : "#/definitions/city"}
  },
  "required": [
    "address",
    "phoneNumber"
  ]
}