{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-entityopeninghours.json", "title": "Opening Hours", "description": "An dictionary map of the different opening hours for an Entity", "type": "object", "properties": { "day": { "$ref": "#/components/schemas/DayOfWeekEnum" }, "times": { "$ref": "#/components/schemas/EntityOpeningPeriod" } }, "required": [ "day", "times" ] }