003 File Manager
Current Path:
/usr/src/contrib/libucl/tests/schema
usr
/
src
/
contrib
/
libucl
/
tests
/
schema
/
📁
..
📄
additionalItems.json
(2.23 KB)
📄
additionalProperties.json
(2.14 KB)
📄
allOf.json
(2.95 KB)
📄
anyOf.json
(1.57 KB)
📄
definitions.json
(854 B)
📄
dependencies.json
(3.07 KB)
📄
enum.json
(1.93 KB)
📄
items.json
(1.11 KB)
📄
maxItems.json
(706 B)
📄
maxLength.json
(697 B)
📄
maxProperties.json
(759 B)
📄
maximum.json
(1.04 KB)
📄
minItems.json
(693 B)
📄
minLength.json
(696 B)
📄
minProperties.json
(725 B)
📄
minimum.json
(1.04 KB)
📄
multipleOf.json
(1.49 KB)
📄
not.json
(2.21 KB)
📄
oneOf.json
(1.57 KB)
📄
pattern.json
(582 B)
📄
patternProperties.json
(3.46 KB)
📄
properties.json
(2.81 KB)
📄
ref.json
(3.81 KB)
📄
refRemote.json
(1.99 KB)
📄
required.json
(923 B)
📄
type.json
(9.09 KB)
📄
uniqueItems.json
(2.55 KB)
Editing: allOf.json
[ { "description": "allOf", "schema": { "allOf": [ { "properties": { "bar": {"type": "integer"} }, "required": ["bar"] }, { "properties": { "foo": {"type": "string"} }, "required": ["foo"] } ] }, "tests": [ { "description": "allOf", "data": {"foo": "baz", "bar": 2}, "valid": true }, { "description": "mismatch second", "data": {"foo": "baz"}, "valid": false }, { "description": "mismatch first", "data": {"bar": 2}, "valid": false }, { "description": "wrong type", "data": {"foo": "baz", "bar": "quux"}, "valid": false } ] }, { "description": "allOf with base schema", "schema": { "properties": {"bar": {"type": "integer"}}, "required": ["bar"], "allOf" : [ { "properties": { "foo": {"type": "string"} }, "required": ["foo"] }, { "properties": { "baz": {"type": "null"} }, "required": ["baz"] } ] }, "tests": [ { "description": "valid", "data": {"foo": "quux", "bar": 2, "baz": null}, "valid": true }, { "description": "mismatch base schema", "data": {"foo": "quux", "baz": null}, "valid": false }, { "description": "mismatch first allOf", "data": {"bar": 2, "baz": null}, "valid": false }, { "description": "mismatch second allOf", "data": {"foo": "quux", "bar": 2}, "valid": false }, { "description": "mismatch both", "data": {"bar": 2}, "valid": false } ] }, { "description": "allOf simple types", "schema": { "allOf": [ {"maximum": 30}, {"minimum": 20} ] }, "tests": [ { "description": "valid", "data": 25, "valid": true }, { "description": "mismatch one", "data": 35, "valid": false } ] } ]
Upload File
Create Folder