xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/draft2019-09/permissive-duration.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
1[
2    {
3        "description": "validation of duration strings",
4        "schema": {
5            "$schema": "https://json-schema.org/draft/2019-09/schema",
6            "format": "duration"
7        },
8        "tests": [
9            {
10                "description": "weeks can be combined with other units",
11                "data": "P1Y2W",
12                "valid": true,
13                "strictness": {
14                    "duration": false
15                }
16            }
17        ]
18    }
19]
20