summaryrefslogtreecommitdiff
path: root/tests/draft-future/optional/format/time.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/draft-future/optional/format/time.json')
-rw-r--r--tests/draft-future/optional/format/time.json32
1 files changed, 31 insertions, 1 deletions
diff --git a/tests/draft-future/optional/format/time.json b/tests/draft-future/optional/format/time.json
index 0a8da0e..5011d78 100644
--- a/tests/draft-future/optional/format/time.json
+++ b/tests/draft-future/optional/format/time.json
@@ -1,9 +1,39 @@
[
{
"description": "validation of time strings",
- "schema": {"format": "time"},
+ "schema": { "format": "time" },
"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 time string",
"data": "08:30:06Z",
"valid": true