summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/third_party/rapidjson/bin/unittestschema/idandref.json
blob: ad485d29fbfc551bad246b229d00e2a22c17bd18 (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
{
  "id": "http://example.com/root.json",
  "definitions": {
    "A": {
      "id": "#foo",
      "type": "integer"
    },
    "B": {
      "id": "other.json",
      "definitions": {
        "X": {
          "id": "#bar",
          "type": "boolean"
        },
        "Y": {
          "$ref": "#/definitions/X"
        },
        "W": {
          "$ref": "#/definitions/Y"
        },
        "Z": {
          "$ref": "#bar"
        },
        "N": {
          "properties": {
            "NX": {
              "$ref": "#/definitions/X"
            }
          }
        }
      }
    }
  },
  "properties": {
    "PA1": {
      "$ref": "http://example.com/root.json#/definitions/A"
    },
    "PA2": {
      "$ref": "#/definitions/A"
    },
    "PA3": {
      "$ref": "#foo"
    },
    "PX1": {
      "$ref": "#/definitions/B/definitions/X"
    },
    "PX2Y": {
      "$ref": "#/definitions/B/definitions/Y"
    },
    "PX3Z": {
      "$ref": "#/definitions/B/definitions/Z"
    },
    "PX4": {
      "$ref": "http://example.com/other.json#/definitions/X"
    },
    "PX5": {
      "$ref": "other.json#/definitions/X"
    },
    "PX6": {
      "$ref": "other.json#bar"
    },
    "PX7W": {
      "$ref": "#/definitions/B/definitions/W"
    },
    "PX8N": {
      "$ref": "#/definitions/B/definitions/N"
    }
  }
}