summaryrefslogtreecommitdiff
path: root/tests/draft2020-12/optional/format/date.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/draft2020-12/optional/format/date.json')
-rw-r--r--tests/draft2020-12/optional/format/date.json32
1 files changed, 31 insertions, 1 deletions
diff --git a/tests/draft2020-12/optional/format/date.json b/tests/draft2020-12/optional/format/date.json
index 6cc2feb..b4f61ee 100644
--- a/tests/draft2020-12/optional/format/date.json
+++ b/tests/draft2020-12/optional/format/date.json
@@ -1,9 +1,39 @@
[
{
"description": "validation of date strings",
- "schema": {"format": "date"},
+ "schema": { "format": "date" },
"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 date string",
"data": "1963-06-19",
"valid": true