List individual dead gaps
booking_gap_list_deadList the structurally unsellable gaps in a booking calendar, longest first, showing date, time window, and resource to inspect underlying bookings.
Instructions
List the individual gaps that are structurally unsellable, longest first, so the underlying bookings can be inspected.
Use this after booking_gap_analyze when the aggregate number needs to be traced back to concrete dates and resources.
Args: same as booking_gap_analyze, plus
limit (number, default 30, max 500): how many gaps to list
resourceFilter (string, optional): only list gaps for this resource
outputJson (boolean, default false): return machine-readable JSON instead of a table
Returns a table of date, weekday, time window, length and resource.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many gaps to list. | |
| bookings | No | Bookings as structured objects. Provide either this or bookingsCsv. | |
| currency | No | Currency symbol prefix, e.g. "¥". | |
| periodEnd | No | Last date to analyse (YYYY-MM-DD). Defaults to the latest booking. | |
| resources | No | Resources to include even when they have no bookings in the period. | |
| hourlyRate | No | Optional hourly price, used to express dead time as an amount. No default. | |
| outputJson | No | Return JSON (gaps plus summary) instead of a formatted table. | |
| bookingsCsv | No | Bookings as pasted CSV or TSV with a header row. Column names are matched in English and Japanese (start/end/resource/date/status, 開始時刻/終了時刻/部屋/日付/ステータス). A separate date column plus HH:mm times is supported. | |
| periodStart | No | First date to analyse (YYYY-MM-DD). Defaults to the earliest booking. | |
| openingHours | Yes | Opening hours. Use "default" for the usual day and override individual weekdays as needed, e.g. {"default": [["09:00","22:00"]], "sun": [["10:00","18:00"]]}. Use "24:00" to close at midnight. | |
| resourceFilter | No | Only list gaps for this resource. | |
| timezoneOffset | No | Venue timezone offset, used only for inputs that carry an explicit offset or "Z". | +09:00 |
| turnoverMinutes | No | Cleaning or changeover time required between two bookings. | |
| minBookingMinutes | No | Shortest booking a customer is allowed to make. | |
| slotGranularityMinutes | No | Allowed booking start interval, measured from midnight (30 means :00 and :30). |