Mappedin JS - v6.14.0
    Preparing search index...

    Type Alias OperationHours

    We (almost) follow this schema (http://schema.org/OpeningHoursSpecification) The only difference is that we (like Google: https://developers.google.com/search/docs/data-types/local-businesses) accept dayOfWeek as an array as well as an individual day.

    type OperationHours = {
        "@type"?: "OpeningHoursSpecification";
        closes?: Time;
        dayOfWeek?:
            | DayOrPublicHoliday
            | [DayOrPublicHoliday]
            | DayOrPublicHoliday[];
        opens?: Time;
        validFrom?: string;
        validThrough?: string;
    }
    Index

    Properties

    "@type"?: "OpeningHoursSpecification"

    The type of operation hours

    'OpeningHoursSpecification'
    
    closes?: Time

    The time the operation hours end

    dayOfWeek?: DayOrPublicHoliday | [DayOrPublicHoliday] | DayOrPublicHoliday[]

    The days of the week the operation hours apply to

    opens?: Time

    The time the operation hours start

    validFrom?: string

    The date the operation hours start, in ISO 8601 format

    date-time

    validThrough?: string

    The date the operation hours end, in ISO 8601 format

    date-time