Activity Calendars Example

Response with different starting time for different languages
<calendars>
    <calendar date="2026-06-23" bookable="true">
        <schedule>
            <language>it</language>
            <starting_times>
                <starting_time>11:15</starting_time>
            </starting_times>
        </schedule>
        <schedule>
            <language>es</language>
            <starting_times>
                <starting_time>11:15</starting_time>
            </starting_times>
        </schedule>
        <schedule>
            <language>en</language>
            <starting_times>
                <starting_time>09:15</starting_time>
            </starting_times>
        </schedule>
        <schedule>
            <language>fr</language>
            <starting_times>
                <starting_time>14:15</starting_time>
            </starting_times>
        </schedule>
        <all_available_starting_times>
            <starting_time>09:15</starting_time>
            <starting_time>11:15</starting_time>
            <starting_time>14:15</starting_time>
        </all_available_starting_times>
        <opening_hours/>
    </calendar>
</calendars>
Response with different start times regardless of language
 <calendars>
    <calendar date="2026-06-23" bookable="true">
        <schedule/>
        <all_available_starting_times>
            <starting_time>16:00</starting_time>
            <starting_time>16:30</starting_time>
        </all_available_starting_times>
        <opening_hours/>
    </calendar>
</calendars>
    
Response with different opening hours regardless of starting times and language
 <calendars>
    <calendar date="2026-06-23" bookable="true">
        <schedule/>
        <all_available_starting_times />
        <opening_hours>
            <opening from="10:30" to="12:00"/>
            <opening from="16:30" to="22:00"/>
        </opening_hours>
    </calendar>
</calendars>
    
Response with bookable date regardless of opening hours, starting times and language
 <calendars>
    <calendar date="2026-06-23" bookable="true">
        <schedule/>
        <all_available_starting_times />
        <opening_hours/>
    </calendar>
</calendars>
    
Response with not bookable date
 <calendars>
    <calendar date="2026-06-23" bookable="false">
        <schedule/>
        <all_available_starting_times />
        <opening_hours/>
    </calendar>
</calendars>