Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helmet

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /linkedevents/v1/event/?format=api&page=3&publisher=ytj%3A0586977-6
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 38420,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=4&publisher=ytj%3A0586977-6",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=2&publisher=ytj%3A0586977-6"
    },
    "data": [
        {
            "id": "helsinki:aggy3cigka",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:29865/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/348588000926162",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 138158,
                    "license": "event_only",
                    "created_time": "2024-04-16T12:45:37.620313Z",
                    "last_modified_time": "2024-04-16T12:46:13.770253Z",
                    "name": "Ciao Ciao Festival",
                    "url": "http://api.hel.fi/linkedevents/media/images/432256521_12212791341221835.jpg",
                    "cropping": "324,0,1624,1300",
                    "photographer_name": "(c) Ciao Ciao Festival",
                    "alt_text": "Katunäkymä ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2024-02-09T11:03:04.025870Z",
            "last_modified_time": "2024-04-16T12:54:04.201684Z",
            "date_published": null,
            "start_time": "2024-05-25T09:00:00Z",
            "end_time": "2024-05-26T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "out",
            "audience_min_age": null,
            "audience_max_age": 0,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 5000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Italialaisten yhdistys Suomessa",
                "sv": "Italialaisten yhdistys Suomessa",
                "en": "Italialaisten yhdistys Suomessa"
            },
            "description": {
                "fi": "<p>Ciao Ciao Festival on poikkeuksellinen tapahtuma, joka juhlii italialaista kulttuuria, musiikkia ja ruokaa, toimien sillanrakentajana italian ja suomalaisen kulttuurin välillä.&nbsp;</p><p>Italialaisen suurlähetystön Suomessa tukemana ja Italian kulttuuri-instituutin sekä Helsingin kaupungin tuella tapahtuma on osa myös Helsingin ruokaviikkojen tapahtumakokonaisuutta. Helsingin italiantunnilla opiskelevat opettajat tukevat myös tapahtumaa.</p><p>Festivaalin ohjelma tarjoaa ilmapiirin, joka muistuttaa italialaisen aukion tunnelmaa, jossa voi ostaa ruokaa ja käsitöitä kotiin vietäväksi. Paikan päällä voi nauttia pizzaa, jäätelöä ja aperitiiveja samalla kun kuuntelee livemusiikkia ja katsomalla nykytanssin ja kansantanssin esityksiä. Lisäksi järjestetään erilaisia työpajoja ja harrastustoimintaa.</p><p>Tänä vuonna kaikki festivaaliin osallistujat voivat myös voittaa upean puutarhakaasugrillin omalle pizzanvalmistukselleen, aivan kuten oikeassa pizzeriassa.</p><p>&nbsp;</p><p>Kansalaistori &amp; &nbsp;Keskustakirjasto Oodi</p><p>25.-26.5.2024</p><p>La klo 12-20, su klo 11-18</p><p>Vapaa pääsy</p>",
                "sv": "<p>Ciao Ciao Festival erbjuder italiensk kultur, konst och framför allt läcker mat.</p><p>Samla din familj och dina vänner för att njuta av den italienska atmosfären på Ciao Ciao Festival.&nbsp;</p><p>&nbsp;</p><p>Medborgartorget</p><p>25.-26.5.2024</p><p>Lö kl 12-20, sö kl 11-18</p><p>Fritt inträde</p>",
                "en": "<p>Ciao Ciao Festival is an exceptional event that celebrates Italian culture, music and food, forming a bridge between Italian and Finnish cultures.</p><p>Supported by the Italian Embassy in Finland and with the support of the Italian Cultural Institute and the City of Helsinki, the event is also part of the Helsinki Food Weeks. Teachers studying at the Italian class in Helsinki also support the event.</p><p>&nbsp;The festival program offers an atmosphere reminiscent of an Italian square, where you can buy food and handicrafts to take home.&nbsp;</p><p>On the spot you can enjoy pizza, ice cream and aperitifs while listening to live music and watching contemporary and folk dance performances.&nbsp;</p><p>In addition, various workshops and hobby activities are organized. This year, all festival participants can also win a gas grill to make pizzas, just like in a real pizzeria.<br>&nbsp;</p><p>Kansalaistori Square</p><p>25.-26.5.2024</p><p>Sat 12.00-20.00</p><p>Sun 11.00-18.00</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Ciao Ciao festivaali 2024",
                "sv": "Ciao Ciao Festival 2024",
                "en": "Ciao Ciao Festival 2024"
            },
            "info_url": {
                "fi": "https://circoloitaliano.fi/",
                "sv": "https://circoloitaliano.fi/",
                "en": "https://circoloitaliano.fi/"
            },
            "location_extra_info": {
                "fi": "Kansalaistorilla sekä Oodin lipan alla ja sisällä",
                "sv": "samt biblioteket Ode",
                "en": "also Oodi Library"
            },
            "short_description": {
                "fi": "Ciao Ciao Festival on poikkeuksellinen tapahtuma, joka juhlii italialaista kulttuuria, musiikkia ja ruokaa",
                "sv": "Ciao Ciao Festival erbjuder italiensk kultur, konst och framför allt läcker mat.",
                "en": "Ciao Ciao Festival is an exceptional event that celebrates Italian culture, music and food, forming a bridge between Italian and Finnish cultures."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggy3cigka/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghmyfryde",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3917/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137964,
                    "license": "event_only",
                    "created_time": "2024-04-11T07:35:35.623202Z",
                    "last_modified_time": "2024-04-11T07:36:31.660970Z",
                    "name": "Kasarmitorin kesä",
                    "url": "http://api.hel.fi/linkedevents/media/images/kasarmitorinkesa-19-1.jpg",
                    "cropping": "382,0,1898,1516",
                    "photographer_name": "Kuvituskuva (c) Camilla Bloom / Helsingin kaupunki",
                    "alt_text": "Ihmisiä terassilla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137964/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-11T07:36:32.033920Z",
            "last_modified_time": "2024-04-11T07:36:32.033937Z",
            "date_published": null,
            "start_time": "2024-05-07T13:00:00Z",
            "end_time": "2024-05-07T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Matkailu ja tapahtumat ovat olennainen osa Helsinkiä. Ne rikastavat paikallisten palvelutarjontaa, tuovat tuhansia työpaikkoja ja verotuloja sekä ylläpitävät kattavia yhteyksiä ulkomaille.</p><p>Mitä Helsingin matkailulle ja tapahtumille kuuluu? Miten ala on palautunut pandemiasta ja miten sota vaikuttaa? Miten matkailua ja tapahtumia kehitetään jatkossa? Miten kaupunki saavuttaa tavoitteensa olla maailman kestävin matkakohde?</p><p>&nbsp;</p><p>Internet, Teams</p><p>7.5.2024</p><p>16.00-17.30</p><p>&nbsp;</p><p>Ohjelma:<br>Matkailun tilanne kaupungissa<br>Matkailupäällikkö Nina Vesterinen</p><p>Kestävän matkailun edistäminen<br>Erityissuunnittelija Jukka Punamäki</p><p>Tapahtumien tilanne kaupungissa<br>Projektipäällikkö Päivi Munther</p><p>Kestävien tapahtumien edistäminen<br>Markkinointisuunnittelija Anni Kostamovaara</p><p>Helsingin kaupungin osallisuustyön edistyminen ja OmaStadin tulokset<br>Kehittämispäällikkö Kirsi Verkka</p><p>Osallisuustyön eteneminen matkailussa ja tapahtumissa<br>Jukka Punamäki ja Anni Kostamovaara</p><p>Keskustelua</p><p>&nbsp;</p><p>tapahtuma on kaikille avoin eikä vaadi etukäteisilmoittautumista.</p><p>Tilaisuus on suomenkielinen. Se tallennetaan ja julkaistaan myöhemmin Helsinki-kanavalla</p>"
            },
            "name": {
                "fi": "Webinaari: Matkailu ja tapahtumat Helsingissä"
            },
            "info_url": {
                "fi": "https://www.hel.fi/fi/yritykset-ja-tyo/yritykset-ja-yrittajat/matkailutoiminta/matkailun-tapahtumat"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Matkailu ja tapahtumat ovat olennainen osa Helsinkiä."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmyfryde/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghmxorrre",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:35521/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kultus:17/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38044/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/share/sioNeUj9e522tbh2/?mibextid=9l3rBW",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137901,
                    "license": "cc_by",
                    "created_time": "2024-04-09T12:36:26.616353Z",
                    "last_modified_time": "2024-04-09T12:39:38.255694Z",
                    "name": "У сні мені марілось небо-3.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/%D0%A3_%D1%81%D0%BD%D1%96_%D0%BC%D0%B5%D0%BD%D1%96_%D0%BC%D0%B0%D1%80%D1%96%D0%BB%D0%BE%D1%81%D1%8C_%D0%BD%D0%B5%D0%B1%D0%BE-3.jpg",
                    "cropping": "362,0,1804,1442",
                    "photographer_name": "",
                    "alt_text": "ukrainalaisen lied-musiikin konsertti",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137901/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-11T05:56:01.045085Z",
            "last_modified_time": "2024-04-11T05:56:01.045103Z",
            "date_published": null,
            "start_time": "2024-04-21T15:00:00Z",
            "end_time": "2024-04-21T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Kallion seurakunta",
                "en": "Kallio parish"
            },
            "description": {
                "fi": "<p>Lauluja Ukrainasta - ukrainalaisen lied-musiikin konsertti</p><p>Konserttiohjelma koostuu ukrainalaisista pianolle ja lauluäänelle sävelletyistä kappaleista romantiikan ajalta.</p><p>&nbsp;</p><p>Konserttiohjelma koostuu ukrainalaisista pianolle ja lauluäänelle sävelletyistä kappaleista, pääosin säveltäjiltä Mykola Lysenko (1842-1912) ja Kyrylo Stetsenko (1882-1922). Suuri osa lauluista on sävelletty Ukrainan kansallisrunoilijan Taras Ševtšenkon teksteihin. Esillä on myös mm. naisrunoilija Dniprova Tšaika, oikealta nimeltään Ljudmyla Vasylevska.</p><p>&nbsp;</p><p>Konsertissa kuullaan oululaista lied-duoa. Tetyana Kushniruk on ukrainalainen Oulun ammattikorkeakoulusta valmistunut pianisti, joka esiintyy ja opettaa pääosin Oulussa. Iida-Marja Kleine on helsinkiläissyntyinen altto, joka opiskelee klassista laulua myöskin Oulun ammattikorkeassa. Duo työsti tätä konserttiohjelmaa maaliskuussa Oulun musiikkijuhlien kamarimusiikin mestarikurssilla pianisti Keval Shahin ohjauksessa.</p><p>&nbsp;</p><p>Käpylän kirkko</p><p>19.4.2024&nbsp;</p><p>19.00-20.00</p><p>&nbsp;</p><p>Alppilan kirkko</p><p>21.4.2024&nbsp;</p><p>18.00-19.00</p><p>&nbsp;</p><p>Vapaa pääsy, ohjelma 10 €</p>",
                "en": "<p>Songs from Ukraine - A concert of Ukrainian art song</p><p>Ukrainian art songs composed for voice and piano from the romantic period in the late 19th century</p><p>The concert program consists of Ukrainian art songs composed by Mykola Lysenko, Kyrylo Stetsenko and Yakiv Stepovyi. Most of the songs are set to poems by Taras Shevchenko, but also other writers will be heard, such as Dniprova Chaika and Lesia Ukrainka. Shevchenko is regarded as the founder of modern Ukrainian literary language, whereas Lysenko is often deemed to be the father of Ukrainian classical music.</p><p>The concert is held by a lied duo from Oulu. Ukrainian pianist Tetyana Kushniruk studied at Oulu University of Applied Sciences and currently teaches and regularly performs in the city. The Helsinki born contralto Iida-Marja Kleine’s voice studies at the same school are ongoing.</p><p>&nbsp;</p><p>Käpylä Church</p><p>19.4.2024</p><p>19.00-20.00</p><p>&nbsp;</p><p>&nbsp;Alppila Church</p><p>21.4.2024</p><p>18.00-19.00</p><p>Free entrance, program 10 €</p>"
            },
            "name": {
                "fi": "Lauluja Ukrainasta",
                "en": "Songs from Ukraine "
            },
            "info_url": {
                "fi": "https://www.facebook.com/share/sioNeUj9e522tbh2/?mibextid=9l3rBWKonserttiohjelma koostuu ukrainalaisista pianolle ja lauluäänelle sävelletyistä kappaleista, pääosin säveltäjiltä Mykola Lysenko (1842-1912) ja Kyrylo Stetsenko (1882-1922). Suuri osa lauluista on sävelletty Ukrainan kansallisrunoilijan Taras Ševtšenkon teksteihin. Esillä on myös mm. naisrunoilija Dniprova Tšaika, oikealta nimeltään Ljudmyla Vasylevska.    Konsertissa kuullaan oululaista lied-duoa. Tetyana Kushniruk on ukrainalainen Oulun ammattikorkeakoulusta valmistunut pianisti, joka esiintyy ja opettaa pääosin Oulussa. Iida-Marja Kleine on helsinkiläissyntyinen altto, joka opiskelee klassista laulua myöskin Oulun ammattikorkeassa. Duo työsti tätä konserttiohjelmaa maaliskuussa Oulun musiikkijuhlien kamarimusiikin mestarikurssilla pianisti Keval Shahin ohjauksessa.    Konserttiohjelman valmistamista on tukenut Otto A. Malmin lahjoitusrahasto.",
                "en": "https://www.facebook.com/share/sioNeUj9e522tbh2/?mibextid=9l3rBW"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "short_description": {
                "fi": "Lauluja Ukrainasta - ukrainalaisen lied-musiikin konsertti",
                "en": "Songs from Ukraine - A concert of Ukrainian art song"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmxorrre/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghl2dir3i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74250/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dij3m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dimui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2din3a/?format=api"
                }
            ],
            "images": [
                {
                    "id": 137829,
                    "license": "event_only",
                    "created_time": "2024-04-08T09:31:16.409653Z",
                    "last_modified_time": "2024-04-08T09:32:11.319586Z",
                    "name": "Bambi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi.jpg",
                    "cropping": "330,0,1654,1323",
                    "photographer_name": "HEO (c) Joel Levänen",
                    "alt_text": "Tekstiä ruskealla pohjalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-08T09:32:14.181977Z",
            "last_modified_time": "2024-04-08T09:32:14.181999Z",
            "date_published": null,
            "start_time": "2024-04-09T16:00:00Z",
            "end_time": "2024-04-12T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Bambi - kaikki mikä lakkaa kasvamasta, mätänee</p><p>Ympäristökirjallisuuden klassikko teatteripreesensissä.</p><p>Varis etsii triangeliaan, kaksi närheä avaavat ääntään ja harakka virittelee bassoaan suuren tammen alla. Niitty kerääntyy täyteen metsän väkeä, kun Skääk-kvartetti aloittaa illan numeronsa.</p><p>Bambi on tarina metsästä, jossa rauhallisen arjen voi hetkenä minä hyvänsä keskeyttää Hän. Silloin jokaisen on juostava henkensä edestä. Hengissä säilymisen edellytys on osata kuunnella metsää.</p><p>\"Hän ei voi olla kaikkivoipa kuten he sanovat. Hänestä ei ole peräisin se, mikä elää ja kasvaa. Hän ei ole meidän yläpuolellamme vaan meidän rinnallamme ja meidän kaltaisemme. Ymmärätkö minua, Bambi?\"</p><p>Sodassa jokainen voi olla sankari.</p><p>Esitys on HEOn Draama- ja näyttelijäntaidelinjan lopputyöproduktio.<br>Ohjaus ja dramatisointi Petra Pälmä.<br>&nbsp;</p><p>Tekstin talo, permantosali</p><p>5.-12.4.2024</p><p>&nbsp;</p><p>Esitykset:<br>5.4. klo19 ensi-ilta&nbsp;<br>6.4. / 7.4. / 9.4. / 10.4. / 12.4. klo 19<br>&nbsp;</p><p>Vapaaehtoinen maksu, kesto 2,5 h sis. väliajan<br>Lippuvaraukset: <a href=\"mailto:lippu.heodraama@gmail.com\">lippu.heodraama@gmail.com</a>&nbsp;</p>"
            },
            "name": {
                "fi": "Bambi"
            },
            "info_url": {
                "fi": "https://heokulta.fi/about/"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Bambi - kaikki mikä lakkaa kasvamasta, mätänee"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dir3i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghl2din3a",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74250/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dir3i/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137829,
                    "license": "event_only",
                    "created_time": "2024-04-08T09:31:16.409653Z",
                    "last_modified_time": "2024-04-08T09:32:11.319586Z",
                    "name": "Bambi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi.jpg",
                    "cropping": "330,0,1654,1323",
                    "photographer_name": "HEO (c) Joel Levänen",
                    "alt_text": "Tekstiä ruskealla pohjalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-08T09:32:13.154999Z",
            "last_modified_time": "2024-04-08T09:32:13.155055Z",
            "date_published": null,
            "start_time": "2024-04-12T16:00:00Z",
            "end_time": "2024-04-12T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Bambi - kaikki mikä lakkaa kasvamasta, mätänee</p><p>Ympäristökirjallisuuden klassikko teatteripreesensissä.</p><p>Varis etsii triangeliaan, kaksi närheä avaavat ääntään ja harakka virittelee bassoaan suuren tammen alla. Niitty kerääntyy täyteen metsän väkeä, kun Skääk-kvartetti aloittaa illan numeronsa.</p><p>Bambi on tarina metsästä, jossa rauhallisen arjen voi hetkenä minä hyvänsä keskeyttää Hän. Silloin jokaisen on juostava henkensä edestä. Hengissä säilymisen edellytys on osata kuunnella metsää.</p><p>\"Hän ei voi olla kaikkivoipa kuten he sanovat. Hänestä ei ole peräisin se, mikä elää ja kasvaa. Hän ei ole meidän yläpuolellamme vaan meidän rinnallamme ja meidän kaltaisemme. Ymmärätkö minua, Bambi?\"</p><p>Sodassa jokainen voi olla sankari.</p><p>Esitys on HEOn Draama- ja näyttelijäntaidelinjan lopputyöproduktio.<br>Ohjaus ja dramatisointi Petra Pälmä.<br>&nbsp;</p><p>Tekstin talo, permantosali</p><p>5.-12.4.2024</p><p>&nbsp;</p><p>Esitykset:<br>5.4. klo19 ensi-ilta&nbsp;<br>6.4. / 7.4. / 9.4. / 10.4. / 12.4. klo 19<br>&nbsp;</p><p>Vapaaehtoinen maksu, kesto 2,5 h sis. väliajan<br>Lippuvaraukset: <a href=\"mailto:lippu.heodraama@gmail.com\">lippu.heodraama@gmail.com</a>&nbsp;</p>"
            },
            "name": {
                "fi": "Bambi"
            },
            "info_url": {
                "fi": "https://heokulta.fi/about/"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Bambi - kaikki mikä lakkaa kasvamasta, mätänee"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2din3a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghl2dimui",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74250/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dir3i/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137829,
                    "license": "event_only",
                    "created_time": "2024-04-08T09:31:16.409653Z",
                    "last_modified_time": "2024-04-08T09:32:11.319586Z",
                    "name": "Bambi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi.jpg",
                    "cropping": "330,0,1654,1323",
                    "photographer_name": "HEO (c) Joel Levänen",
                    "alt_text": "Tekstiä ruskealla pohjalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-08T09:32:12.845340Z",
            "last_modified_time": "2024-04-08T09:32:12.845364Z",
            "date_published": null,
            "start_time": "2024-04-10T16:00:00Z",
            "end_time": "2024-04-10T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Bambi - kaikki mikä lakkaa kasvamasta, mätänee</p><p>Ympäristökirjallisuuden klassikko teatteripreesensissä.</p><p>Varis etsii triangeliaan, kaksi närheä avaavat ääntään ja harakka virittelee bassoaan suuren tammen alla. Niitty kerääntyy täyteen metsän väkeä, kun Skääk-kvartetti aloittaa illan numeronsa.</p><p>Bambi on tarina metsästä, jossa rauhallisen arjen voi hetkenä minä hyvänsä keskeyttää Hän. Silloin jokaisen on juostava henkensä edestä. Hengissä säilymisen edellytys on osata kuunnella metsää.</p><p>\"Hän ei voi olla kaikkivoipa kuten he sanovat. Hänestä ei ole peräisin se, mikä elää ja kasvaa. Hän ei ole meidän yläpuolellamme vaan meidän rinnallamme ja meidän kaltaisemme. Ymmärätkö minua, Bambi?\"</p><p>Sodassa jokainen voi olla sankari.</p><p>Esitys on HEOn Draama- ja näyttelijäntaidelinjan lopputyöproduktio.<br>Ohjaus ja dramatisointi Petra Pälmä.<br>&nbsp;</p><p>Tekstin talo, permantosali</p><p>5.-12.4.2024</p><p>&nbsp;</p><p>Esitykset:<br>5.4. klo19 ensi-ilta&nbsp;<br>6.4. / 7.4. / 9.4. / 10.4. / 12.4. klo 19<br>&nbsp;</p><p>Vapaaehtoinen maksu, kesto 2,5 h sis. väliajan<br>Lippuvaraukset: <a href=\"mailto:lippu.heodraama@gmail.com\">lippu.heodraama@gmail.com</a>&nbsp;</p>"
            },
            "name": {
                "fi": "Bambi"
            },
            "info_url": {
                "fi": "https://heokulta.fi/about/"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Bambi - kaikki mikä lakkaa kasvamasta, mätänee"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dimui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghl2dij3m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74250/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dir3i/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137829,
                    "license": "event_only",
                    "created_time": "2024-04-08T09:31:16.409653Z",
                    "last_modified_time": "2024-04-08T09:32:11.319586Z",
                    "name": "Bambi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi.jpg",
                    "cropping": "330,0,1654,1323",
                    "photographer_name": "HEO (c) Joel Levänen",
                    "alt_text": "Tekstiä ruskealla pohjalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-08T09:32:12.135490Z",
            "last_modified_time": "2024-04-08T09:32:12.135514Z",
            "date_published": null,
            "start_time": "2024-04-09T16:00:00Z",
            "end_time": "2024-04-09T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Bambi - kaikki mikä lakkaa kasvamasta, mätänee</p><p>Ympäristökirjallisuuden klassikko teatteripreesensissä.</p><p>Varis etsii triangeliaan, kaksi närheä avaavat ääntään ja harakka virittelee bassoaan suuren tammen alla. Niitty kerääntyy täyteen metsän väkeä, kun Skääk-kvartetti aloittaa illan numeronsa.</p><p>Bambi on tarina metsästä, jossa rauhallisen arjen voi hetkenä minä hyvänsä keskeyttää Hän. Silloin jokaisen on juostava henkensä edestä. Hengissä säilymisen edellytys on osata kuunnella metsää.</p><p>\"Hän ei voi olla kaikkivoipa kuten he sanovat. Hänestä ei ole peräisin se, mikä elää ja kasvaa. Hän ei ole meidän yläpuolellamme vaan meidän rinnallamme ja meidän kaltaisemme. Ymmärätkö minua, Bambi?\"</p><p>Sodassa jokainen voi olla sankari.</p><p>Esitys on HEOn Draama- ja näyttelijäntaidelinjan lopputyöproduktio.<br>Ohjaus ja dramatisointi Petra Pälmä.<br>&nbsp;</p><p>Tekstin talo, permantosali</p><p>5.-12.4.2024</p><p>&nbsp;</p><p>Esitykset:<br>5.4. klo19 ensi-ilta&nbsp;<br>6.4. / 7.4. / 9.4. / 10.4. / 12.4. klo 19<br>&nbsp;</p><p>Vapaaehtoinen maksu, kesto 2,5 h sis. väliajan<br>Lippuvaraukset: <a href=\"mailto:lippu.heodraama@gmail.com\">lippu.heodraama@gmail.com</a>&nbsp;</p>"
            },
            "name": {
                "fi": "Bambi"
            },
            "info_url": {
                "fi": "https://heokulta.fi/about/"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Bambi - kaikki mikä lakkaa kasvamasta, mätänee"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dij3m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghkriaxmm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p19896/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/burgerweeksfinland",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/burgerweeks",
                    "language": "fi"
                },
                {
                    "name": "extlink_tiktok",
                    "link": "https://www.tiktok.com/@burgerweeksfinland",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "Mukana olevat ravintolat tarjoavat sekä kampanjaa varten luomiaan spesiaaliburgereita että tutumpia burgeriherkkuja tasahinnoin; 10 € ja 15 €",
                        "en": "Participating restaurants will offer both special burgers created for the campaign and familiar burger delights at flat rates; €10 and €15."
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137701,
                    "license": "event_only",
                    "created_time": "2024-04-04T08:53:56.741977Z",
                    "last_modified_time": "2024-04-04T08:56:38.333206Z",
                    "name": "burgerweeks-some-sharing-image-1200x630.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/burgerweeks-some-sharing-image-1200x630.jpg",
                    "cropping": "314,0,1574,1261",
                    "photographer_name": "",
                    "alt_text": "Iso hampurilainen pihvillä, majoneesilla ja paahdetulla sipulilla.",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137701/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-04T10:20:47.858044Z",
            "last_modified_time": "2024-04-04T10:20:47.858060Z",
            "date_published": null,
            "start_time": "2024-04-09T21:01:00Z",
            "end_time": "2024-04-24T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 32767,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "City ja Burger Lovers Finland",
                "en": "City and Burger Lovers Finland"
            },
            "description": {
                "fi": "<p>Cityn ja Burger Lovers Finlandin järjestämä herkullinen tapahtuma valtaa Helsingin ravintolat 10.–24.4.2024. Mukana olevat ravintolat tarjoavat sekä kampanjaa varten luomiaan spesiaaliburgereita että tutumpia burgeriherkkuja tasahinnoin; 10 € ja 15 €<br><br>Helsinki, ravintolat ympäri kaupunkia<br><br>10.-24.4.2024&nbsp;<br><br>Lisätietoa Burger Weeks-tapahtumaan osallistuvista ravintoloista: <a href=\"https://www.burgerweeks.fi/\">https://www.burgerweeks.fi/</a>&nbsp;</p>",
                "en": "<p>This delicious event, organized by City and Burger Lovers Finland, spreads across restaurants throughout Helsinki from April 10th to April 24th, 2024. Participating restaurants will offer both special burgers created for the campaign and familiar burger delights at flat rates; €10 and €15.<br><br>Helsinki, restaurants around the city</p><p>10 April - 24 April 2024&nbsp;</p><p>More information about the restaurants participating in the Burger Weeks event: <a href=\"https://www.burgerweeks.fi/\">https://www.burgerweeks.fi/</a></p>"
            },
            "name": {
                "fi": "Burger Weeks Finland",
                "en": "Burger Weeks Finland"
            },
            "info_url": {
                "fi": "https://www.burgerweeks.fi/",
                "en": "https://www.burgerweeks.fi/"
            },
            "location_extra_info": {
                "fi": "Ravintolat ympäri kaupunkia",
                "en": "Multiple restaurants in Helsinki"
            },
            "short_description": {
                "fi": "Burger Weeks Finland tuo lautasellesi toinen toistaan mehevämpiä burgereita 15 päivän ajan.",
                "en": "Burger Weeks Finland brings an array of increasingly juicy burgers to your plate for 15 days."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkriaxmm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghkfgmtb4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/osoite:tehtaankatu_12_helsinki/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26879/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/p/C5BFKkaNb5N/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "Savi-keramiikkapaja sisältää pienen välipalan ja juoman 45€ per henkilö tai tuo ystäväsi hintaan 80€, (40€/kpl)",
                        "en": "Clay-pottery workshop includes a small snack and a drink  45€ per person or bring a friend for 80€, (40€ each)"
                    },
                    "description": {
                        "fi": "Akvarellipaja 35€ sisältää kaikki materiaalit. 25€ Omat maalit ja siveltimet mukaan, sisältää paperin ja työstölevyn",
                        "en": "Watercolor workshop 35€ includes all materials.  25€ Bring your own paints and brushes  includes paper and working board "
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137582,
                    "license": "cc_by",
                    "created_time": "2024-04-02T08:25:46.529375Z",
                    "last_modified_time": "2024-04-02T08:38:13.005368Z",
                    "name": "IMG_1609.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/IMG_1609.jpg",
                    "cropping": "188,0,937,749",
                    "photographer_name": "",
                    "alt_text": "file:///Users/bb-8/Downloads/IMG_1610.jpg",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137582/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Workshops April",
                    "url": "https://www.instagram.com/p/C5BFKkaNb5N/",
                    "alt_text": "https://www.instagram.com/p/C5BFKkaNb5N/"
                }
            ],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-04-03T06:15:57.468158Z",
            "last_modified_time": "2024-04-03T06:15:57.468191Z",
            "date_published": null,
            "start_time": "2024-04-06T09:00:00Z",
            "end_time": "2024-04-06T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 10,
            "minimum_attendee_capacity": 2,
            "enrolment_start_time": "2024-04-02T11:30:00+03:00",
            "enrolment_end_time": "2024-04-06T11:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Mimosa Vida ",
                "en": "Mimosa Vida "
            },
            "description": {
                "fi": "<p>&nbsp;Huhtikuun 4. torstai: Oletko valmis vapauttamaan luovuutesi? Tule mukaan savi-keramiikkapajaan, jossa teet oman korutelineen. Pidetään yhdessä hauskaa, tehdään jotain ainutlaatuista ja lähdet kotiin persoonallisen aarteen kanssa. Rentoudutaan, luodaan ja pidetään hauskaa. Varaa paikkasi jo tänään!</p><p>6 huhtikuuta lauantaina: Tule mukaan akvarellityöpajaan, jota johtaa lahjakas taiteilija Arina Tagmazian! Olitpa aloittelija tai kokenut taiteilija, sukella akvarellien maailmaan ja päästä luovuutesi valloilleen. Maalataan yhdessä eloisia \"Suomen kesä\" -maisemia ja tutkimme matkan varrella oleellisia tekniikoita. Älä missaa tätä tilaisuutta laajentaa taiteellista horisonttiasi ja luoda upeita taideteoksia. Varaa paikkasi nyt ja anna luovuutesi virrata!<br><br>Mimosa Vida<br><br>4.4.2024 klo 17-20.30<br>6.4.2024 klo 12-16<br><br>Hinnat:<br><br>- Savi-keramiikkapaja sisältää pienen välipalan ja juoman 45€ per henkilö tai tuo ystäväsi hintaan 80€, (40€/kpl)<br>- Akvarellipaja 35€ sisältää kaikki materiaalit. 25€ Omat maalit ja siveltimet mukaan, sisältää paperin ja työstölevyn<br>&nbsp;</p><p>*Työpajojen opetuskieli on englanti.</p><p>*Ilmoittautuminen vaaditaan, lähetä sähköpostia osoitteeseen: <a href=\"mailto:mimosavida.galleria@gmail.com\">mimosavida.galleria@gmail.com</a></p><p>*Lisätietoja työpajoista saat suoraan viestillä Mimosa Vidan sähköpostiin tai IG mimosa_vida</p>",
                "en": "<p>Mimosa Vida is a lifestyle boutique galleria that hosts art workshops and collaborates with local entrepreneurs and artists. They have upcoming workshops scheduled for April, with more to come. These workshops can also be arranged for private groups on flexible schedules.&nbsp;</p><p>*Thursday, April 4th , clay-pottery jewelry holder workshop: Ready? unleash your creativity? Participate in the workshops where you'll craft your very own art, &nbsp;It's all about having fun, making something unique, and leaving with a personalized treasure. Let's relax, &nbsp;create, and have a good time. Reserve your spot today!<br>&nbsp;</p><p>*Saturday, April 6th: Participate in a watercolor workshop led by talented artist Arina Tagmazian! Whether you're a beginner or seasoned artist, dive into the world of watercolors and unleash your creativity. Vibrant \"Finnish Summer\" landscapes will be painted together, exploring essential techniques along the way. Don't miss out on this opportunity to expand your artistic horizons and create stunning works of art. Reserve your spot now and let your creativity flow!<br><br>Mimosa Vida<br><br>4.4.2024 klo 17-20.30<br>6.4.2024 klo 12-16<br><br>Prices:<br><br>- Clay-pottery workshop includes a small snack and a drink &nbsp;45€ per person or bring a friend for 80€, (40€ each)<br>- Watercolor workshop 35€ includes all materials. &nbsp;25€ Bring your own paints and brushes &nbsp;includes paper and working board&nbsp;</p><p>Registration required send an email to: <a href=\"mailto:mimosavida.galleria@gmail.com\">mimosavida.galleria@gmail.com</a></p><p>All workshops are conducted in English.</p><p>For more information direct message or follow us on instagram: mimosa_vida</p>"
            },
            "name": {
                "fi": "Taiteen työpajat",
                "en": "Art Workshops"
            },
            "info_url": {
                "fi": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "Mimosa Vida (Tehtaankatu 12, 00140, Helsinki)",
                "en": "Mimosa Vida (Tehtaankatu 12, 00140, Helsinki)"
            },
            "short_description": {
                "fi": "Mimosa Vida on lifestyle-putiikkigalleria, jossa järjestetään taidetyöpajoja ja taidenäyttelyitä 4. huhtikuuta savi-keramiikkapaja. 6. huhtikuuta akvarellipaja.",
                "en": "Ready? unleash your creativity? Participate in workshops where you'll craft your very own art,  It's all about having fun and making something unique."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfgmtb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghc3ibg4i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21062/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p24062/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/joulutori/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/vanhanjoulutori/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 107094,
                    "license": "event_only",
                    "created_time": "2024-03-11T13:03:44.488248Z",
                    "last_modified_time": "2024-03-11T13:07:33.603429Z",
                    "name": "Jouluisia piparkakkuja",
                    "url": "http://api.hel.fi/linkedevents/media/images/20141214_1401__MG_5706_1017.jpg",
                    "cropping": "381,0,1899,1518",
                    "photographer_name": "Kuvituskuva/ Helsinki Partners (c) Jussi Hellsten",
                    "alt_text": "Jouluisia piparkakkuja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107094/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-11T13:07:34.266071Z",
            "last_modified_time": "2024-03-28T10:50:36.605553Z",
            "date_published": null,
            "start_time": "2024-12-13T22:01:00Z",
            "end_time": "2024-12-22T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Arahi Oy",
                "sv": "Arahi Oy",
                "en": "Arahi Oy"
            },
            "description": {
                "fi": "<p>Vanhan Joulutori on perinteinen suomalainen joulutori, jossa on mukana käsityöyrittäjiä, palvelun tuottajia ja designia.</p><p>Tapahtumasta löytyy laaja kattaus taidokkaasti luotuja sisustusesineitä, grafiikkaa, keramiikkaa, jouluisia herkkuja ja paljon muuta.</p><p>Keskustan sydämessä sijaitseva Vanha Ylioppilastalo luo tapahtumalle historialliset puitteet ja virittää joulun tunnelmaan.</p><p>&nbsp;</p><p>Vanha Ylioppilastalo<br>14.-22.12.2024<br>Vapaa pääsy</p>",
                "sv": "<p>Den traditionella julmarknaden i Gamla studenthuset samlar under samma tak hantverksföretagare, designprodukter och juldelikatesser.<br><br>I evenemanget finns ett brett utbud av elegant formgivna inredningsföremål, grafik, keramik, juldelikatesser och mycket annat.&nbsp;<br><br>Gamla studenthuset<br>14.-22.12.2024<br><br>Fritt inträde</p>",
                "en": "<p>Traditional Christmas Market will be held at the historic venue, Old Student House.</p><p>The event offers two full floors of high-quality Finnish Christmas delicacies and handicrafts, created by some of Finland’s best designers and artisans.</p><p>&nbsp;</p><p>Old Student House - Vanha Ylioppilastalo<br>14.-22.12.2024<br>Free entry</p>"
            },
            "name": {
                "fi": "Vanhan Joulutori 2024",
                "sv": "Vanhan joulutori - Jultorg på Gamla studenthuset 2024",
                "en": "Vanhan Joulutori Christmas Market 2024"
            },
            "info_url": {
                "fi": "http://www.vanhanjoulutori.fi",
                "sv": "https://www.vanhanjoulutori.fi/shortly-in-english/",
                "en": "https://www.vanhanjoulutori.fi/shortly-in-english/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Vanhan Joulutori on perinteinen suomalainen joulutori, jossa on mukana käsityöyrittäjiä, palvelun tuottajia ja designia.",
                "sv": "Den traditionella julmarknaden i Gamla studenthuset samlar under samma tak hantverksföretagare, designprodukter och juldelikatesser.",
                "en": "Traditional Christmas Market will be held at the historic venue, Old Student House. "
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghc3ibg4i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghc3iyn3i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/syoviikot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/syoviikot/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "12€ / annos",
                        "sv": "12€ / portion",
                        "en": "12€ / portion"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 101598,
                    "license": "event_only",
                    "created_time": "2024-01-19T08:56:13.897621Z",
                    "last_modified_time": "2024-01-19T08:56:49.684451Z",
                    "name": "SYÖ!-viikot",
                    "url": "http://api.hel.fi/linkedevents/media/images/syo12-3-edited.jpg",
                    "cropping": "336,0,1685,1350",
                    "photographer_name": "City (c) Mai Puttonen",
                    "alt_text": "Ihmisiä syömässä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101598/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-11T13:10:44.457397Z",
            "last_modified_time": "2024-03-28T10:28:59.461616Z",
            "date_published": null,
            "start_time": "2024-05-16T21:01:00Z",
            "end_time": "2024-05-30T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "City.fi",
                "sv": "City.fi",
                "en": "City.fi"
            },
            "description": {
                "fi": "<p>SYÖ!-viikkojen aikana yli 100 ravintolaa ympäri Suomen kattavat pöytiin parastaan vain 12 eurolla kahden viikon ajan.</p><p>&nbsp;</p><p>Helsinki sekä lukuisat ravintolat ympäri Suomen</p><p>17.-30.5.2024</p><p>Annokset 12€</p>",
                "sv": "<p>Under SYÖ!-veckorna erbjuder över 100 restauranger runt om i Finland sina bästa rätter för bara 12 € i två veckors tid.&nbsp;<br><br>Helsingfors, samt många restauranger runt om i Finland<br><br>17.-30.5.2024</p><p>Portioner 12€</p>",
                "en": "<p>During The SYÖ! weeks, over 100 restaurants across Finland are serving up their best dishes for just 12€ for two weeks.</p><p>&nbsp;</p><p>Helsinki and all over Finland</p><p>17.-30.5.2024</p><p>Portions 12€</p>"
            },
            "name": {
                "fi": "SYÖ!-viikot II/2024",
                "sv": "SYÖ! Veckorna II/2024",
                "en": "SYÖ! Weeks II/2024"
            },
            "info_url": {
                "fi": "https://syoviikot.fi/",
                "sv": "https://syoviikot.fi/",
                "en": "https://syoviikot.fi/"
            },
            "location_extra_info": {
                "fi": "kampanjassa mukana olevat helsinkiläisravintolat",
                "sv": "Många restauranger i Helsingfors",
                "en": "multiple restaurants in Helsinki"
            },
            "short_description": {
                "fi": "SYÖ!-viikkojen aikana yli 100 ravintolaa ympäri Suomen kattavat pöytiin parastaan vain 12 eurolla kahden viikon ajan.",
                "sv": "Under SYÖ!-veckorna erbjuder över 100 restauranger runt om i Finland sina bästa rätter för bara 12 € i två veckors tid. ",
                "en": "During The SYÖ! weeks, over 100 restaurants across Finland are serving up their best dishes for just 12€ for two weeks."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghc3iyn3i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agf7wa7kpa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18295/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22135/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://shop.messukeskus.com/fi/",
                        "sv": "https://shop.messukeskus.com/fi/",
                        "en": "https://shop.messukeskus.com/fi/"
                    },
                    "price": {
                        "fi": "https://lautasella.messukeskus.com/info/",
                        "sv": "https://lautasella.messukeskus.com/info/",
                        "en": "https://lautasella.messukeskus.com/info/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 99618,
                    "license": "event_only",
                    "created_time": "2023-11-23T07:09:34.220352Z",
                    "last_modified_time": "2023-11-23T07:10:19.565547Z",
                    "name": "Lautasella",
                    "url": "http://api.hel.fi/linkedevents/media/images/2M1A3240.jpg",
                    "cropping": "344,0,1705,1361",
                    "photographer_name": "Helsingin Messukeskus (c) Pekka Hannila",
                    "alt_text": "Ruoka-annoksia ja ihmisiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/99618/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T07:10:19.782328Z",
            "last_modified_time": "2024-03-27T14:09:42.394273Z",
            "date_published": null,
            "start_time": "2024-10-26T07:00:00Z",
            "end_time": "2024-10-27T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Messukeskus",
                "sv": "Messukeskus",
                "en": "Messukeskus"
            },
            "description": {
                "fi": "<p>Lautasella on erityisruokavalioiden oma tapahtuma Messukeskuksessa, joka järjestetään samaan aikaan Viini &amp; Ruoka -messujen sekä Helsingin Kirjamessujen kanssa.&nbsp;</p><p>Tarjolla on maistuvia herkkuja, joissa huomioidaan niin gluteenittomuus, vege ja vegaanisuus sekä erilaiset allergiat.</p><p>Tutustu uutuustuotteisiin, tee ostoksia ja maistele herkkuja! Poimi kotiin vietäväksi myös inspiroivat vinkit ja ideat hyvään, turvalliseen ja maukkaaseen arkeen luennoilta, tietoiskuista sekä esityksistä.<br>&nbsp;</p><p>Messukeskus</p><p>26.-27.10.2024</p><p>10.00-18.00</p><p>Samalla lipulla sisäänpääsy myös Viini &amp; Ruoka- sekä Helsingin Kirjamessuille</p>",
                "sv": "<p>På tallriken 2024 är ett eget evenemang för specialkost, som arrangeras i Mässcentret samtidigt med Vin &amp; Mat-mässan samt Helsingfors Bokmässan.&nbsp;<br><br>På evenemanget kan du smaka på läckra delikatesser där hänsyn har tagits till glutenfrihet, vegetarism, veganism och olika allergier.<br><br>Bekanta dig med nya produkter, handla och smaka på läckerheter! Ta även med dig hem inspirerande tips och idéer för en god, säker och läcker vardag från föreläsningarna och presentationerna<br><br>Mässcentret<br><br>26.-27.10.2024<br>10.00-18.00<br><br>I samma biljett ingår inträde till också Vin &amp; Mat- samt Helsingfors bokmässan.&nbsp;</p>",
                "en": "<p>The Finnish Coeliac Association and Messukeskus will organise the Lautasella 2024 fair in Helsinki on Saturday and Sunday 26.–27.10.2024.</p><p><br>On the plate is a special diet event, which will be held at the same time as the Wine &amp; Food Fair and the Helsinki Book Fair.</p><p>The event offers tasty delicacies that take gluten-free, vegetarian and vegan into account as well as various allergies.</p><p>Check out new products, shop and taste delicacies! Pick up inspiring tips and ideas for a good, safe and tasty everyday life from lectures, information bulletins and presentations to take home.<br>&nbsp;</p><p>Messukeskus<br>26.-27.10.2024</p><p>10.00-18.00</p><p>At the same time with the same ticket Wine &amp; Food Fair and Helsinki Book Fair</p>"
            },
            "name": {
                "fi": "Lautasella 2024",
                "sv": "På tallriken 2024",
                "en": "On The Plate Fair 2024"
            },
            "info_url": {
                "fi": "https://lautasella.messukeskus.com/",
                "sv": "https://lautasella.messukeskus.com/?lang=en",
                "en": "https://lautasella.messukeskus.com/?lang=en"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Lautasella on erityisruokavalioiden oma tapahtuma Messukeskuksessa, joka järjestetään samaan aikaan Viini & Ruoka -messujen sekä Helsingin Kirjamessujen kanssa.",
                "sv": "På tallriken är ett eget evenemang för specialkost, som arrangeras i Mässcentret samtidigt med Vin & Mat-mässan samt Helsingfors Bokmässan. ",
                "en": "The Celiac Association and Messukeskus organize the On the Plate Fair 2023 trade fair in October. "
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7wa7kpa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agf7woub7m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4750/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://shop.messukeskus.com/fi/",
                        "sv": "https://shop.messukeskus.com/fi/",
                        "en": "https://shop.messukeskus.com/fi/"
                    },
                    "price": {
                        "fi": "https://shop.messukeskus.com/fi/",
                        "sv": "https://shop.messukeskus.com/fi/",
                        "en": "https://shop.messukeskus.com/fi/"
                    },
                    "description": {
                        "fi": "https://shop.messukeskus.com/fi/",
                        "sv": "https://shop.messukeskus.com/fi/",
                        "en": "https://shop.messukeskus.com/fi/"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 99621,
                    "license": "event_only",
                    "created_time": "2023-11-23T08:09:15.764917Z",
                    "last_modified_time": "2023-11-23T08:09:57.179671Z",
                    "name": "Viini & Ruoka",
                    "url": "http://api.hel.fi/linkedevents/media/images/2M1A3313.jpg",
                    "cropping": "364,0,1802,1439",
                    "photographer_name": "Helsingin Messukeskus (c) Pekka Hannila",
                    "alt_text": "Hymyiloevä nainen  ja viinipulloja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/99621/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-23T08:09:57.519208Z",
            "last_modified_time": "2024-03-27T14:00:58.766160Z",
            "date_published": null,
            "start_time": "2024-10-23T21:01:00Z",
            "end_time": "2024-10-27T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Messukeskus",
                "sv": "Messukeskus",
                "en": "Messukeskus"
            },
            "description": {
                "fi": "<p>Viini &amp; Ruoka on herkullinen ja monipuolinen tapahtuma, joka kokoaa viinin- ja ruoanrakastajat, kulinaristit ja gastrofiilistelijät saman katon alle Messukeskukseen.&nbsp;</p><p>Tapahtuma tulvii makunystyröitä hiveleviä kokemuksia, tastingeja, ohjelmaa ja messutarjouksia.<br>&nbsp;</p><p>Messukeskus</p><p>24.–27.10.2024</p>",
                "sv": "<p>Vin &amp; Mat är ett läckert och mångsidigt evenemang, som för samman vin- och matentusiaster, kulinarister och matintresserade under samma tak i Mässcentret.&nbsp;<br><br>Evenemanget bjuder på en rad smakrika och njutbara smakupplevelser, provsmakningar, program och mässerbjudanden.&nbsp;<br><br>Mässcentret<br>24.–27.10.2024</p>",
                "en": "<p>Wine &amp; Food is the a delicious and versatile event, that gathers wine and food lovers, foodies and gastro connoisseurs under the same roof at the Messukeskus.&nbsp;</p><p>The event is flooded with taste bud-pleasing experiences, tastings, program and fair offers.<br>&nbsp;</p><p>Messukeskus<br>24.-27.10.2024</p>"
            },
            "name": {
                "fi": "Viini & Ruoka 2024",
                "sv": "Vin & Mat 2024",
                "en": "Wine & Food 2024"
            },
            "info_url": {
                "fi": "https://viinijaruoka.messukeskus.com/",
                "sv": "https://viinijaruoka.messukeskus.com/?lang=en",
                "en": "https://viinijaruoka.messukeskus.com/?lang=en"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Viini & Ruoka on herkullinen ja monipuolinen tapahtuma, joka kokoaa viinin- ja ruoanrakastajat, kulinaristit ja gastrofiilistelijät saman katon alle ",
                "sv": "Vin & Mat är ett läckert och mångsidigt evenemang, som för samman vin- och matentusiaster, kulinarister och matintresserade under samma tak i Mässcentret. ",
                "en": "Wine & Food is the a delicious and versatile event, that gathers wine and food lovers, foodies and gastro connoisseurs under the same roof at the Messukeskus. "
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7woub7m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agf3sfyywy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p24062/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/kansainvalisetsuurmarkkinat/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 96718,
                    "license": "event_only",
                    "created_time": "2023-09-22T07:48:29.049483Z",
                    "last_modified_time": "2023-09-22T07:49:09.144714Z",
                    "name": "Kansainväliset suurmarkkinat",
                    "url": "http://api.hel.fi/linkedevents/media/images/Hki_senaatintori-1.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "(c) TMK Tori- ja markkinakaupan palvelukeskus Oy",
                    "alt_text": "Torikojuja ja ihmisiä Senaatintorilla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/96718/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-10T11:56:20.546398Z",
            "last_modified_time": "2024-03-27T13:54:53.903265Z",
            "date_published": null,
            "start_time": "2024-09-17T21:01:00Z",
            "end_time": "2024-09-22T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "TMK Tori- ja markkinakaupan palvelukeskus Oy",
                "sv": "TMK Tori- ja markkinakaupan palvelukeskus Oy",
                "en": "TMK Tori- ja markkinakaupan palvelukeskus Oy"
            },
            "description": {
                "fi": "<p>Kansainväliset suurmarkkinat tarjoavat upeaa, kansainvälistä markkinatunnelmaa.&nbsp;</p><p>Mukana on lukuisia kauppiaita yli 30 eri maasta esittelemässä toinen toistaan houkuttelevampia ruokakojuja, käsitöitä ja muita erikoisuuksia.&nbsp;</p><p>&nbsp;</p><p>Helsinki (paikka ilmoitetaan myöhemmin)</p><p>18.-22.9.2024</p><p>Vapaa pääsy</p>",
                "sv": "<p>Den internationella stormarknaden erbjuder enastående internationell marknadsstämning.<br><br>I evenemanget kommer försäljare från över 30 länder att delta, med matstånd, hantverk och andra specialiteter.<br><br>Helsingfors (mer information om evenemangsplatsen kommer senare)<br><br>18.-22.9.2024<br>Fritt inträde</p>",
                "en": "<p>The great international market event, International Grand Market of Helsinki, is hosting many traders from over 30 countries offering attractive food stalls, crafts and other specialities.<br>&nbsp;</p><p>Helsinki</p><p>18.-22.9.2024</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Helsingin kansainväliset suurmarkkinat 2024",
                "sv": "Helsingfors internationella stormarknad 2024",
                "en": "International Grand Market of Helsinki 2024"
            },
            "info_url": {
                "fi": "https://www.eurooppamarkkinat.fi/helsinki/",
                "sv": "https://www.eurooppamarkkinat.fi/helsinki/",
                "en": "https://www.eurooppamarkkinat.fi/helsinki/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Kansainväliset suurmarkkinat tarjoavat upeaa, kansainvälistä markkinatunnelmaa. ",
                "sv": "Den internationella stormarknaden erbjuder enastående internationell marknadsstämning.",
                "en": "The great international market event, International Grand Market of Helsinki, is hosting many traders from over 30 countries offering attractive food stalls"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf3sfyywy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggsc42o4u",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16019/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18844/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "http://www.suuretoluet.fi",
                        "sv": "http://www.suuretoluet.fi",
                        "en": "http://www.suuretoluet.fi"
                    },
                    "price": {
                        "fi": "http://www.suuretoluet.fi",
                        "sv": "http://www.suuretoluet.fi",
                        "en": "http://www.suuretoluet.fi"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 44563,
                    "license": "event_only",
                    "created_time": "2018-05-25T09:37:51.854221Z",
                    "last_modified_time": "2022-04-07T09:16:38.241308Z",
                    "name": "Local Beers",
                    "url": "http://api.hel.fi/linkedevents/media/images/20140709_1207__MG_0161_4255.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Helsinki Partners (c) Jussi Hellsten",
                    "alt_text": "Olutlaseja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/44563/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-19T11:20:21.486668Z",
            "last_modified_time": "2024-03-27T13:02:36.645107Z",
            "date_published": null,
            "start_time": "2024-07-16T21:01:00Z",
            "end_time": "2024-07-20T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Suuret Oluet Pienet Panimot ",
                "sv": "",
                "en": "Great Beers - Small Breweries"
            },
            "description": {
                "fi": "<p>Suuret Oluet Pienet Panimot on olut- ja pienpanimotapahtuma, joka järjestetään Helsingissä heinäkuussa.&nbsp;</p><p>Oluttapahtuman päätähtinä loistavat kotimaiset pienpanimot.</p><p>&nbsp;</p><p>Helsinki<br>17.-20.7.2024</p><p>Paikka- ja tapahtumatiedot tarkentuvat myöhemmin, K-18</p>",
                "sv": "<p>Stora öl - Små bryggerier är en småbryggerifestival, som ordnas i Helsingfors i juli.&nbsp;<br><br>Ölfestivalens huvudstjärnör är utmärkta inhemska småbryggerier.<br><br>Helsingfors<br>17.-20.7.2024</p><p>Ytterligare information om plats och evenemang kommer senare.<br><br>Åldersgräns: 18 år</p>",
                "en": "<p>The beer festival is focusing on local beers produced in small breweries. Kippis!&nbsp;</p><p>The festival showcases craft beers, ciders, long drinks, distillery products, and soft drinks produced by microbreweries.</p><p>Selected as Finnish Travel Event of the Year for 2016, it was also granted the EcoCompass certificate for the event in Helsinki.</p><p>&nbsp;</p><p>Helsinki<br>17.-20.7.2024</p><p>The place and the program will be published later, age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Suuret Oluet Pienet Panimot 2024",
                "sv": "Stora öl - Små bryggerier 2024",
                "en": "Great Beers - Small Breweries 2024"
            },
            "info_url": {
                "fi": "https://suuretoluet.fi/helsinki/",
                "sv": "https://suuretoluet.fi/helsinki/",
                "en": "https://suuretoluet.fi/helsinki/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Suuret Oluet Pienet Panimot on olut- ja pienpanimotapahtuma, joka järjestetään Helsingissä heinäkuussa. ",
                "sv": "Stora öl - Små bryggerier är en småbryggerifestival, som ordnas i Helsingfors i juli. ",
                "en": "The beer festival is focusing on local beers produced in small breweries"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggsc42o4u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agftqnxpr4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:627/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18844/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5127/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://craftbeerhelsinki.fi/",
                        "sv": "https://craftbeerhelsinki.fi/",
                        "en": "https://craftbeerhelsinki.fi/"
                    },
                    "price": {
                        "fi": "https://craftbeerhelsinki.fi/",
                        "sv": "https://craftbeerhelsinki.fi/",
                        "en": "https://craftbeerhelsinki.fi/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 88452,
                    "license": "cc_by",
                    "created_time": "2023-01-13T09:09:41.059811Z",
                    "last_modified_time": "2023-01-13T09:10:23.073796Z",
                    "name": "Craft Beer Helsinki",
                    "url": "http://api.hel.fi/linkedevents/media/images/CBHevent.jpg",
                    "cropping": "258,0,1283,1026",
                    "photographer_name": "RH Events Oy (c) Joonas Kukkonen",
                    "alt_text": "Ihminen käsissään kaksi olutlasia",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/88452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-16T11:20:06.303773Z",
            "last_modified_time": "2024-03-27T11:46:01.420026Z",
            "date_published": null,
            "start_time": "2024-06-27T11:00:00Z",
            "end_time": "2024-06-29T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "RH Events Oy",
                "sv": "RH Events Oy",
                "en": "RH Events Oy"
            },
            "description": {
                "fi": "<p>Craft Beer Helsinki on vuodesta 2016 järjestetty käsityöläisolutfestivaali, joka järjestetään vuosittain Rautatientorilla.</p><p>Mukana tapahtumassa on yli 30 panimoa ympäri maailmaa. Loistavien oluiden lisäksi tarjolla siidereitä, viinejä ja tietenkin ruokaa.</p><p>&nbsp;</p><p>Rautatientori</p><p>27.-29.6.2024</p><p>To klo 14-24, pe klo 12-01, la klo 12-24</p><p>K-18</p>",
                "sv": "<p>Craft Beer Helsinki är en festival för hantverksöl som ordnats sedan 2016 på Järnvägstorget.&nbsp;<br><br>Över 30 bryggerier från runtom i världen deltar i evenemanget. Förutom utmärkta öl finns också cider, vin och naturligtvis mat.&nbsp;<br><br>Järnvägstorget<br><br>27.-29.6.2024</p><p>To kl. 14-24, fre kl. 12-01, lö kl. 12-24</p><p>Åldersgräns 18 år</p>",
                "en": "<p>Craft Beer Helsinki is a beer festival organized since 2016 yearly at the Railway Square.&nbsp;</p><p>The event will present more than 30 breweries, besides craft beer, there will be also wines, ciders and of course food.<br>&nbsp;</p><p>Railway Square</p><p>27.-29.6.2024</p><p>&nbsp;</p><p>Thu 14.00-24.00</p><p>Fri 12.00-01.00</p><p>Sat 12.00-24.00</p><p>&nbsp;</p><p>Age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Craft Beer Helsinki 2024",
                "sv": "Craft Beer Helsinki 2024",
                "en": "Craft Beer Helsinki 2024"
            },
            "info_url": {
                "fi": "https://craftbeerhelsinki.fi/",
                "sv": "https://craftbeerhelsinki.fi/",
                "en": "https://craftbeerhelsinki.fi/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Craft Beer Helsinki on vuodesta 2016 järjestetty käsityöläisolutfestivaali, joka vuonna 2023 järjestetään kesän lisäksi myös maaliskuussa Wanhassa Satamassa.",
                "sv": "Craft Beer Helsinki är en festival för hantverksöl som ordnats sedan 2016 på Järnvägstorget. ",
                "en": "Craft Beer Helsinki is a beer festival organized since 2016 yearly at the Railway Square. "
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agftqnxpr4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agft22yxli",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:627/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p19896/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5529/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://instagram.com/burgerloversfinland",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://www.burgerlovers.fi/",
                        "sv": "https://www.burgerlovers.fi/",
                        "en": "https://www.burgerlovers.fi/"
                    },
                    "price": {
                        "fi": "https://www.burgerlovers.fi/",
                        "sv": "https://www.burgerlovers.fi/",
                        "en": "https://www.burgerlovers.fi/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 78042,
                    "license": "event_only",
                    "created_time": "2022-03-01T13:39:32.250723Z",
                    "last_modified_time": "2022-03-01T13:46:25.151501Z",
                    "name": "Burger Lovers Festival",
                    "url": "http://api.hel.fi/linkedevents/media/images/c8b22f8f-1e07-4381-a4f7-6b9.jpg",
                    "cropping": "298,0,902,605",
                    "photographer_name": "Burger Lovers Finland (c) Antti Suikkari",
                    "alt_text": "Hampurilainen pöydällä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/78042/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-17T11:35:10.438436Z",
            "last_modified_time": "2024-03-27T08:07:55.448178Z",
            "date_published": null,
            "start_time": "2024-06-11T21:01:00Z",
            "end_time": "2024-06-15T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Burger Lovers Finland ",
                "sv": "Burger Lovers Finland ",
                "en": "Burger Lovers Finland "
            },
            "description": {
                "fi": "<p>Burger Lovers Festival järjestetään ensi kesäkuussa Rautatientorilla.</p><p>Tarjolle tulee useita erityylisiä ja eri tekniikoilla valmistettuja hampurilaisia. Perinteisten burgerien lisäksi listoilta tulee löytymään myös vegaanisia ja kasvisvaihtoehtoja.&nbsp;</p><p>Festivaaliin osallistuvat ravintolat tarjoilevat annoksia myyntipisteiltään ja koko festivaalialue toimii anniskelualueena.&nbsp;</p><p>Listaus burgerimyyjistä julkaistaan myöhempänä ajankohtana.</p><p>&nbsp;&nbsp;</p><p>Rautatientori&nbsp;</p><p>12.-15.6.2024</p><p>Vapaa pääsy</p>",
                "sv": "<p>Burgers Lovers Festuval ordnas i juni på Järnvägstorget.<br><br>Under evenemanget serveras olika slags hamburgare som är tillagade med olika tekniker. Förutom traditionella hamburgare finns också veganska och vegetariska alternativ på menyn.<br><br>Restaurangerna som deltas i evenemanget erbjuder portioner från sina egna försäljningsställen. Hela festivalområdet fungerar som alkoholserveringsområde.&nbsp;<br><br>Listan över hamburgarförsäljarna publiceras vid en senare tidpunkt.&nbsp;<br><br>Järnvägstorget<br>12.-15.6.2024<br><br>Fritt inträde</p>",
                "en": "<p>Burger Lovers Festival is the first food festival in Finland specialized in burgers.&nbsp;</p><p>The burger restaurants will be published on March/April.<br>&nbsp;</p><p>Railway Square&nbsp;</p><p>12.-15.6.2024</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Burger Lovers Festival 2024",
                "sv": "Burger Lovers Festival 2024",
                "en": "Burger Lovers Festival 2024"
            },
            "info_url": {
                "fi": "https://www.burgerlovers.fi/",
                "sv": "https://www.burgerlovers.fi/",
                "en": "https://www.burgerlovers.fi/"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Burger Lovers Festival järjestetään ensi kesäkuussa kolmannen kerran.",
                "sv": "Burgers Lovers Festuval ordnas i juni på Järnvägstorget.",
                "en": "Burger Lovers Festival is the first food festival specialized in burgers"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agft22yxli/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggpz665sq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggtm5l7mm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdqitwbwe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggsb37j6m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiohxvsa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agftqm6pve/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf42fmaby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agfy6f4hqq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7wgeruu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agfr34n2ka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agft22yxli/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agftqnxpr4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agesb27esm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agfbpl6s4e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf3sfyywy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7wa7kpa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggblul2zq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggblu6xlu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggtkugnhi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggtbj6ldi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggvi6pem4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggvu7a4f4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggcjfebge/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggv6d22iu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggsc42o4u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agf7woub7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af677xzshq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggyrwnpo4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggy3cigka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzyui4pe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzzbktvm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2dj5pqe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2o6nndi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2fa72zm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2ye2ura/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2yh5wci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg3danacm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4ag4cq4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2n4idvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg3ert77a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4bkb4lm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4clky5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4k3qeh4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4luehb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4q6wrry/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggwjfovka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggfq3nlzy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5bcfokq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5fkf6ci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5fmjpfy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg57i4gme/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5uxavte/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6kkewyy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6kbusdu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5clwjnq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6lw7kfa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6lxxprq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6lwjanu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6ytilsa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7dmngam/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7a5v2pe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7auqot4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7be3xoy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg66wiyd4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg677ypzi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg663ogaq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6566z2q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7ko4r6y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6wvjjam/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67kpf6a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7ddyz7a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6wrawy4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6yw2cny/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7cjrxpi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7c5qsf4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bdt3ku/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67qslwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7joahyy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7lcf25a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6w6dqze/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg674jdvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67yc4we/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6xeynua/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67udcf4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67msfem/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67ched4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7cxtzvq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6wtudte/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg66zb44i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7ak4qgi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6y5foii/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7cynoky/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg663ykey/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bcragm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bbwwnq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67k7qj4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7afdjxy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7aihxhq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bginre/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6vmqd7y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg65wjzm4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6vvca4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7bp3fva/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg66heyai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg5vnfi7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg674nm24/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg65na5ja/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg64dvcpq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6ybefiq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6wvspiu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbkvauwa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7adngdq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha5h3oci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghajey7lm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghajdfoce/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb3g2l2q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7c5kise/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczfu3by/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghc3ibg4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghc3iyn3i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg67dj7ue/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7cbkpxi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdqvdrxu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdx2dypi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghd2kyzky/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghefe2tri/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghefmgxeu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghefuu5ry/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghd23dtle/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfdi3x7a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghffbrzwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfe7h7v4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghffeiv6i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfotkcym/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfoh7sb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgln3pwe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhkmcxeq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhk2yawq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhxrrmbe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhxtytx4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhxwnilm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibf7zhu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibji4nq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghiahcdcm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkhuydji/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkriaxmm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghlty4sja/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdz5awmy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghitlnnla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghk2tb5h4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghk3hcerm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghktevebq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6ink7ey/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmdu4nsi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmn7ylzy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmo4lvpe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmpols4a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmpyh3ca/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghnc3nhuy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghndugtx4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghndfruui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agholr52hq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghol27xdi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7dmf4me/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghnfosvxq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghonfhngy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghnfjvcxq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7ddonvy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghow562ui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghpbvawd4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghpbwe2oq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghowmcm54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghoyunvny/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghozq6fdm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghoztkdn4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghodxzem4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlcikxu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkkum6u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2pr3mha/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg664iqpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrir5sqy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghritgcma/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrakyxhm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghrhseo6q/?format=api"
                }
            ],
            "images": [
                {
                    "id": 101341,
                    "license": "event_only",
                    "created_time": "2024-01-12T09:19:55.323419Z",
                    "last_modified_time": "2024-01-12T09:23:33.311297Z",
                    "name": "Helsinki ruokavuosi 2024",
                    "url": "http://api.hel.fi/linkedevents/media/images/hki_paiva13_053_Lauri_Rotko_3335.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "© Lauri Rotko / Helsinki Partners",
                    "alt_text": "Henkilöitä istuu katetun pöydän äärellä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-12T09:23:33.918063Z",
            "last_modified_time": "2024-03-27T07:34:36.328961Z",
            "date_published": null,
            "start_time": "2023-12-31T22:01:00Z",
            "end_time": "2024-12-31T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Helsingin kaupunki",
                "sv": "Helsingfors stad",
                "en": "City of Helsinki"
            },
            "description": {
                "fi": "<p>Ruoka on yksi Helsingin tapahtumallisuuden ja matkailun keskeisiä teemoja vuonna 2024, jolloin Helsinki muuttuu upeiden ruokatapahtumien näyttämöksi. Yksi vuoden huipputapahtumista on Helsingin kaupungin 27. toukokuuta isännöimä pohjoismaisten ravintoloiden Michelin-tähtien julkistamistilaisuus. Se on maailman tunnetuimpia ruoka-alan tapahtumia, joka kokoaa Helsinkiin alan pohjoismaiset huiput.<br><br>Ruokavuoden tapahtumia on koko vuoden ajan. Erityisesti alkukesän ruokaviikkojen aikana 24.5.-16.6. ravintola-, matkailu- ja tapahtuma-alan toimijat esittelevät Helsingin monipuolista ruokakulttuuria kaupunkilaisille ja vierailijoille.</p>",
                "sv": "<p>Mat är ett centralt tema för Helsingfors evenemang och turism år 2024, då Helsingfors kommer att vara skådeplatsen för stora evenemang som kretsar kring mat.&nbsp;</p><p>Ett av årets viktigaste händelser är offentliggörandet av de nordiska restaurangernas Michelin-stjärnor den 27 maj. Evenemanget som Helsingfors står värd för är ett av världens mest kända inom matbranschen och i Helsingfors samlas därför de allra främsta namnen inom matbranschen i Norden.&nbsp;</p><p>&nbsp;</p><p>Matårets evenemang ordnas under hela året. Aktörer inom restaurang-, turism- och evenemangbranschen presenterar Helsingfors mångsidiga matkultur till stadsbor och besökare särskilt under försommarens matveckor från 24.5.-16.6.2024.</p>",
                "en": "<p>Food is one of the central themes of Helsinki's events and tourism in 2024, when Helsinki will become the scene of wonderful food events.&nbsp;</p><p>One of the top events of the year is the announcement of the Michelin stars of Nordic restaurants, hosted by the city of Helsinki on May 27. It is one of the world's most well-known events in the food industry, which gathers the Nordic tops of the industry in Helsinki.</p><p>There are food year events throughout the year. Especially during the early summer food weeks 24.5.-16.6. operators in the restaurant, tourism and event industries present Helsinki's diverse food culture to city dwellers and visitors.</p>"
            },
            "name": {
                "fi": "Helsingin ruokavuosi 2024",
                "sv": "Helsingfors matår 2024",
                "en": "Helsinki’s Food Year  2024"
            },
            "info_url": {
                "fi": "https://www.hel.fi/ruokakaupunki",
                "sv": "https://www.hel.fi/sv/beslutsfattande-och-forvaltning/information-om-helsingfors/matstaden-helsingfors",
                "en": "https://www.hel.fi/en/decision-making/information-on-helsinki/food-city-helsinki"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Ruoka on yksi Helsingin tapahtumallisuuden ja matkailun keskeisiä teemoja vuonna 2024, jolloin Helsinki muuttuu upeiden ruokatapahtumien näyttämöksi.",
                "sv": "Mat är ett centralt tema för Helsingfors evenemang och turism år 2024, då Helsingfors kommer att vara skådeplatsen för stora evenemang som kretsar kring mat. ",
                "en": "Food is one of the central themes of Helsinki's events and tourism in 2024, when Helsinki will become the scene of wonderful food events. "
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghhkmcxeq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21269/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14799/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/lakritsifestivaalit/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                        "sv": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                        "en": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit"
                    },
                    "price": {
                        "fi": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                        "sv": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                        "en": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 96422,
                    "license": "cc_by",
                    "created_time": "2023-09-13T11:38:56.582832Z",
                    "last_modified_time": "2023-09-13T11:41:04.318547Z",
                    "name": "Lakritsi- & Salmiakkifestivaalit 2023",
                    "url": "http://api.hel.fi/linkedevents/media/images/358425778_828163712033901_3795754462211560966_n.jpg",
                    "cropping": "130,0,646,516",
                    "photographer_name": "© Lakritsifestivaalit",
                    "alt_text": "Lakritsia taustalla ja edessä tapahtuman nimi",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/96422/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-25T10:38:06.136439Z",
            "last_modified_time": "2024-03-25T10:38:06.136456Z",
            "date_published": null,
            "start_time": "2024-10-25T21:01:00Z",
            "end_time": "2024-10-27T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": " Lakritsi- & Salmiakkifestivaalit",
                "sv": " Lakritsi- & Salmiakkifestivaalit",
                "en": " Lakritsi- & Salmiakkifestivaalit"
            },
            "description": {
                "fi": "<p>Lakritsi- &amp; Salmiakkifestivaaleilla ylistetään yhdessä maukasta mustaa kultaa. Festivaaleilla kävijät saavat kokea lakritsia monella eri tavalla.&nbsp;</p><p>Makeana, suolaisena, suklaan kera ja mausteena ruoanlaitossa ja leipomisessa. Maistellen, oppien lisää lakritsista ja löytäen uusia suosikkeja.<br><br>Wanha Satama<br>26.-27.10.2024</p>",
                "sv": "<p>Lakrits- &amp; Salmiakfestivalen är Finlands mötesplats för lakritsälskare sedan 2013, en fest fylld med goda smakupplevelser, spännande aktiviteter och ny kunskap om lakrits.&nbsp;<br><br>Wanha Satama<br>26.-27.10.2024</p>",
                "en": "<p>The Licorice Festival will be held in October at Wanha Satama premises.</p><p>At the Licorice Festival, the visitors learn to experience licorice in many different ways.\n</p><p>\nSweet, salty, with chocolate and as a spice in cooking and baking.&nbsp;</p><p>The fair is offering tasting, learning more about licorice and discovering new favourites.<br><br>Wanha Satama<br>26.-27.10.2024</p>"
            },
            "name": {
                "fi": " Lakritsi- & Salmiakkifestivaalit 2024",
                "sv": "Lakrits- & Salmiakfestivalen 2024",
                "en": "Licorice Festival in Helsinki 2024"
            },
            "info_url": {
                "fi": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                "sv": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit",
                "en": "https://lakritsbutiken.se/sidor/lakritsijasalmiakkifestivaalit"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Lakritsi- & Salmiakkifestivaaleilla ylistetään yhdessä maukasta mustaa kultaa. ",
                "sv": "Lakrits- & Salmiakfestivalen är Finlands mötesplats för lakritsälskare sedan 2013, en fest fylld med goda smakupplevelser, spännande aktiviteter och ny kunskap.",
                "en": "The Licorice Festival will be held in October at Wanha Satama premises."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhkmcxeq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghhkhpnoe",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21062/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4749/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5127/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "http://www.grandchampagnehelsinki.fi",
                        "en": "http://www.grandchampagnehelsinki.fi"
                    },
                    "price": {
                        "fi": "22-25€",
                        "en": "22-25€"
                    },
                    "description": {
                        "fi": "sisäänpääsylippu",
                        "en": "entrance fee"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 41890,
                    "license": "event_only",
                    "created_time": "2018-01-18T13:02:46.183742Z",
                    "last_modified_time": "2024-03-25T10:17:58.861305Z",
                    "name": "Grand Champagne Helsinki",
                    "url": "http://api.hel.fi/linkedevents/media/images/EssiAvellan_0025.jpg",
                    "cropping": "297,0,1278,981",
                    "photographer_name": "(c) Grand Champagne Helsinki",
                    "alt_text": "Nainen haistelee samppanjaa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41890/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-25T10:17:59.420123Z",
            "last_modified_time": "2024-03-25T10:17:59.420144Z",
            "date_published": null,
            "start_time": "2024-04-25T13:00:00Z",
            "end_time": "2024-04-27T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Ceesta",
                "en": "Ceesta"
            },
            "description": {
                "fi": "<p>Samppanja kupli kolmen päivän ajan Vanhalla Ylioppilastalolla, kun Grand Champagne -tapahtuma avaa ovensa kooten yhteen samppanjan ystävät, nautiskelijat ja alan huippunimet.</p><p>Yleisötapahtumassa samppanjan saloihin meitä johdattivat kotimaisten kärkinimien lisäksi ulkomaiset huippuasiantuntijat.</p><p>Vanhalla Ylioppilastalolla järjestettävässä rennossa ja tunnelmallisessa tapahtumassa pääsi maistelemaan niin tunnettuja samppanjaklassikoita kuin harvinaisempia herkkuja. Niiden ohella tapahtumassa on tarjolla samppanjaan sopivia herkkuja.</p><p>&nbsp;</p><p>Vanha ylioppilastalo</p><p>25.-27.4.2024</p><p>To 16.00-21.00</p><p>Pe 15.00-21.00</p><p>La 12.00-20.00</p><p>&nbsp;</p><p>Liput 22-25€, K-18</p>",
                "en": "<p>Bubbles fill the Old Student House in April bringing together champagne lovers, gourmands and top names in the industry.</p><p>The three-day event features experts sharing their know-how, passion and champagnes.&nbsp;</p><p>The Old Student House provides a relaxed atmosphere where you can taste well-known classics and classy rarities. Delicacies and snacks &nbsp;are available to enhance your experience.</p><p>You can also deepen and expand your knowledge by participating in various Master Classes held by local experts and prestigious guests from Champagne. The Master Classes are confined to a limited number of places and hence, should be booked in advance. A separate fee applies for the Master Classes.</p><p>&nbsp;</p><p>Old Student House</p><p>25.-27.4.2024</p><p>Thu 16.00-21.00</p><p>Fri 15.00-21.00</p><p>Sat 12.00-20.00</p><p>&nbsp;</p><p>Tickets 22-25€, age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Grand Champagne Helsinki 2024",
                "en": "Grand Champagne Helsinki 2024"
            },
            "info_url": {
                "fi": "http://www.grandchampagnehelsinki.fi",
                "en": "http://www.grandchampagnehelsinki.fi"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "short_description": {
                "fi": "Samppanja kupli kolmen päivän ajan Vanhalla Ylioppilastalolla, kun Grand Champagne -tapahtuma avaa ovensa kooten yhteen samppanjan ystävät",
                "en": "Bubbles fill the Old Student House in April bringing together champagne lovers, gourmands and top names in the industry. "
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghhkhpnoe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}