{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-hours-structure.json", "name": "Hours", "description": "Hours are represented as a list of HourIntervals.", "type": "object", "properties": { "intervals": { "type": "array", "minItems": 1, "description": "List of HourIntervals.", "items": { "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-hour-interval-schema.json" } } }, "required": [ "intervals" ] }