X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=examples%2Fbiojson-doc%2Ftests%2Fmaximum.json;fp=examples%2Fbiojson-doc%2Ftests%2Fmaximum.json;h=86c7b89c9a9047347e408cbbaaf194b3995f9db0;hb=165e5fdcd9704bfd15243fbd41d33ca100383762;hp=0000000000000000000000000000000000000000;hpb=0fac2de2be3358820e141165c5b6b020fe965193;p=jalview.git diff --git a/examples/biojson-doc/tests/maximum.json b/examples/biojson-doc/tests/maximum.json new file mode 100755 index 0000000..86c7b89 --- /dev/null +++ b/examples/biojson-doc/tests/maximum.json @@ -0,0 +1,42 @@ +[ + { + "description": "maximum validation", + "schema": {"maximum": 3.0}, + "tests": [ + { + "description": "below the maximum is valid", + "data": 2.6, + "valid": true + }, + { + "description": "above the maximum is invalid", + "data": 3.5, + "valid": false + }, + { + "description": "ignores non-numbers", + "data": "x", + "valid": true + } + ] + }, + { + "description": "exclusiveMaximum validation", + "schema": { + "maximum": 3.0, + "exclusiveMaximum": true + }, + "tests": [ + { + "description": "below the maximum is still valid", + "data": 2.2, + "valid": true + }, + { + "description": "boundary point is invalid", + "data": 3.0, + "valid": false + } + ] + } +]