summaryrefslogtreecommitdiff
path: root/tests/draft2019-09/optional/format/ipv4.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/draft2019-09/optional/format/ipv4.json')
-rw-r--r--tests/draft2019-09/optional/format/ipv4.json32
1 files changed, 31 insertions, 1 deletions
diff --git a/tests/draft2019-09/optional/format/ipv4.json b/tests/draft2019-09/optional/format/ipv4.json
index 4d10927..6b166c7 100644
--- a/tests/draft2019-09/optional/format/ipv4.json
+++ b/tests/draft2019-09/optional/format/ipv4.json
@@ -1,9 +1,39 @@
[
{
"description": "validation of IP addresses",
- "schema": {"format": "ipv4"},
+ "schema": { "format": "ipv4" },
"tests": [
{
+ "description": "all string formats ignore integers",
+ "data": 12,
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore floats",
+ "data": 13.7,
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore objects",
+ "data": {},
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore arrays",
+ "data": [],
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore booleans",
+ "data": false,
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore nulls",
+ "data": null,
+ "valid": true
+ },
+ {
"description": "a valid IP address",
"data": "192.168.0.1",
"valid": true