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}