summaryrefslogtreecommitdiff
path: root/json/tests/draft3/optional/format/date.json
blob: bd8304225cd5a90b97db4afb9e2510730ccbafcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[
    {
        "description": "validation of date strings",
        "schema": {"format": "date"},
        "tests": [
            {
                "description": "a valid date string",
                "data": "1963-06-19",
                "valid": true
            },
            {
                "description": "an invalid date string",
                "data": "06/19/1963",
                "valid": false
            }
        ]
    }
]