Path: blob/main/external/libucl/tests/schema/maxProperties.json
2066 views
[1{2"description": "maxProperties validation",3"schema": {"maxProperties": 2},4"tests": [5{6"description": "shorter is valid",7"data": {"foo": 1},8"valid": true9},10{11"description": "exact length is valid",12"data": {"foo": 1, "bar": 2},13"valid": true14},15{16"description": "too long is invalid",17"data": {"foo": 1, "bar": 2, "baz": 3},18"valid": false19},20{21"description": "ignores non-objects",22"data": "foobar",23"valid": true24}25]26}27]282930