{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "timezone_full", "allOf": [ { "type": "object", "properties": { "id": { "type": "integer" }, "version": { "type": "integer" }, "date": { "type": "string", "format": "date-time" }, "description": { "type": "string", "nullable": true, "maxLength": 256 }, "display_name": { "type": "string", "maxLength": 64 }, "zone_name": { "type": "string", "maxLength": 64 }, "created_on": { "type": "string", "format": "date-time", "readOnly": true }, "updated_on": { "type": "string", "format": "date-time", "readOnly": true } } } ] }