...

Text file src/github.com/qri-io/jsonschema/testdata/draft7/optional/format/date.json

Documentation: github.com/qri-io/jsonschema/testdata/draft7/optional/format

     1[
     2    {
     3        "description": "validation of date strings",
     4        "schema": {"format": "date"},
     5        "tests": [
     6            {
     7                "description": "a valid date string",
     8                "data": "1963-06-19",
     9                "valid": true
    10            },
    11            {
    12                "description": "an invalid date-time string",
    13                "data": "06/19/1963",
    14                "valid": false
    15            },
    16            {
    17                "description": "only RFC3339 not all of ISO 8601 are valid",
    18                "data": "2013-350",
    19                "valid": false
    20            }
    21        ]
    22    }
    23]

View as plain text