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=2&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=3&publisher=ytj%3A0586977-6",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&publisher=ytj%3A0586977-6"
    },
    "data": [
        {
            "id": "helsinki:aghqkpyvim",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.balticcircle.fi/",
                        "en": "https://www.balticcircle.fi/"
                    },
                    "info_url": {
                        "fi": "https://www.balticcircle.fi/",
                        "en": "https://www.balticcircle.fi/"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 77319,
                    "license": "cc_by",
                    "created_time": "2022-01-25T11:59:12.032489Z",
                    "last_modified_time": "2022-01-25T12:07:22.323683Z",
                    "name": "Esiintymislava",
                    "url": "http://api.hel.fi/linkedevents/media/images/Elokuva.jpg",
                    "cropping": "150,0,750,600",
                    "photographer_name": "Kuvituskuva",
                    "alt_text": "Esiintymislava",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/77319/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T09:59:31.411236Z",
            "last_modified_time": "2024-04-22T11:46:16.599885Z",
            "date_published": null,
            "start_time": "2024-11-21T22:01:00Z",
            "end_time": "2024-11-30T21: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_contact_info": null,
            "short_description": {
                "fi": "Kansainvälinen teatterifestivaali Baltic Circle järjestetään marraskuussa. ",
                "en": "The International Theatre Festival Baltic Circle will take place in Helsinki next November."
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Baltic Circle ry",
                "en": "Baltic Circle ry"
            },
            "name": {
                "fi": "Baltic Circle -teatterifestivaali 2024",
                "en": "Baltic Circle Theatre Festival 2024"
            },
            "info_url": {
                "fi": "https://www.balticcircle.fi/",
                "en": "https://www.balticcircle.fi/"
            },
            "description": {
                "fi": "<p>Kansainvälinen teatterifestivaali Baltic Circle järjestetään marraskuussa.&nbsp;</p><p>Runsaassa ohjelmistossa nähdään monipuolista ohjelmistoa, kuten ensi-iltoja, kansainvälisiä vierailuja, &nbsp;luentoja, työpajoja ja esityskonsertteja.</p><p>&nbsp;</p><p>Helsinki</p><p>22.-30.11.2024&nbsp;</p>",
                "en": "<p>The International Theatre Festival Baltic Circle will take place in Helsinki next November.</p><p>The rich program will feature premieres, international guest performances, lectures, workshops and performative concerts.</p><p>&nbsp;</p><p>Helsinki</p><p>22.-30.11.2024</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkpyvim/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqlhdeim",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10649/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16866/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/helsinkiphotofestival/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/helsinkiphotofestival/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/helphoto",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 96302,
                    "license": "event_only",
                    "created_time": "2023-09-11T10:54:14.684127Z",
                    "last_modified_time": "2023-09-11T10:54:50.800476Z",
                    "name": "Helsinki Photo Festival",
                    "url": "http://api.hel.fi/linkedevents/media/images/IMG_0402.jpg",
                    "cropping": "382,0,1898,1515",
                    "photographer_name": "Helsinki Photo Festival (c) Duong Nghiem",
                    "alt_text": "Valokuvanäyttely ulkona",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/96302/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T11:41:26.480680Z",
            "last_modified_time": "2024-04-22T11:41:26.480710Z",
            "date_published": null,
            "start_time": "2024-08-07T21:01:00Z",
            "end_time": "2024-09-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_contact_info": null,
            "short_description": {
                "fi": "Helsinki Photo Festival on valokuvalle omistettu kuvataidetapahtuma, joka tarjoaa yleisölle mahdollisuuden tutustua valokuvataiteeseen.",
                "sv": "Helsinki Photo Festival är ett visuellt konst-evenemang dedikerad åt fotografi för att öka allmänhetens tillgång till denna konstform. ",
                "en": "Helsinki Photo Festival is a visual arts event dedicated to photography giving more access to this art form to the public. "
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Helsinki Photo Festival ry",
                "sv": "Helsinki Photo Festival ry",
                "en": "Helsinki Photo Festival ry"
            },
            "name": {
                "fi": "Helsinki Photo Festival 2024",
                "sv": "Helsinki Photo Festival 2024",
                "en": "Helsinki Photo Festival 2024"
            },
            "info_url": {
                "fi": "http://www.helsinkiphotofestival.com",
                "sv": "http://www.helsinkiphotofestival.com",
                "en": "http://www.helsinkiphotofestival.com"
            },
            "description": {
                "fi": "<p>Helsinki Photo Festival on valokuvalle omistettu kuvataidetapahtuma, joka tarjoaa yleisölle mahdollisuuden tutustua valokuvataiteeseen. Vuodesta 2018 lähtien festivaali on yhdistänyt valokuvan harrastajat kaikenlaisista taustoista ja kaikenikäiset poikkeukselliseen ohjelmaan, jossa on näyttelyitä ja pedagogisia tapahtumia, jotka kouluttavat ja inspiroivat ihmisiä valokuvataiteesta.</p><p>Joka vuosi festivaali valitsee 50 avoimen haun voittajaa eri genreistä ympäri maailmaa. Kilpailun arvostelevat johtavat kansainväliset valokuvauksen ja koulutuksen asiantuntijat.&nbsp;</p><p><br>Helsinki&nbsp;</p><p>8.8.-30.9.2024<br>Vapaa pääsy</p>",
                "sv": "<p>Helsinki Photo Festival är ett visuellt konst-evenemang dedikerad åt fotografi för att öka allmänhetens tillgång till denna konstform.&nbsp;</p><p>Sedan 2018 har festivalen kopplat fotointresserade från alla bakgrunder och åldrar till ett enastående program med utställningar och pedagogiska evenemang för att utbilda och inspirera människor om fotografiets konst.</p><p>Varje år väljer festivalen ut 50 vinnare från olika genrer från hela världen. Tävlingen bedöms av ledande internationella experter inom fotografi och utbildning.&nbsp;<br>&nbsp;</p><p>Helsingfors&nbsp;</p><p>8.8.-30.9.2024</p><p>Fritt inträde</p>",
                "en": "<p>Helsinki Photo Festival is a visual arts event dedicated to photography giving more access to this art form to the public.&nbsp;</p><p>Since 2018 the festival connects photo enthusiasts of all backgrounds and ages to an exceptional program with exhibitions and pedagogical events to educate and inspire people about the art of photography.</p><p>Every year the festival selects 50 open call winners from different genres from around the world. The contest is judged by leading international experts in the field of photography and education.&nbsp;<br>&nbsp;</p><p>Helsinki&nbsp;</p><p>8.8.-30.9.2024</p><p>Free entry</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlhdeim/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqlgl65u",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3453/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/assemblyparty",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/assemblyparty/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/assemblyparty",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.tiketti.fi/assembly-summer-2024-helsingin-messukeskus-helsinki-lippuja/97766",
                        "en": "https://www.tiketti.fi/assembly-summer-2024-helsingin-messukeskus-helsinki-lippuja/97766"
                    },
                    "info_url": {
                        "fi": "https://www.tiketti.fi/assembly-summer-2024-helsingin-messukeskus-helsinki-lippuja/97766",
                        "en": "https://www.tiketti.fi/assembly-summer-2024-helsingin-messukeskus-helsinki-lippuja/97766"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 89562,
                    "license": "event_only",
                    "created_time": "2023-02-07T12:25:22.052518Z",
                    "last_modified_time": "2023-02-07T12:26:49.944510Z",
                    "name": "Assembly Winter",
                    "url": "http://api.hel.fi/linkedevents/media/images/TuulaYlikorpi_ASMs2016-9436.jpg",
                    "cropping": "310,0,1538,1227",
                    "photographer_name": "Assembly Winter (c) Tuula Ylikorpi",
                    "alt_text": "Katsomo ja pelaajia",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/89562/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T11:38:16.696276Z",
            "last_modified_time": "2024-04-22T11:38:16.696298Z",
            "date_published": null,
            "start_time": "2024-07-31T21:01:00Z",
            "end_time": "2024-08-04T20: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_contact_info": null,
            "short_description": {
                "fi": "Assembly Summer on pelaamisen ja digitaalisen kulttuurin festivaali, joka järjestetään vuosittain elokuussa Messukeskuksessa.",
                "en": "The biggest digital culture and gaming festival in Finland, Assembly Summer  will be held in August at Messukeskus."
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Assembly Organizing Oy",
                "en": "Assembly Organizing Oy"
            },
            "name": {
                "fi": "Assembly Summer 2024",
                "en": "Assembly Winter 2024"
            },
            "info_url": {
                "fi": "https://assembly.org/events/summer24",
                "en": "https://assembly.org/events/summer24"
            },
            "description": {
                "fi": "<p>Assembly Summer on pelaamisen ja digitaalisen kulttuurin festivaali, joka järjestetään vuosittain elokuussa Messukeskuksessa.</p><p>Assemblyilla pelataan, tavataan kavereita, seurataan monipuolista ohjelmaa, osallistutaan itse peliturnauksiin ja aktiviteetteihin sekä tutustutaan näytteilleasettajien osastoihin.<br>&nbsp;</p><p>Messukeskus</p><p>1.-4.8.2024</p><p>Liput Tiketistä</p>",
                "en": "<p>The biggest digital culture and gaming festival in Finland, Assembly Summer &nbsp;will be held in August at Messukeskus.</p><p>The program includes esports, digital art, seminars, arcade games and much more.&nbsp;&nbsp;<br>&nbsp;</p><p>Messukeskus<br>1.-4.8.2024</p><p>Tickets from Tiketti, no age limit</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlgl65u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqlcikxu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/espoo:798/?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"
                }
            ],
            "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/hazewavefestival/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.hazewavefestival.com/#tickets",
                        "en": "https://www.hazewavefestival.com/#tickets"
                    },
                    "info_url": {
                        "fi": "https://www.hazewavefestival.com/#tickets",
                        "en": "https://www.hazewavefestival.com/#tickets"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 90552,
                    "license": "event_only",
                    "created_time": "2023-03-09T13:04:48.742516Z",
                    "last_modified_time": "2023-03-09T13:05:39.556708Z",
                    "name": "Kuvituskuva",
                    "url": "http://api.hel.fi/linkedevents/media/images/Veneretki-ja-juhlaviikot_Ju.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "Kuvituskuva: Helsinki Partners (c) Juha Valkeajoki / Sherpa",
                    "alt_text": "Ihmisiä kävelemässä juomat käsissä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/90552/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-04-22T11:20:18.383534Z",
            "last_modified_time": "2024-04-22T11:20:18.383556Z",
            "date_published": null,
            "start_time": "2024-07-25T21:01:00Z",
            "end_time": "2024-07-27T20: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_contact_info": null,
            "short_description": {
                "fi": "Haze Wave Festival -olutfestivaali tekee paluun ensi heinäkuussa, kun se valtaa Espoon Otaniemen. ",
                "en": "In July, international and Finnish breweries take over Helsinki, when the craft beer festival Haze Wave Festival takes place in Helsinki."
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Haze Wave Festival ",
                "en": "Haze Wave Festival "
            },
            "name": {
                "fi": "Haze Wave Festival 2024",
                "en": "Haze Wave Festival 2024"
            },
            "info_url": {
                "fi": "https://www.hazewavefestival.com/",
                "en": "https://www.hazewavefestival.com/"
            },
            "description": {
                "fi": "<p>Haze Wave Festival -olutfestivaali tekee paluun ensi heinäkuussa, kun se valtaa Espoon Otaniemen. Festivaalipaikkana on hylätty entinen tutkimuslaboratorio, jonka päähalli on nyt ensimmäistä kertaa koskaan valjastettu tapahtumakäyttöön. Lisäksi tarjolla on heinäkuisen sään kunniaksi myös iso ulkoalue, erilliset DJ-huoneet, sekä paljon muita huoneita tutkittavaksi… Ja myös sauna?</p><p>Haze Wave Festival tarjoaa tuttuun tapaan mediassakin kohua nostattaneen “almost all inclusive” -lipputyypin, joka sisältää 50x pieniä oluen maisteluannoksia per päivä. Lisäksi uutuutena tänä vuonna on mahdollista ostaa myös sisäänpääsy juomalipukkeiden kera, joka takaa sisäänpääsyn edullisempaan hintaan, ja juomalipukkeita voi ostaa päivän mittaan lisää paikan päältä.</p><p>Tapahtumaan tulee 40+ panimoa ympäri maailman, 300+ olutta, 15+ DJ:tä…</p><p>Tapahtumasta löytyy myös Suomen parhaita ruokarekkoja, viinintuottajia, tislaamoita, tatuointiartisteja, taiteilijoita…</p><p>&nbsp;</p><p>Otaniemi, Espoo</p><p>26.-27.7.2024</p>",
                "en": "<p>The Haze Wave Festival beer festival will make a comeback next July, when it will take over Espoo's Otaniemi.&nbsp;</p><p>The festival venue is an abandoned former research laboratory, whose main hall has now been harnessed for event use for the first time ever.&nbsp;</p><p>In addition, in honour of the July weather, there is also a large outdoor area, separate DJ rooms, and many other rooms to explore... And also a sauna?</p><p>As usual, Haze Wave Festival offers the \"almost all inclusive\" ticket type, which has caused a stir in the media, which includes 50x small beer tasting portions per day.&nbsp;</p><p>In addition, as a novelty this year, it is also possible to pay admission fee with separate drink tickets, which guarantees entry at a cheaper price, and more drink tickets can be bought on site throughout the day.</p><p>The event will feature 40+ breweries from around the world, 300+ beers, 15+ DJs...</p><p>Also the festival features food trucks, wine producers, distilleries, tattoo artists etc.</p><p>&nbsp;</p><p>Otaniemi, Espoo</p><p>26.-27.7.2024</p><p>More information will be announced later&nbsp;</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlcikxu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqk63rlq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:9355/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23218/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/electricfestivalfin",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.lippu.fi/summer-sound-festival",
                        "en": "https://www.lippu.fi/summer-sound-festival"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/summer-sound-festival",
                        "en": "https://www.lippu.fi/summer-sound-festival"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 48274,
                    "license": "event_only",
                    "created_time": "2018-11-05T13:36:38.273236Z",
                    "last_modified_time": "2022-11-03T07:30:35.154333Z",
                    "name": "Helsinki",
                    "url": "http://api.hel.fi/linkedevents/media/images/Page-1-Alternative-Helsinki_mWv80xN.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Helsinki Partners (c) Jussi Hellsten",
                    "alt_text": "Yleiskuva Helsingistä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/48274/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-04-22T11:05:27.146520Z",
            "last_modified_time": "2024-04-22T11:05:27.146540Z",
            "date_published": null,
            "start_time": "2024-07-19T15:00:00Z",
            "end_time": "2024-07-21T02: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_contact_info": null,
            "short_description": {
                "fi": "Legendaarinen Kaapelitehdas muuntautuu kahden päivän ajaksi elektronisen musiikin spektaakkeliksi",
                "en": "For two days, the legendary Cable Factory will turn into an electronic music spectacle that provides just the right ambience for the clubbers and artists. "
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Summer Sound Festival",
                "en": "Summer Sound Festival"
            },
            "name": {
                "fi": "Summer Sound Festival 2024",
                "en": "Summer Sound Festival 2024"
            },
            "info_url": {
                "fi": "https://www.facebook.com/electricfestivalfin",
                "en": "https://www.facebook.com/electricfestivalfin"
            },
            "description": {
                "fi": "<p>Legendaarinen Kaapelitehdas muuntautuu kahden päivän ajaksi elektronisen musiikin spektaakkeliksi, joka tarjoaa oikeat puitteet tapahtumaan saapuville bailaajille ja artisteille.&nbsp;</p><p>Summer Sound Festival kokoaa yhteen ihmiset nauttimaan kansainvälisten supertähtien esiintymisistä, hyvästä teknisestä tuotannosta sekä aidosta festivaalitunnelmasta keskellä Helsinkiä.&nbsp;</p><p>Tämän vuoden teemana on “Magical Forest Edition”.</p><p>&nbsp;</p><p>Kaapelitehdas<br>19.-20.7.2024</p><p>La-su 18.00-05.00</p><p>Liput Lippupisteestä, K-18</p>",
                "en": "<p>For two days, the legendary Cable Factory will turn into an electronic music spectacle that provides just the right ambience for the clubbers and artists.&nbsp;</p><p>The Summer Sound Festival &nbsp;will bring people together to enjoy performances by international superstars, good technical production and a real festival atmosphere in the middle of Helsinki. The event will see the world’s brightest electronic music artists from both the international and domestic fields.</p><p>This year's theme is “Magical Forest Edition”.</p><p>&nbsp;</p><p>Cable Factory<br>19.-20.7.2024</p><p>Tickets from Lippupiste, age limit 18 yrs</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqk63rlq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqk4kymu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14380/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "http://www.facebook.com/helsinkichamber",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "http://www.instagram.com/helsinkichamber",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.helsinkichamber.com",
                        "sv": "https://www.helsinkichamber.com",
                        "en": "https://www.helsinkichamber.com"
                    },
                    "info_url": {
                        "fi": "https://www.helsinkichamber.com",
                        "sv": "https://www.helsinkichamber.com",
                        "en": "https://www.helsinkichamber.com"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 93168,
                    "license": "event_only",
                    "created_time": "2023-06-16T12:59:37.901740Z",
                    "last_modified_time": "2024-04-22T10:54:24.840741Z",
                    "name": "Helsinki Chamber Music Festival",
                    "url": "http://api.hel.fi/linkedevents/media/images/HCMF_2022.jpg",
                    "cropping": "330,0,1651,1320",
                    "photographer_name": "© Anna-Maria Viksten",
                    "alt_text": "Ihmisiä vierekkäin soittimet kädessä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/93168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T10:54:25.395279Z",
            "last_modified_time": "2024-04-22T10:54:25.395312Z",
            "date_published": null,
            "start_time": "2024-07-02T21:01:00Z",
            "end_time": "2024-07-06T20: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_contact_info": null,
            "short_description": {
                "fi": "Helsinki Chamber Music Festival on kansainvälinen kamarimusiikkifestivaali, joka järjestetään Helsingissä vuosittain heinäkuussa.",
                "sv": "Helsinki Chamber Music Festival, ett sommarevenemang specialiserat sig på kammarmusik, erbjuder återigen minnesvärda konsertstunder",
                "en": "Finnish and international artists will bring memorable chamber music experiences to the Finnish capital"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Helsinki Chamber ry",
                "sv": "Helsinki Chamber ry",
                "en": "Helsinki Chamber ry"
            },
            "name": {
                "fi": "Helsinki Chamber Music Festival 2024",
                "sv": "Helsinki Chamber Music Festival 2024",
                "en": "Helsinki Chamber Music Festival 2024"
            },
            "info_url": {
                "fi": "http://www.helsinkichamber.com/",
                "sv": "https://www.helsinkichamber.com",
                "en": "https://www.helsinkichamber.com"
            },
            "description": {
                "fi": "<p>Helsinki Chamber Music Festival on kansainvälinen kamarimusiikkifestivaali, joka järjestetään Helsingissä vuosittain heinäkuussa.</p><p>Urbaanin kesätapahtuman ystäville tarjotaan mieleenpainuvia kamarimusiikkihetkiä kansainvälisten ja kotimaisten taiteilijoiden esittäminä. Festivaalin näyttämöinä toimivat pääkaupungin historiallinen ympäristö ja ydinkeskusta jugendtyylisine saleineen. Mielenkiintoinen ohjelma, yleisöystävällisyys sekä maltilliset lippujen hinnat ovat olennainen osa tätä vuosittain järjestettävää tapahtumaa.<br><br>Helsinki<br>3.-6.7.2024</p>",
                "sv": "<p>Helsinki Chamber Music Festival, ett sommarevenemang specialiserat sig på kammarmusik, erbjuder återigen minnesvärda konsertstunder med inhemska och utländska artister.&nbsp;</p><p>Helsinki Chamber Music Festival utspelas på scener i huvudstadens historiska miljö och i stadskärnan med sina unika Jugendsalar.&nbsp;</p><p>Intressant program, publikvänlighet och måttliga biljettpriser präglar den årligen återkommande festivalen.<br><br>Helsingfors<br>3.-6.7.2024</p>",
                "en": "<p>Finnish and international artists will bring memorable chamber music experiences to the Finnish capital, delighting all friends of urban summer events at a wide variety of venues in the historic surroundings and downtown districts of the city, and focusing particularly on its unique art nouveau concert halls.&nbsp;</p><p>A fascinating programme, audience-friendliness and reasonable ticket prices are integral aspects of this annual event.<br><br>Helsinki<br>3.-6.7.2024</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqk4kymu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqk2hmsa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2851/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 88560,
                    "license": "event_only",
                    "created_time": "2023-01-17T10:30:11.986024Z",
                    "last_modified_time": "2023-01-17T10:32:11.864138Z",
                    "name": "Helsinki Biennaali",
                    "url": "http://api.hel.fi/linkedevents/media/images/Vallisaari5_Matti_Pyykk%C3%B6_Helsinki_Biennaali.jpg",
                    "cropping": "270,0,1350,1081",
                    "photographer_name": "© Matti Pyykkö/Helsinki Biennial",
                    "alt_text": "Kallioinen ranta ja keltaisia kukkia.",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/88560/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T10:45:13.503359Z",
            "last_modified_time": "2024-04-22T10:45:13.503381Z",
            "date_published": null,
            "start_time": "2025-06-11T21:01:00Z",
            "end_time": "2025-09-21T20: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_contact_info": null,
            "short_description": {
                "fi": "Helsinki Biennaali on kahden vuoden välein toistuva kansainvälinen kuvataidetapahtuma",
                "sv": "Helsingforsbiennalen är ett internationellt bildkonstevenemang som visar samtidskonst av hög kvalitet på Skanslandet och på HAM Helsingfors konstmuseum.",
                "en": "Helsinki Biennial is an international art event that brings outstanding contemporary art to Vallisaari Island and HAM Helsinki Art Museum."
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Helsingin taidemuseo HAM",
                "sv": "Helsingfors konstmuseum HAM",
                "en": "HAM Helsinki Art Museum"
            },
            "name": {
                "fi": "Helsinki Biennaali 2025",
                "sv": "Helsingforsbiennalen 2025",
                "en": "Helsinki Biennial 2025"
            },
            "info_url": {
                "fi": "https://helsinkibiennaali.fi/",
                "sv": "https://helsinkibiennaali.fi/sv/",
                "en": "https://helsinkibiennaali.fi/en/"
            },
            "description": {
                "fi": "<p>Helsinki Biennaali on kahden vuoden välein toistuva kansainvälinen kuvataidetapahtuma, joka tuo korkeatasoisen nykytaiteen Vallisaareen ja HAM Helsingin taidemuseoon.&nbsp;</p><p>&nbsp;</p><p>Helsinki</p><p>12.6.-21.9.2025</p>",
                "sv": "<p>Helsingforsbiennalen är ett internationellt bildkonstevenemang som visar samtidskonst av hög kvalitet på Skanslandet och på HAM Helsingfors konstmuseum.</p><p>&nbsp;</p><p>Helsingfors</p><p>12.6.-21.9.2025</p>",
                "en": "<p>Helsinki Biennial is an international art event that brings outstanding contemporary art to Vallisaari Island and HAM Helsinki Art Museum.</p><p>&nbsp;</p><p>Helsinki</p><p>12.6.-21.9.2025</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqk2hmsa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkyrulq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20861/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2851/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://m.facebook.com/urbfestivaali",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/urbfestivaali/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://kiasma.fi/festivaalit/urb24/",
                        "en": "https://kiasma.fi/en/festivals/urb24/"
                    },
                    "info_url": {
                        "fi": "https://kiasma.fi/festivaalit/urb24/",
                        "en": "https://kiasma.fi/en/festivals/urb24/"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 92354,
                    "license": "event_only",
                    "created_time": "2023-05-16T07:48:00.529558Z",
                    "last_modified_time": "2024-04-22T10:37:52.649285Z",
                    "name": "URB -festivaali",
                    "url": "http://api.hel.fi/linkedevents/media/images/URB-23-fb-cover-photo.jpg",
                    "cropping": "100,0,500,400",
                    "photographer_name": "Kiasma-teatteri (c) Jelena Jankovic",
                    "alt_text": "Ihminen istumassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/92354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T10:37:53.125399Z",
            "last_modified_time": "2024-04-22T10:37:53.125420Z",
            "date_published": null,
            "start_time": "2024-06-02T21:01:00Z",
            "end_time": "2024-06-09T20: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_contact_info": null,
            "short_description": {
                "fi": "URB –festivaali tuo monimuotoisen kattauksen kansainvälistä nuorta taidetta Kiasmaan ja ympäri kaupunkia.",
                "en": "Kiasma Theatre’s annual festival of urban art and culture will be held for the 25th time this year."
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Kiasma-teatteri",
                "en": "Kiasma Theatre"
            },
            "name": {
                "fi": "URB 24 -festivaali",
                "en": "URB 24 Festival"
            },
            "info_url": {
                "fi": "https://kiasma.fi/festivaalit/urb24/",
                "en": "https://kiasma.fi/en/festivals/urb24/"
            },
            "description": {
                "fi": "<p>URB –festivaali esittelee jatkuvasti muuttuvan kaupunki- ja nuorisokulttuurin vaikutusta nykytaiteen eri muotoihin.</p><p>&nbsp;</p><p>mm. Kiasma-teatteri</p><p>3.-9.6.2024</p>",
                "en": "<p>Kiasma Theatre’s annual festival of urban art and culture will be held for the 25th time this year.</p><p>&nbsp;</p><p>Helsinki: Kiasma Theatre + several locations</p><p>3.-9.6.2024</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkyrulq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkwqdyq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20909/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/suomenlinnankesateatteri/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": " 23-47,50€"
                    },
                    "info_url": {
                        "fi": "https://www.ryhmateatteri.fi/liput"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 92095,
                    "license": "event_only",
                    "created_time": "2023-05-04T10:37:32.622774Z",
                    "last_modified_time": "2023-05-04T10:38:54.425257Z",
                    "name": "Suomenlinna",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kuninkaanportti_Kes%C3%A4_2013_D.jpg",
                    "cropping": "381,0,1899,1518",
                    "photographer_name": "Helsinki Partners / Suomenlinnan hoitokunta (c) Dorit Salutskij",
                    "alt_text": "Kuninkaanportti ja ihmisiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/92095/?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-22T10:28:56.404385Z",
            "last_modified_time": "2024-04-22T10:28:56.404419Z",
            "date_published": null,
            "start_time": "2024-06-06T16:00:00Z",
            "end_time": "2024-08-31T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 7,
            "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_contact_info": null,
            "short_description": {
                "fi": "Ryhmäteatteri: Suomenlinnan Don Quijote ja tragikoomillinen transformaatio"
            },
            "location_extra_info": {
                "fi": "Hyvän omantunnon linnake"
            },
            "provider": {
                "fi": "Ryhmäteatteri"
            },
            "name": {
                "fi": "Suomenlinnan Don Quijote"
            },
            "info_url": {
                "fi": "https://ryhmateatteri.fi/ohjelmisto/suomenlinnan-don-quijote-ja-tragikoomillinen-transformaatio/"
            },
            "description": {
                "fi": "<p>Ryhmäteatteri: Suomenlinnan Don Quijote ja tragikoomillinen transformaatio</p><p>Ryhmäteatteri vie Miguel de Cervantesin klassikkoteoksen parodisen tyylin aivan uusille kierroksille.</p><p>Alfonso Quijanolla menee yhtäkkiä todellisuus ja mielikuvitus sekaisin hänen luettua liikaa ritarikirjoja. Ja niin vaihtuu nimi Don Quijoteksi ja vaatteet ruosteiseksi haarniskaksi. Kun pian on löytynyt ratsu, aseenkantaja ja tarvittava rakastettukin, jonka puolesta taistella, on peloton haaveilijamme valmis lyötäväksi ritariksi. Mutta onko maailma siihen valmis? Tai siis työryhmä ja yleisö.</p><p>Ryhmäteatterilaiset eivät vain herätä henkiin Miguel de Cervantesin kirjoittaman maailmankuulun veijariromaanin ikonisia hahmoja, vaan myös esittelevät yleisölle aivan uudenlaisen teatterin tekemisen metodin: tragikoomillisen transformaation. Metodi ei ole ryhmisläisillä vielä aivan hallussa, ja mukaan esitykseen ilmestyykin hahmo, joka ei ole Cervantesin luoma, vaan tuttu erään saarivaltion edesmenneen näytelmäkirjailijan tragedioista…</p><p>Juha Kukkosen dramatisointi ja ohjaus tuo Cervantesin klassikkoteoksen uuteen valoon ja vie sen parodisen tyylin aivan uusille kierroksille.</p><p>&nbsp;</p><p>Suomenlinnan kesäteatteri</p><p>6.6.-31.8.2024</p><p>Liput 23-47,50€ Ryhmäteatterista, ikäsuositus 12+</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkwqdyq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqktyzju",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 79898,
                    "license": "cc_by",
                    "created_time": "2022-05-16T11:20:26.496978Z",
                    "last_modified_time": "2022-05-16T11:25:04.935493Z",
                    "name": "Kuvituskuva",
                    "url": "http://api.hel.fi/linkedevents/media/images/Nayttely.jpg",
                    "cropping": "150,0,750,600",
                    "photographer_name": "Linked Events -kuvituskuva",
                    "alt_text": "Ihmisiä taidenäyttelyssä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/79898/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T10:17:01.023259Z",
            "last_modified_time": "2024-04-22T10:17:01.023291Z",
            "date_published": null,
            "start_time": "2024-05-17T21:01:00Z",
            "end_time": "2024-05-18T20: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_contact_info": null,
            "short_description": {
                "fi": "Kansainvälinen museopäivä on vuosittain toukokuussa järjestettävä museoiden yhteinen päivä, joka on suunnattu kaikille museoiden asiakkaille. ",
                "en": "The international Museum Day is held yearly in May."
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Suomen museoliitto",
                "en": "Finnish Museums Association"
            },
            "name": {
                "fi": "Kansainvälinen museopäivä 2024",
                "en": "Internetional Museum Day 2024"
            },
            "info_url": {
                "fi": "https://icomfinland.fi/2024/03/16/kansainvalinen-museopaiva-18-5-2024/",
                "en": "https://icomfinland.fi/2024/03/16/kansainvalinen-museopaiva-18-5-2024/"
            },
            "description": {
                "fi": "<p>Kansainvälinen museopäivä on vuosittain toukokuussa järjestettävä museoiden yhteinen päivä, joka on suunnattu kaikille museoiden asiakkaille.&nbsp;</p><p>Vuoden 2024 teema ”Museot, koulutus ja tutkimus” korostaa kulttuurilaitosten ratkaisevaa roolia kokonaisvaltaisen koulutuskokemuksen tarjoamisessa. Kansainvälinen museopäivä ajaa kohti tietoisempaa, kestävämpää ja osallistavampaa maailmaa.<br>&nbsp;</p><p>Eri museoiden tapahtumatarjonta päivän aikana vaihtelee, niitä voivat olla esim. museoiden näyttelyt, virtuaaliopastukset, kesänäyttelyiden avautumiset, luentotilaisuudet, esitelmät ja työpajat. Usein päivän viettoon on kuulunut myös ilmaisen sisäänpääsyn tarjoaminen. Lisätietoa saa museoiden omilta verkkosivuilta.</p><p>&nbsp;</p><p>Helsinki / Suomi</p><p>18.5.2024</p>",
                "en": "<p>The international Museum Day is held yearly in May.</p><p>The 2024 theme \"Museums, education and research\" emphasizes the crucial role of cultural institutions in providing a comprehensive educational experience.</p><p>&nbsp;International Museum Day drives towards a more aware, sustainable and inclusive world.</p><p>&nbsp;</p><p>The special program of the day consists of exhibitions, workshops, guided tours and/or free access to museums.</p><p>More information about the day's program can be seen on museums' own websites.&nbsp;</p><p>&nbsp;</p><p>Helsinki / Finland</p><p>18.5.2024</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqktyzju/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkr4xuy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20895/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p19242/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.linnanmaki.fi/",
                        "en": "https://www.linnanmaki.fi/en/"
                    },
                    "info_url": {
                        "fi": "https://www.linnanmaki.fi/",
                        "en": "https://www.linnanmaki.fi/en/"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 90509,
                    "license": "event_only",
                    "created_time": "2023-03-08T11:59:32.840540Z",
                    "last_modified_time": "2023-03-08T12:00:19.791043Z",
                    "name": "iik!week",
                    "url": "http://api.hel.fi/linkedevents/media/images/3a008157-7e34-4989-b368-f56.jpg",
                    "cropping": "167,0,836,669",
                    "photographer_name": "Linnanmäki / iik!week",
                    "alt_text": "Kummitushahmoja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/90509/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-04-22T10:08:49.074136Z",
            "last_modified_time": "2024-04-22T10:08:49.074157Z",
            "date_published": null,
            "start_time": "2024-09-05T21:01:00Z",
            "end_time": "2024-09-29T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 12,
            "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_contact_info": null,
            "short_description": {
                "fi": "Linnanmäen kauhufestivaali iik!week tarjoaa hurjia kauhukohteita, huvipuistossa vaeltavia painajaismaisia hahmoja, karmivia esiintyjiä ",
                "en": "The horror festival iik!week at Linnanmäki Amusement Park offers horrifying program, salty and sweet treats and much more. "
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Linnanmäen huvipuisto",
                "en": "Linnanmäki Amusement Park"
            },
            "name": {
                "fi": "iik!week 2024",
                "en": "iik!week 2024"
            },
            "info_url": {
                "fi": "https://www.linnanmaki.fi/fi/hupitekemista/tapahtumat/iik-week-2",
                "en": "https://www.linnanmaki.fi/en/"
            },
            "description": {
                "fi": "<p>Linnanmäen kauhufestivaali iik!week tarjoaa hurjia kauhukohteita, huvipuistossa vaeltavia painajaismaisia hahmoja, karmivia esiintyjiä sekä hirveän hyviä makeita ja suolaisia herkkuja.</p><p>&nbsp;</p><p>Linnanmäen huvipuisto</p><p>6.-29.9.2024</p><p>Aukioloajat tarkentuvat myöhemmin, suositusikäraja 12+</p>",
                "en": "<p>The horror festival iik!week at Linnanmäki Amusement Park offers horrifying program, salty and sweet treats and much more.&nbsp;</p><p>&nbsp;</p><p>Linnanmäki Amusement Park&nbsp;</p><p>6.-29.9.2024</p><p>The opening hours will be released later, age recommendation 12+</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkr4xuy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkmkcki",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3065/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/Etnosoifestival",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/etnosoi/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/etnosoifestival",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://www.etnosoi.fi/",
                        "en": "https://www.etnosoi.fi/"
                    },
                    "info_url": {
                        "fi": "https://www.etnosoi.fi/",
                        "en": "https://www.etnosoi.fi/"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 70446,
                    "license": "event_only",
                    "created_time": "2021-05-31T09:15:57.613860Z",
                    "last_modified_time": "2021-05-31T09:19:12.704366Z",
                    "name": "Etnosoi!",
                    "url": "http://api.hel.fi/linkedevents/media/images/ES_Lankalogo2.jpg",
                    "cropping": "0,0,1000,1000",
                    "photographer_name": "Etnosoi! (c) Fredrik Bäck",
                    "alt_text": "Lankakerä ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/70446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T09:44:25.434606Z",
            "last_modified_time": "2024-04-22T09:44:25.434625Z",
            "date_published": null,
            "start_time": "2024-10-31T22:01:00Z",
            "end_time": "2024-11-10T21: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_contact_info": null,
            "short_description": {
                "fi": "Maailman eri musiikkikulttuureita juhliva Etnosoi! festivaali järjestetään pääkaupunkiseudulla  marraskuussa. ",
                "en": "The annual Etnosoi! Festival celebrating different musical cultures from around the world will be organized in the Helsinki Metropolitan area next November."
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Maailman musiikin keskus",
                "en": "Maailman musiikin keskus"
            },
            "name": {
                "fi": "Etnosoi!-festivaali 2024",
                "en": "Etnosoi! Festival 2024"
            },
            "info_url": {
                "fi": "https://www.etnosoi.fi/",
                "en": "https://www.etnosoi.fi/"
            },
            "description": {
                "fi": "<p>Maailman eri musiikkikulttuureita juhliva Etnosoi! festivaali järjestetään pääkaupunkiseudulla marraskuussa. Festivaali tarjoaa koskettavia ja värikkäitä elämyksiä eri puolita maailmaa.&nbsp;</p><p>&nbsp;</p><p>Helsinki</p><p>1.-10.11.2024</p>",
                "en": "<p>The annual Etnosoi! Festival celebrating different musical cultures from around the world will be organized in the Helsinki Metropolitan area in November.</p><p>&nbsp;</p><p>Helsinki</p><p>1.-10.11.2024</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkmkcki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqklt4qu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20895/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "20/47€",
                        "sv": "20/47€",
                        "en": "20/47€"
                    },
                    "info_url": {
                        "fi": "https://www.linnanmaki.fi",
                        "sv": "https://www.linnanmaki.fi",
                        "en": "https://www.linnanmaki.fi"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 39333,
                    "license": "event_only",
                    "created_time": "2017-09-29T10:32:58.502233Z",
                    "last_modified_time": "2024-04-22T09:41:23.189752Z",
                    "name": "Valokarnevaali",
                    "url": "http://api.hel.fi/linkedevents/media/images/20141011_2000_L1020849_4378.jpg",
                    "cropping": "324,0,1596,1272",
                    "photographer_name": "Helsinki Partners (c) Jussi Hellsten",
                    "alt_text": "Linnanmäen maailmanpyörä Rinkeli",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/39333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T09:41:23.727190Z",
            "last_modified_time": "2024-04-22T09:41:23.727211Z",
            "date_published": null,
            "start_time": "2024-10-10T21:01:00Z",
            "end_time": "2024-10-20T20: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_contact_info": null,
            "short_description": {
                "fi": "Linnanmäen kauden päätösviikko sytyttää huvipuiston kirkkaaseen loimuun, kun lokakuun Valokarnevaali kylvettää kävijöitä puiston tuhansien lamppujen loisteessa",
                "sv": "Under säsongens avslutningsvecka lyser nöjesparken upp i ett klart sken. Under ljuskarnevalen i oktober badar nöjesparksbesökarna i ett ljus",
                "en": "The Carnival of Lights at Linnanmäki illuminates Helsinki's legendary amusement park on the closing week of the summer-long season. "
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Linnanmäki",
                "sv": "Linnanmäki",
                "en": "Linnanmäki"
            },
            "name": {
                "fi": "Valokarnevaali 2024",
                "sv": "Ljuskarneval 2024",
                "en": "Carnival of Lights 2024"
            },
            "info_url": {
                "fi": "https://www.linnanmaki.fi/fi/hupitekemista/tapahtumat/valokarnevaali-2",
                "sv": "https://www.linnanmaki.fi/",
                "en": "https://www.linnanmaki.fi"
            },
            "description": {
                "fi": "<p>Linnanmäen kauden päätösviikko sytyttää huvipuiston kirkkaaseen loimuun, kun lokakuun Valokarnevaali kylvettää kävijöitä puiston tuhansien lamppujen loisteessa.&nbsp;</p><p>Jokaisena tapahtumapäivänä on luvassa laadukasta viihdettä sekä isolle että pienemmälle karnevaalikansalle, kun Lintsin lavoille nousee toinen toistaan valovoimaisempia esiintyjiä.&nbsp;</p><p>Kaikki huvipuiston palvelut panevat parastaan tarjoten iloisen elämyksen hämärtyvään syksyyn.</p><p>&nbsp;</p><p>Linnanmäen huvipuisto</p><p>11.-20.10.2024</p>",
                "sv": "<p>Under säsongens avslutningsvecka lyser nöjesparken upp i ett klart sken.&nbsp;</p><p>Under ljuskarnevalen i oktober badar nöjesparksbesökarna i ett ljus från tusentals lampor. Varje dag under evenemanget bjuds det på underhållning av hög kvalitet för yngre och äldre, då populära artister uppträder på Borgbackens estrader.&nbsp;</p><p>Samtliga attraktioner i nöjesparken ger sitt bästa och bjuder på skojiga upplevelser i höstmörkret.&nbsp;</p><p>&nbsp;</p><p>Borgbackens nöjespark</p><p>11.-20.10.2024</p>",
                "en": "<p>The Carnival of Lights at Linnanmäki illuminates Helsinki's legendary amusement park on the closing week of the summer-long season.&nbsp;</p><p>Visitors are entertained throughout the carnival by quality entertainment for older and younger audiences alike, as brilliant performers take to the stage. All of the services at the amusement park show their best to provide a fun experience as the winter approaches.&nbsp;</p><p>&nbsp;</p><p>Linnanmäki Amusement Park</p><p>11.-20.10.2024</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqklt4qu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkkpwwm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:9355/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p21932/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/rvdexpo/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "Aikuiset 10 €, alle 18-vuotiaat maksutta. Eläkeläiset, opiskelijat ja varusmiehet 8 €.",
                        "en": "10€ adults, 8€ students and pensioners, Free entrance for under 18 year old"
                    },
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 106128,
                    "license": "event_only",
                    "created_time": "2024-02-28T07:50:04.211776Z",
                    "last_modified_time": "2024-02-28T07:56:52.056951Z",
                    "name": "Vintagea, designia, retroa ja antiikkia Kaapelitehtaalla pääsiäisenä",
                    "url": "http://api.hel.fi/linkedevents/media/images/1Y3A4571_WW3Z1ws.jpg",
                    "cropping": "288,0,1440,1153",
                    "photographer_name": "ExpoNova",
                    "alt_text": "Vintagetyylisesti pukeutunut nainen tutustuu Helsinki Retro & Vintage Design Expon tarjontaan",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106128/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T09:36:27.325922Z",
            "last_modified_time": "2024-04-22T09:36:27.325942Z",
            "date_published": null,
            "start_time": "2024-10-19T07:00:00Z",
            "end_time": "2024-10-20T13: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": 4000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vintagen, designin, retron, antiikin, taiteen ja sisustuksen messutapahtuma",
                "en": "The Merikaapelihalli of the Cable Factory  is filled with the most charming vintage, brilliant retro and the Scandinavian design "
            },
            "location_extra_info": {
                "fi": "Merikaapelihalli",
                "en": "Merikaapelihalli"
            },
            "provider": {
                "fi": "ExpoNova",
                "en": "ExpoNova"
            },
            "name": {
                "fi": "Helsinki Retro & Vintage Design Expo II/2024",
                "en": "Helsinki Retro & Vintage Design Expo II/2024"
            },
            "info_url": {
                "fi": "http://www.exponova.fi",
                "en": "http://www.exponova.fi"
            },
            "description": {
                "fi": "<p>Vintagen, designin, retron, antiikin, taiteen ja sisustuksen messutapahtuma</p><p>HRVDE tarjoaa messuvieraille vintagea, retroa, antiikkia, designia, keräilykohteita, sisustusta, taidetta, nostalgiaa ja mummolan muistoja yli sadankauppiaan valikoimista.</p><p>Myynnissä on mm. 20-80-lukujen kalusteita, valaisimia, lasia, keramiikkaa, koruja, industriaalia, vintage-vaatteita, asusteita, sisustustekstiilejä, julisteita, postikortteja, lehtiä, kirjoja, leluja, levyjä, vintage-audiolaitteita, taidetta, sisustusta, ja paljon muuta - pallomekoista pastilleihin ja tattikulhoista tynelleihin!</p><p>&nbsp;</p><p>Kaapelitehdas, Merikaapelihalli<br>19.-20.10.2024</p><p>La klo 10-17, su klo 10-16</p><p>Sisäänpääsy 10/8€, alle 18-v. vapaa pääsy</p>",
                "en": "<p>The Merikaapelihalli of the Cable Factory &nbsp;is filled with the most charming vintage, brilliant retro and the Scandinavian design from golden era of the 20th century.</p><p>The event has more than 100 exhibitors offering selection for those who are enthusiastic of vintage dressing as well as for design lovers.</p><p>The supply of Finnish, Swedish and Estonian traders focuses on vintage and retro products from 1920's to 1980's. Stands are filled with variety of old and nostalgia products, the best vintage!</p><p>&nbsp;</p><p>Cable Factory, Merikaapelihalli Hall<br>19.-20.10.2024</p><p>Fri-Sat 10.00-17.00</p><p>Sun 10.00-16.00</p><p>Admission fee 8/10€, under 18 yrs free entry</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkkpwwm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkinqmi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3466/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8319/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/autotapahtuma",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "http://auto.messukeskus.com",
                        "en": "http://auto.messukeskus.com"
                    },
                    "info_url": {
                        "fi": "http://auto.messukeskus.com",
                        "en": "http://auto.messukeskus.com"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 41713,
                    "license": "event_only",
                    "created_time": "2018-01-11T08:21:55.442305Z",
                    "last_modified_time": "2022-10-17T12:09:25.862000Z",
                    "name": "Auto-messut",
                    "url": "http://api.hel.fi/linkedevents/media/images/AUTO_AUTO_374.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Messukeskus",
                    "alt_text": "Ihmisiä ja autoja messuilla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41713/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-04-22T09:27:25.037747Z",
            "last_modified_time": "2024-04-22T09:27:25.037769Z",
            "date_published": null,
            "start_time": "2025-03-13T22:01:00Z",
            "end_time": "2025-03-16T21: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_contact_info": null,
            "short_description": {
                "fi": "Auto -tapahtuma tarjoaa nähtävää ja koettavaa koko perheelle. Luvassa on monipuolista ohjelmaa, aina tämän hetken kuumimmista artisteista",
                "en": "Auto event offers something for everyone. The event has a diverse programme, ranging from top artists to unique automotive experiences. "
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Messukeskus Helsinki",
                "en": "Messukeskus Helsinki"
            },
            "name": {
                "fi": "Auto 2025",
                "en": "Auto 2025"
            },
            "info_url": {
                "fi": "http://auto.messukeskus.com/",
                "en": "http://auto.messukeskus.com"
            },
            "description": {
                "fi": "<p>Auto -tapahtuma tarjoaa nähtävää ja koettavaa koko perheelle. Luvassa on monipuolista ohjelmaa, aina tämän hetken kuumimmista artisteista erikoisiin autoiluelämyksiin. Messuilla käydään myös keskusteluja autoilun ja liikenteen ajankohtaisista aiheista.</p><p>&nbsp;</p><p>Messukeskus</p><p>14.-16.3.2025</p>",
                "en": "<p>Auto event offers something for everyone. The event has a diverse programme, ranging from top artists to unique automotive experiences. The event also features topical discussions on cars and traffic.</p><p>&nbsp;</p><p>Messukeskus</p><p>14.-16.3.2025</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkinqmi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkhlxla",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11469/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6231/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/venemessut/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "https://vene.messukeskus.com/",
                        "sv": "https://vene.messukeskus.com/",
                        "en": "https://vene.messukeskus.com/"
                    },
                    "info_url": {
                        "fi": "https://vene.messukeskus.com/",
                        "sv": "https://vene.messukeskus.com/",
                        "en": "https://vene.messukeskus.com/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 98863,
                    "license": "event_only",
                    "created_time": "2023-11-02T07:43:58.251546Z",
                    "last_modified_time": "2024-04-22T09:22:47.591008Z",
                    "name": "Vene Båt -messut",
                    "url": "http://api.hel.fi/linkedevents/media/images/2M1A1230.jpg",
                    "cropping": "382,0,1898,1515",
                    "photographer_name": "Helsingin Messukeskus (c) Pekka Hannila",
                    "alt_text": "Veneitä ja ihmisiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/98863/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T09:22:48.291113Z",
            "last_modified_time": "2024-04-22T09:22:48.291133Z",
            "date_published": null,
            "start_time": "2025-02-06T22:01:00Z",
            "end_time": "2025-02-16T21: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_contact_info": null,
            "short_description": {
                "fi": "10 päivää veneitä, veneilyä ja vesielämää Helsingin kansainvälisillä Vene Båt -venemessuilla! ",
                "sv": "Båtmässan erbjuder fantastiska upplevelser för båtfolk, vattenentusiaster och fiskare.",
                "en": "Vene Båt is one of the largest boating event in the Northern Europe. "
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Messukeskus Helsinki",
                "sv": "Messukeskus Helsinki",
                "en": "Messukeskus Helsinki"
            },
            "name": {
                "fi": "Vene 25 Båt",
                "sv": "Vene 25 Båt",
                "en": "Vene 25 Båt"
            },
            "info_url": {
                "fi": "https://vene.messukeskus.com/",
                "sv": "https://vene.messukeskus.com/",
                "en": "https://vene.messukeskus.com/"
            },
            "description": {
                "fi": "<p>10 päivää veneitä, veneilyä ja vesielämää Helsingin kansainvälisillä Vene Båt -venemessuilla!&nbsp;</p><p>Pohjois-Euroopan suurin veneilytapahtuma Vene Båt on venekansan oma perinteikäs kohtaamispaikka, jossa vaihtaa kokemuksia, viihtyä, vertailla ja tehdä ostoksia. Perinne jatkuu Venemessujen kanssa, olit sitten veneilijä, purjehtija, kalastaja, suppailija tai mökkeilijä.&nbsp;</p><p>Tule mukaan kokemaan kesän merkit ja avaamaan uusi kausi upean tunnelman saattelemana. Venemessujen näytteilleasettajien tarjonnasta löytyy suosikit, uutuudet ja erikoisuudet erilaisiin tarpeisiin.&nbsp;</p><p>Esillä on vuosittain satoja erikokoisia ja -hintaisia veneitä, varusteita, tarvikkeita sekä kaikkea, mitä olet halunnut tietää veneilystä, kalastuksesta, sukelluksesta ja muista vesiharrastuksista.&nbsp;</p><p>Ohjelmassa on luvassa tarinoita, työnäytöksiä ja vinkkejä huippupuhujilta.</p><p>&nbsp;</p><p>Messukeskus<br>7.-16.2.2025</p>",
                "sv": "<p>Båtmässan erbjuder fantastiska upplevelser för båtfolk, vattenentusiaster och fiskare.<br>Helsingfors internationella båtmässa är en av de största båtmässor i norra Europa, där ett enormt antal båtar och allt som har med vattenhobby att göra presenteras.&nbsp;</p><p>Båtar från Finland är nummer ett bland importerade båtar och är mycket populära i Sverige. På mässan hittar du alla båtmärken och så gott som hela sortimentet!</p><p>&nbsp;</p><p>Messukeskus<br>7.-16.2.2025</p>",
                "en": "<p>Vene Båt is one of the largest boating event in the Northern Europe.&nbsp;</p><p>It gathers together hundreds of exhibitors and thousands of visitors. Vene Båt is an indoor boat show with emphasis on three major sectors: boating, fishing and water sports.</p><p>&nbsp;</p><p>Messukeskus<br>7.-16.2.2025</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkhlxla/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkgfyv4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38028/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "http://www.facebook.com/helsinginurkukesa",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "0-10€",
                        "sv": "0-10€",
                        "en": "0-10€"
                    },
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 44435,
                    "license": "event_only",
                    "created_time": "2018-05-21T12:25:15.637930Z",
                    "last_modified_time": "2022-05-16T11:43:02.181636Z",
                    "name": "Helsingin Urkukesä",
                    "url": "http://api.hel.fi/linkedevents/media/images/helsinki_paiva_004_6452.jpg",
                    "cropping": "319,0,1601,1282",
                    "photographer_name": "Helsinki Partners (c) Lauri Rotko",
                    "alt_text": "Tuomiokirkko",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/44435/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T09:17:37.338152Z",
            "last_modified_time": "2024-04-22T09:17:37.338175Z",
            "date_published": null,
            "start_time": "2024-06-09T21:01:00Z",
            "end_time": "2024-09-01T20: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_contact_info": null,
            "short_description": {
                "fi": "Helsingin Urkukesä -festivaali järjestetään jälleen normaaliin tapaan läpi kesän jatkuvilla konserttisarjoilla. ",
                "sv": "Helsingfors Orgelsommar är musikfestivalen, som fyller kyrkorna årligen i centrum med förnäma konserter.",
                "en": "Helsinki Organ Summer is one of the largest festivals in Finland which fills yearly the churches of Helsinki city centre, Kallio District and Suomenlinna Sea "
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Helsingin Urkukesä",
                "sv": "Helsingfors Orgelsommar",
                "en": "Helsinki Organ Summer"
            },
            "name": {
                "fi": "Helsingin Urkukesä 2024",
                "sv": "Helsingfors Orgelsommar 2024",
                "en": "Helsinki Organ Summer 2024"
            },
            "info_url": {
                "fi": "https://www.urkukesa.fi/",
                "sv": "https://www.urkukesa.fi",
                "en": "https://www.urkukesa.fi"
            },
            "description": {
                "fi": "<p>Helsingin Urkukesä -festivaali järjestetään jälleen normaaliin tapaan läpi kesän jatkuvilla konserttisarjoilla.&nbsp;</p><p>Konsertteja järjestetään kesän aikana useissa eri keskustan kirkoissa sekä Suomenlinnassa.</p><p>&nbsp;</p><p>Helsinki</p><p>10.6.-1.9.2024</p><p>&nbsp;</p><p>Ohjelmatiedot tarkentuvat kevään aikana</p>",
                "sv": "<p>Helsingfors Orgelsommar är musikfestivalen, som fyller kyrkorna årligen i centrum med förnäma konserter.</p><p>Festivalen erbjuder båda dags- och kvällskonserter och samtidigt ger en god möjlighet att bekanta sig med Helsingfors vackra kyrkor.</p><p>&nbsp;</p><p>Helsingfors kyrkor<br>10.6.-1.9.2024</p><p>Mera information fås senare</p>",
                "en": "<p>Helsinki Organ Summer fills yearly the churches of Helsinki city centre with organ recitals.</p><p>The festival offers concerts during the summer days and nights and at the same time it is easy to learn to know the beautiful churches of Helsinki.</p><p>&nbsp;</p><p>Helsinki churches<br>10.6.-1.9.2024</p><p>More information coming soon</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkgfyv4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkdxcpa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21269/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/HelsinginKadentaitomessut/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "http://www.kadentaitomessut.fi",
                        "sv": "http://www.kadentaitomessut.fi",
                        "en": "http://www.kadentaitomessut.fi"
                    },
                    "info_url": {
                        "fi": "http://www.kadentaitomessut.fi",
                        "sv": "http://www.kadentaitomessut.fi",
                        "en": "http://www.kadentaitomessut.fi"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 40496,
                    "license": "event_only",
                    "created_time": "2017-11-30T09:27:38.008177Z",
                    "last_modified_time": "2022-02-07T13:20:56.446202Z",
                    "name": "Helsingin Kädentaitomessut",
                    "url": "http://api.hel.fi/linkedevents/media/images/Helmet-1.jpg",
                    "cropping": "240,0,1680,1440",
                    "photographer_name": "Mediapromessut",
                    "alt_text": "Puisia koruja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/40496/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-22T09:06:52.674449Z",
            "last_modified_time": "2024-04-22T09:06:52.674469Z",
            "date_published": null,
            "start_time": "2025-03-01T08:00:00Z",
            "end_time": "2025-03-02T14: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_contact_info": null,
            "short_description": {
                "fi": "Helsingin Kädentaitomessuilla yhdistyy hyvä suunnittelu, aidot materiaalit ja tekemisen taito. ",
                "sv": "Konsthantverkare, presentartiklar, inredningsartiklar, ett utbud på hobbymaterialer och arbetsredskap och mycket annat. ",
                "en": "Handicrafts from Finland, presents, interior decorations, accessories for both adults and children "
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Mediapro Finland Oy",
                "sv": "Mediapro Finland Oy",
                "en": "Mediapro Finland Oy"
            },
            "name": {
                "fi": "Helsingin kädentaitomessut 2025",
                "sv": "Hantverksmässa i Helsingfors 2025",
                "en": "Helsinki Handicraft Fair 2025"
            },
            "info_url": {
                "fi": "http://www.kadentaitomessut.fi",
                "sv": "http://www.kadentaitomessut.fi",
                "en": "http://www.kadentaitomessut.fi"
            },
            "description": {
                "fi": "<p>Helsingin Kädentaitomessuilla yhdistyy hyvä suunnittelu, aidot materiaalit ja tekemisen taito.&nbsp;</p><p>Kotimaiset kädentaitajat tarjoavat laadukkaita koriste- ja käyttöesineitä, yksilöllisiä vaatteita ja asusteita aikuisille ja lapsille, sekä paljon muuta.&nbsp;</p><p>Messuilla on mukana näytteilleasettajia eri puolilta Suomea.</p><p>&nbsp;</p><p>Wanha Satama<br>1.-2.3.2025</p><p>La 10.00-17.00</p><p>Su 10.00-16.00</p><p>Hintatiedot päivittyvät myöhemmin</p>",
                "sv": "<p>Konsthantverkare, presentartiklar, inredningsartiklar, ett utbud på hobbymaterialer och arbetsredskap och mycket annat.&nbsp;</p><p>Vinker till inredning, vackra föremål till hemmet eller som present. Personliga accesoarer för vuxna och barn, ideér, arbetsdemonstrationer och information.&nbsp;</p><p>På mässan finns deltagare från hela landet.</p><p>&nbsp;</p><p>Wanha Satama<br>1.-2.3.2025</p><p>Lö 10.00-17.00</p><p>Sö 10.00-16.00</p><p>Inträdesavgifterna informeras senare</p>",
                "en": "<p>Handicrafts from Finland, presents, interior decorations, accessories for both adults and children and also hobby materials, tools, information.&nbsp;</p><p>Exhibitors from all over Finland.</p><p>&nbsp;</p><p>Wanha Satama<br>1.-2.3.2025</p><p>Sat 10.00-17.00</p><p>Sun 10.00-16.00</p><p>Admission fees will be informed later</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkdxcpa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agg4k3qeh4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67814/?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:p1808/?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,
                    "price": {
                        "fi": "40€",
                        "sv": "40€",
                        "en": "40€"
                    },
                    "info_url": {
                        "fi": "https://coolhead.fi/CBGF-2024/",
                        "sv": "https://coolhead.fi/CBGF-2024/",
                        "en": "https://coolhead.fi/CBGF-2024/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 138319,
                    "license": "event_only",
                    "created_time": "2024-04-18T12:05:44.492568Z",
                    "last_modified_time": "2024-04-18T12:06:21.611732Z",
                    "name": "CoolHead Brewery",
                    "url": "http://api.hel.fi/linkedevents/media/images/CBGF-2021-12.jpg",
                    "cropping": "382,0,1898,1517",
                    "photographer_name": "(c) CoolHead Brewery",
                    "alt_text": "Terassi ja ilmapalloja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138319/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-20T07:32:18.144438Z",
            "last_modified_time": "2024-04-18T12:06:22.058159Z",
            "date_published": null,
            "start_time": "2024-07-05T12:00:00Z",
            "end_time": "2024-07-06T20: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_contact_info": null,
            "short_description": {
                "fi": "Craft Beer Garden Festivaalia juhlitaan heinäkuussa CoolHead Brew'n kesäterassilla Viikissä.",
                "sv": "Craft Beer Garden Festivalen firas i juli på CoolHead Brews uteservering i Vik.",
                "en": "Craft Beer Garden Festival will take place in July at Coolhead Taproom & Terrace in Viikki district."
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "CoolHead Brew",
                "sv": "CoolHead Brew",
                "en": "CoolHead Brew"
            },
            "name": {
                "fi": "Craft Beer Garden Festivaali 2024",
                "sv": "Craft Beer Garden Festival 2024",
                "en": "Craft Beer Garden Festivaali 2024"
            },
            "info_url": {
                "fi": "https://coolhead.fi/CBGF-2024/",
                "sv": "https://coolhead.fi/CBGF-2024/",
                "en": "https://coolhead.fi/CBGF-2024/"
            },
            "description": {
                "fi": "<p>Craft Beer Garden Festivaalia juhlitaan heinäkuussa CoolHead Brew'n kesäterassilla Viikissä.</p><p>Tapahtumassa pääsee nauttimaan maailmanluokan oluista, hyvästä musiikista sekä herkullisesta ruuasta.</p><p>&nbsp;</p><p>Coolhead Taproom &amp; Terrace</p><p>5.-6.7.2024</p><p>15.00-23.00</p><p>Early Bird 40€, K-18</p>",
                "sv": "<p>Craft Beer Garden Festivalen firas i juli på CoolHead Brews uteservering i Vik.<br><br>I evenemanget får man chansen att smaka på världsklassiga öl, bra musik och äta läcker mat.&nbsp;<br><br>Coolhead Taproom &amp; Terrace</p><p>5.-6.7.2024</p><p>15.00-23.00</p><p>Early Bird 40€<br><br>Åldersgräns: 18 år</p>",
                "en": "<p>Craft Beer Garden Festival will take place in July at Coolhead Taproom &amp; Terrace in Viikki district.</p><p>The Craft Beer Garden Festival is offering world class beers,good music and delicious food.&nbsp;</p><p>&nbsp;</p><p>Coolhead Taproom &amp; Terrace &nbsp;</p><p>5.-6.7.2024</p><p>15.00-23.00</p><p>Early Bird tickets 40€, age limit 18 yrs</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg4k3qeh4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghoxqk4du",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:732/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8025/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/openhousehelsinki/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/openhousehelsinki/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 69972,
                    "license": "event_only",
                    "created_time": "2021-04-19T11:46:21.134712Z",
                    "last_modified_time": "2022-05-02T06:44:17.976867Z",
                    "name": "Open House Helsinki",
                    "url": "http://api.hel.fi/linkedevents/media/images/fb-cover.jpg",
                    "cropping": "458,0,1462,1005",
                    "photographer_name": "Open House Helsinki (c) Kristo Vedenoja",
                    "alt_text": "Taloja ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/69972/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T11:11:41.604846Z",
            "last_modified_time": "2024-04-17T11:11:41.604863Z",
            "date_published": null,
            "start_time": "2024-05-15T21:01:00Z",
            "end_time": "2024-05-19T20: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_contact_info": null,
            "short_description": {
                "fi": "Open House Helsinki avaa ovet Helsingin kiehtoviin kohteisiin, joihin ei tavallisesti pääse.",
                "en": "Open House Helsinki presents some interesting architectural gems of Helsinki."
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "OpenHouse ry",
                "en": "OpenHouse ry"
            },
            "name": {
                "fi": "Open House Helsinki 2024",
                "en": "Open House Helsinki 2024"
            },
            "info_url": {
                "fi": "http://www.openhousehelsinki.fi",
                "en": "http://www.openhousehelsinki.fi"
            },
            "description": {
                "fi": "<p>Open House Helsinki avaa ovet Helsingin kiehtoviin kohteisiin, joihin ei tavallisesti pääse.</p><p>OpenHouseHelsinki järjestää opastettuja kierroksia kiinnostaviin rakennuksiin, sisätiloihin, kaupunkikohteisiin sekä uusiin ja vanhoihin arkkitehtuurikohteisiin. Kierroksille on vapaa pääsy, oppaina toimivat suunnittelijat ja asiantuntijat.</p><p>&nbsp;</p><p>Helsinki</p><p>16.-19.5.2024</p><p>Vapaa pääsy&nbsp;</p>",
                "en": "<p>Open House Helsinki presents some interesting architectural gems of Helsinki.</p><p>OpenHouseHelsinki is a fresh urban event, which unconfines spaces normally restricted to public. There are guided tours to interesting buildings, interiors, landmarks and old and more recent architectural destinations. The tours are powered by architects and other experts.</p><p>&nbsp;</p><p>Helsinki<br>16.-19.5.2024</p><p>Free entry</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghoxqk4du/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}