Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.framen.com/llms.txt

Use this file to discover all available pages before exploring further.

The opening_168 field is a JSON array of 168 integers (one per hour of the week, starting Monday 00:00) that tells the FRAMEN platform when a location is open. Each element is either 1 (open) or 0 (closed).

Structure

IndexDayHour
0Monday00:00
1Monday01:00
23Monday23:00
24Tuesday00:00
167Sunday23:00

Example

A location open Monday to Friday, 08:00 — 20:00:
[
  0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,
    0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,
      0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,
        0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,
          0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,
            0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
              0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
              ]
The array must always contain exactly 168 elements. Passing fewer or more will result in a validation error.
Last modified on April 13, 2026