1{ 2 "$schema" : "https://json-schema.org/draft/2019-09/schema", 3 "title": "Test Time Zone Schema (for testing time zones with negative offsets)", 4 "type": "object", 5 "properties": { 6 "testDateTime": { 7 "description": "A date-time value.", 8 "type" : "string", 9 "minLength" : 1, 10 "maxLength" : 32, 11 "format" : "date-time" 12 } 13 } 14}