summaryrefslogtreecommitdiff
path: root/json/remotes/extendible-dynamic-ref.json
blob: d0bcd37d38c37cb6d06de99aba61c7a3a7e2e7fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
    "description": "extendible array",
    "$id": "http://localhost:1234/extendible-dynamic-ref.json",
    "type": "object",
    "properties": {
        "elements": {
            "type": "array",
            "items": {
                "$dynamicRef": "#elements"
            }
        }
    },
    "required": ["elements"],
    "additionalProperties": false,
    "$defs": {
        "elements": {
            "$dynamicAnchor": "elements"
        }
    }
}