xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/schema/issue627-v7.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
1{
2  "$schema": "http://json-schema.org/draft-07/schema#",
3  "type": "object",
4  "properties": {
5    "dateTime": {
6      "type": "string",
7      "format": "date",
8      "message": {
9        "format": "Keep date format yyyy-mm-dd"
10      }
11    },
12    "uuid": {
13      "type": "string",
14      "format": "uuid",
15      "message": {
16        "format": "Input should be uuid"
17      }
18    }
19  }
20}