valijson/tests/data/schemas/circular_reference.schema.json
2024-12-24 11:17:34 +11:00

9 lines
219 B
JSON

{
"description": "Circular reference when parsing properties keyword",
"properties": {
"foo": {"$ref": "#/properties/bar"},
"bar": {"$ref": "#/properties/baz"},
"baz": {"$ref": "#/properties/foo"}
}
}