Skip to main content

OpeningTimes

Defines when the EVSEs at the location can be accessed for charging

exceptional_closings ExceptionalClosings[]

List of exceptional periods when the location is closed. For example, holidays or maintenance periods.

  • Array [
  • period_beginstring

    Timestamp of beginning of the exceptional closing period. Format: RFC3339 in UTC timezone.

    period_endstring

    Timestamp of end of the exceptional closing period. Format: RFC3339 in UTC timezone.

  • ]
  • exceptional_openings ExceptionalOpenings[]

    List of exceptional periods when the location is open outside regular hours. For example, special events or extended hours.

  • Array [
  • period_beginstring

    Timestamp of beginning of the exceptional opening period. Format: RFC3339 in UTC timezone.

    period_endstring

    Timestamp of end of the exceptional opening period. Format: RFC3339 in UTC timezone.

  • ]
  • regular_hours RegularHours[]

    Regular hours when the location is accessible during normal weeks. Defines the standard operating schedule.

  • Array [
  • period_beginstring
    period_endstring
    weekdayinteger<int64>
  • ]
  • OpeningTimes
    {
    "exceptional_closings": [
    {
    "period_begin": "string",
    "period_end": "string"
    }
    ],
    "exceptional_openings": [
    {
    "period_begin": "string",
    "period_end": "string"
    }
    ],
    "regular_hours": [
    {
    "period_begin": "string",
    "period_end": "string",
    "weekday": 0
    }
    ]
    }