{ "$schema": "https://json-structure.org/draft/2020-12/schema", "name": "Holiday", "type": "object", "properties": { "name": {"type": "string"}, "date": {"type": "string", "format": "date"}, "observed": {"type": "string", "format": "date"}, "public": {"type": "boolean"}, "country": {"type": "string"}, "uuid": {"type": "string", "format": "uuid"}, "weekday": { "type": "object", "properties": { "date": {"type": "object"}, "observed": {"type": "object"} } }, "subdivisions": {"type": "array", "items": {"type": "string"}} } }