summaryrefslogtreecommitdiff
path: root/src/test/resources/draft7/urn/issue665.json
blob: 57a3bf884524c5b058d0a13ce53b361feeb25d6e (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
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": [
    "myData"
  ],
  "properties": {
    "myData": {
      "$ref": "urn:data"
    }
  },
  "definitions": {
    "data": {
      "$id": "urn:data",
      "type": "object",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string"
        }
      }
    }
  }
}