summaryrefslogtreecommitdiff
path: root/json/tests/draft6/id.json
blob: 03d30fcb45c3426a3d19f5b7663715fe6f161689 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[
    {
        "description": "id inside an enum is not a real identifier",
        "comment": "the implementation must not be confused by an id buried in the enum",
        "schema": {
            "definitions": {
                "id_in_enum": {
                    "enum": [
                        {
                          "$id": "https://localhost:1234/id/my_identifier.json",
                          "type": "null"
                        }
                    ]
                },
                "real_id_in_schema": {
                    "$id": "https://localhost:1234/id/my_identifier.json",
                    "type": "string"
                },
                "zzz_id_in_const": {
                    "const": {
                        "$id": "https://localhost:1234/id/my_identifier.json",
                        "type": "null"
                    }
                }
            },
            "anyOf": [
                { "$ref": "#/definitions/id_in_enum" },
                { "$ref": "https://localhost:1234/id/my_identifier.json" }
            ]
        },
        "tests": [
            {
                "description": "exact match to enum, and type matches",
                "data": {
                    "$id": "https://localhost:1234/id/my_identifier.json",
                    "type": "null"
                },
                "valid": true
            },
            {
                "description": "match $ref to id",
                "data": "a string to match #/definitions/id_in_enum",
                "valid": true
            },
            {
                "description": "no match on enum or $ref to id",
                "data": 1,
                "valid": false
            }
        ]
    },
    {
        "description": "non-schema object containing a plain-name $id property",
        "schema": {
            "definitions": {
                "const_not_anchor": {
                    "const": {
                        "$id": "#not_a_real_anchor"
                    }
                }
            },
            "oneOf": [
                {
                    "const": "skip not_a_real_anchor"
                },
                {
                    "allOf": [
                        {
                            "not": {
                                "const": "skip not_a_real_anchor"
                            }
                        },
                        {
                            "$ref": "#/definitions/const_not_anchor"
                        }
                    ]
                }
            ]
        },
        "tests": [
            {
                "description": "skip traversing definition for a valid result",
                "data": "skip not_a_real_anchor",
                "valid": true
            },
            {
                "description": "const at const_not_anchor does not match",
                "data": 1,
                "valid": false
            }
        ]
    },
    {
        "description": "non-schema object containing an $id property",
        "schema": {
            "definitions": {
                "const_not_id": {
                    "const": {
                        "$id": "not_a_real_id"
                    }
                }
            },
            "oneOf": [
                {
                    "const":"skip not_a_real_id"
                },
                {
                    "allOf": [
                        {
                            "not": {
                                "const": "skip not_a_real_id"
                            }
                        },
                        {
                            "$ref": "#/definitions/const_not_id"
                        }
                    ]
                }
            ]
        },
        "tests": [
            {
                "description": "skip traversing definition for a valid result",
                "data": "skip not_a_real_id",
                "valid": true
            },
            {
                "description": "const at const_not_id does not match",
                "data": 1,
                "valid": false
            }
        ]
    }
]