opnsense-src/contrib/libucl/tests/schema/definitions.json.disabled
Baptiste Daroussin ad8c850830 libucl: import snapshot 2024-02-06
(cherry picked from commit ddca081d38)
2024-03-27 09:18:47 +01:00

32 lines
854 B
Text

[
{
"description": "valid definition",
"schema": {"$ref": "http://highsecure.ru/ucl-schema/schema#"},
"tests": [
{
"description": "valid definition schema",
"data": {
"definitions": {
"foo": {"type": "integer"}
}
},
"valid": true
}
]
},
{
"description": "invalid definition",
"schema": {"$ref": "http://highsecure.ru/ucl-schema/schema#"},
"tests": [
{
"description": "invalid definition schema",
"data": {
"definitions": {
"foo": {"type": 1}
}
},
"valid": false
}
]
}
]