aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-core-lib/openecomp-utilities-lib/src/test/resources/jsonUtil/json_schema/aSchema.json
blob: 44b2c1c9cbe590a4a425ccc5c089d6ca86cf7210 (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
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "definitions": {
    "city": {
      "type": "string",
      "enum": [
        "Tel Aviv",
        "New York",
        "London"
      ]
    }
  },
  "properties": {
    "address": {
      "type": "object",
      "properties": {
        "streetAddress": {
          "type": "string"
        },
        "city": {
          "$ref": "#/definitions/city"
        }
      },
      "enum": [
        {
          "streetAddress": "21 2nd Street",
          "city": "New York"
        }
      ],
      "required": [
        "streetAddress",
        "city"
      ]
    },
    "phoneNumber": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "location": {
            "type": "string"
          },
          "code": {
            "type": "integer"
          }
        },
        "required": [
          "location",
          "code"
        ]
      }
    },
    "dateOfBirth" : {
      "type" : "string",
      "pattern" : "(0?[1-9]|[12][0-9]|3[01])/(0?[1-9]|1[012])/((19|20)\\d\\d)"
    },
    "gender" : {
      "type" : "string"
    },
    "cityOfBirth" : { "$ref"  : "#/definitions/city"}
  },
  "required": [
    "address",
    "phoneNumber"
  ]
}