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=4&publisher=ytj%3A0586977-6
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 38450,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=5&publisher=ytj%3A0586977-6",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=3&publisher=ytj%3A0586977-6"
    },
    "data": [
        {
            "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,
            "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>"
            },
            "provider": {
                "fi": "Kiasma-teatteri",
                "en": "Kiasma Theatre"
            },
            "name": {
                "fi": "URB 24 -festivaali",
                "en": "URB 24 Festival"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "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."
            },
            "@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,
            "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>"
            },
            "provider": {
                "fi": "Ryhmäteatteri"
            },
            "name": {
                "fi": "Suomenlinnan Don Quijote"
            },
            "location_extra_info": {
                "fi": "Hyvän omantunnon linnake"
            },
            "short_description": {
                "fi": "Ryhmäteatteri: Suomenlinnan Don Quijote ja tragikoomillinen transformaatio"
            },
            "@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,
            "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>"
            },
            "provider": {
                "fi": "Suomen museoliitto",
                "en": "Finnish Museums Association"
            },
            "name": {
                "fi": "Kansainvälinen museopäivä 2024",
                "en": "Internetional Museum Day 2024"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "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."
            },
            "@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,
            "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>"
            },
            "provider": {
                "fi": "Linnanmäen huvipuisto",
                "en": "Linnanmäki Amusement Park"
            },
            "name": {
                "fi": "iik!week 2024",
                "en": "iik!week 2024"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "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. "
            },
            "@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,
            "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>"
            },
            "provider": {
                "fi": "Maailman musiikin keskus",
                "en": "Maailman musiikin keskus"
            },
            "name": {
                "fi": "Etnosoi!-festivaali 2024",
                "en": "Etnosoi! Festival 2024"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "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."
            },
            "@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,
            "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>"
            },
            "provider": {
                "fi": "Linnanmäki",
                "sv": "Linnanmäki",
                "en": "Linnanmäki"
            },
            "name": {
                "fi": "Valokarnevaali 2024",
                "sv": "Ljuskarneval 2024",
                "en": "Carnival of Lights 2024"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "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. "
            },
            "@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,
            "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>"
            },
            "provider": {
                "fi": "ExpoNova",
                "en": "ExpoNova"
            },
            "name": {
                "fi": "Helsinki Retro & Vintage Design Expo II/2024",
                "en": "Helsinki Retro & Vintage Design Expo II/2024"
            },
            "location_extra_info": {
                "fi": "Merikaapelihalli",
                "en": "Merikaapelihalli"
            },
            "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 "
            },
            "@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,
            "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>"
            },
            "provider": {
                "fi": "Messukeskus Helsinki",
                "en": "Messukeskus Helsinki"
            },
            "name": {
                "fi": "Auto 2025",
                "en": "Auto 2025"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "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. "
            },
            "@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,
            "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>"
            },
            "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"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "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. "
            },
            "@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,
            "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>"
            },
            "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"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "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 "
            },
            "@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,
            "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>"
            },
            "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"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "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 "
            },
            "@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,
            "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>"
            },
            "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"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "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."
            },
            "@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,
            "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>"
            },
            "provider": {
                "fi": "OpenHouse ry",
                "en": "OpenHouse ry"
            },
            "name": {
                "fi": "Open House Helsinki 2024",
                "en": "Open House Helsinki 2024"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "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."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghoxqk4du/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggy3cigka",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:29865/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/348588000926162",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 138158,
                    "license": "event_only",
                    "created_time": "2024-04-16T12:45:37.620313Z",
                    "last_modified_time": "2024-04-16T12:46:13.770253Z",
                    "name": "Ciao Ciao Festival",
                    "url": "http://api.hel.fi/linkedevents/media/images/432256521_12212791341221835.jpg",
                    "cropping": "324,0,1624,1300",
                    "photographer_name": "(c) Ciao Ciao Festival",
                    "alt_text": "Katunäkymä ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2024-02-09T11:03:04.025870Z",
            "last_modified_time": "2024-04-16T12:54:04.201684Z",
            "date_published": null,
            "start_time": "2024-05-25T09:00:00Z",
            "end_time": "2024-05-26T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "out",
            "audience_min_age": null,
            "audience_max_age": 0,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 5000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://circoloitaliano.fi/",
                "sv": "https://circoloitaliano.fi/",
                "en": "https://circoloitaliano.fi/"
            },
            "description": {
                "fi": "<p>Ciao Ciao Festival on poikkeuksellinen tapahtuma, joka juhlii italialaista kulttuuria, musiikkia ja ruokaa, toimien sillanrakentajana italian ja suomalaisen kulttuurin välillä.&nbsp;</p><p>Italialaisen suurlähetystön Suomessa tukemana ja Italian kulttuuri-instituutin sekä Helsingin kaupungin tuella tapahtuma on osa myös Helsingin ruokaviikkojen tapahtumakokonaisuutta. Helsingin italiantunnilla opiskelevat opettajat tukevat myös tapahtumaa.</p><p>Festivaalin ohjelma tarjoaa ilmapiirin, joka muistuttaa italialaisen aukion tunnelmaa, jossa voi ostaa ruokaa ja käsitöitä kotiin vietäväksi. Paikan päällä voi nauttia pizzaa, jäätelöä ja aperitiiveja samalla kun kuuntelee livemusiikkia ja katsomalla nykytanssin ja kansantanssin esityksiä. Lisäksi järjestetään erilaisia työpajoja ja harrastustoimintaa.</p><p>Tänä vuonna kaikki festivaaliin osallistujat voivat myös voittaa upean puutarhakaasugrillin omalle pizzanvalmistukselleen, aivan kuten oikeassa pizzeriassa.</p><p>&nbsp;</p><p>Kansalaistori &amp; &nbsp;Keskustakirjasto Oodi</p><p>25.-26.5.2024</p><p>La klo 12-20, su klo 11-18</p><p>Vapaa pääsy</p>",
                "sv": "<p>Ciao Ciao Festival erbjuder italiensk kultur, konst och framför allt läcker mat.</p><p>Samla din familj och dina vänner för att njuta av den italienska atmosfären på Ciao Ciao Festival.&nbsp;</p><p>&nbsp;</p><p>Medborgartorget</p><p>25.-26.5.2024</p><p>Lö kl 12-20, sö kl 11-18</p><p>Fritt inträde</p>",
                "en": "<p>Ciao Ciao Festival is an exceptional event that celebrates Italian culture, music and food, forming a bridge between Italian and Finnish cultures.</p><p>Supported by the Italian Embassy in Finland and with the support of the Italian Cultural Institute and the City of Helsinki, the event is also part of the Helsinki Food Weeks. Teachers studying at the Italian class in Helsinki also support the event.</p><p>&nbsp;The festival program offers an atmosphere reminiscent of an Italian square, where you can buy food and handicrafts to take home.&nbsp;</p><p>On the spot you can enjoy pizza, ice cream and aperitifs while listening to live music and watching contemporary and folk dance performances.&nbsp;</p><p>In addition, various workshops and hobby activities are organized. This year, all festival participants can also win a gas grill to make pizzas, just like in a real pizzeria.<br>&nbsp;</p><p>Kansalaistori Square</p><p>25.-26.5.2024</p><p>Sat 12.00-20.00</p><p>Sun 11.00-18.00</p><p>Free entry</p>"
            },
            "provider": {
                "fi": "Italialaisten yhdistys Suomessa",
                "sv": "Italialaisten yhdistys Suomessa",
                "en": "Italialaisten yhdistys Suomessa"
            },
            "name": {
                "fi": "Ciao Ciao festivaali 2024",
                "sv": "Ciao Ciao Festival 2024",
                "en": "Ciao Ciao Festival 2024"
            },
            "location_extra_info": {
                "fi": "Kansalaistorilla sekä Oodin lipan alla ja sisällä",
                "sv": "samt biblioteket Ode",
                "en": "also Oodi Library"
            },
            "short_description": {
                "fi": "Ciao Ciao Festival on poikkeuksellinen tapahtuma, joka juhlii italialaista kulttuuria, musiikkia ja ruokaa",
                "sv": "Ciao Ciao Festival erbjuder italiensk kultur, konst och framför allt läcker mat.",
                "en": "Ciao Ciao Festival is an exceptional event that celebrates Italian culture, music and food, forming a bridge between Italian and Finnish cultures."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggy3cigka/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghmyfryde",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3917/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137964,
                    "license": "event_only",
                    "created_time": "2024-04-11T07:35:35.623202Z",
                    "last_modified_time": "2024-04-11T07:36:31.660970Z",
                    "name": "Kasarmitorin kesä",
                    "url": "http://api.hel.fi/linkedevents/media/images/kasarmitorinkesa-19-1.jpg",
                    "cropping": "382,0,1898,1516",
                    "photographer_name": "Kuvituskuva (c) Camilla Bloom / Helsingin kaupunki",
                    "alt_text": "Ihmisiä terassilla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137964/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-11T07:36:32.033920Z",
            "last_modified_time": "2024-04-11T07:36:32.033937Z",
            "date_published": null,
            "start_time": "2024-05-07T13:00:00Z",
            "end_time": "2024-05-07T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.hel.fi/fi/yritykset-ja-tyo/yritykset-ja-yrittajat/matkailutoiminta/matkailun-tapahtumat"
            },
            "description": {
                "fi": "<p>Matkailu ja tapahtumat ovat olennainen osa Helsinkiä. Ne rikastavat paikallisten palvelutarjontaa, tuovat tuhansia työpaikkoja ja verotuloja sekä ylläpitävät kattavia yhteyksiä ulkomaille.</p><p>Mitä Helsingin matkailulle ja tapahtumille kuuluu? Miten ala on palautunut pandemiasta ja miten sota vaikuttaa? Miten matkailua ja tapahtumia kehitetään jatkossa? Miten kaupunki saavuttaa tavoitteensa olla maailman kestävin matkakohde?</p><p>&nbsp;</p><p>Internet, Teams</p><p>7.5.2024</p><p>16.00-17.30</p><p>&nbsp;</p><p>Ohjelma:<br>Matkailun tilanne kaupungissa<br>Matkailupäällikkö Nina Vesterinen</p><p>Kestävän matkailun edistäminen<br>Erityissuunnittelija Jukka Punamäki</p><p>Tapahtumien tilanne kaupungissa<br>Projektipäällikkö Päivi Munther</p><p>Kestävien tapahtumien edistäminen<br>Markkinointisuunnittelija Anni Kostamovaara</p><p>Helsingin kaupungin osallisuustyön edistyminen ja OmaStadin tulokset<br>Kehittämispäällikkö Kirsi Verkka</p><p>Osallisuustyön eteneminen matkailussa ja tapahtumissa<br>Jukka Punamäki ja Anni Kostamovaara</p><p>Keskustelua</p><p>&nbsp;</p><p>tapahtuma on kaikille avoin eikä vaadi etukäteisilmoittautumista.</p><p>Tilaisuus on suomenkielinen. Se tallennetaan ja julkaistaan myöhemmin Helsinki-kanavalla</p>"
            },
            "provider": {
                "fi": ""
            },
            "name": {
                "fi": "Webinaari: Matkailu ja tapahtumat Helsingissä"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Matkailu ja tapahtumat ovat olennainen osa Helsinkiä."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmyfryde/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghmxorrre",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:35521/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kultus:17/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38044/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/share/sioNeUj9e522tbh2/?mibextid=9l3rBW",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137901,
                    "license": "cc_by",
                    "created_time": "2024-04-09T12:36:26.616353Z",
                    "last_modified_time": "2024-04-09T12:39:38.255694Z",
                    "name": "У сні мені марілось небо-3.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/%D0%A3_%D1%81%D0%BD%D1%96_%D0%BC%D0%B5%D0%BD%D1%96_%D0%BC%D0%B0%D1%80%D1%96%D0%BB%D0%BE%D1%81%D1%8C_%D0%BD%D0%B5%D0%B1%D0%BE-3.jpg",
                    "cropping": "362,0,1804,1442",
                    "photographer_name": "",
                    "alt_text": "ukrainalaisen lied-musiikin konsertti",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137901/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-11T05:56:01.045085Z",
            "last_modified_time": "2024-04-11T05:56:01.045103Z",
            "date_published": null,
            "start_time": "2024-04-21T15:00:00Z",
            "end_time": "2024-04-21T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.facebook.com/share/sioNeUj9e522tbh2/?mibextid=9l3rBWKonserttiohjelma koostuu ukrainalaisista pianolle ja lauluäänelle sävelletyistä kappaleista, pääosin säveltäjiltä Mykola Lysenko (1842-1912) ja Kyrylo Stetsenko (1882-1922). Suuri osa lauluista on sävelletty Ukrainan kansallisrunoilijan Taras Ševtšenkon teksteihin. Esillä on myös mm. naisrunoilija Dniprova Tšaika, oikealta nimeltään Ljudmyla Vasylevska.    Konsertissa kuullaan oululaista lied-duoa. Tetyana Kushniruk on ukrainalainen Oulun ammattikorkeakoulusta valmistunut pianisti, joka esiintyy ja opettaa pääosin Oulussa. Iida-Marja Kleine on helsinkiläissyntyinen altto, joka opiskelee klassista laulua myöskin Oulun ammattikorkeassa. Duo työsti tätä konserttiohjelmaa maaliskuussa Oulun musiikkijuhlien kamarimusiikin mestarikurssilla pianisti Keval Shahin ohjauksessa.    Konserttiohjelman valmistamista on tukenut Otto A. Malmin lahjoitusrahasto.",
                "en": "https://www.facebook.com/share/sioNeUj9e522tbh2/?mibextid=9l3rBW"
            },
            "description": {
                "fi": "<p>Lauluja Ukrainasta - ukrainalaisen lied-musiikin konsertti</p><p>Konserttiohjelma koostuu ukrainalaisista pianolle ja lauluäänelle sävelletyistä kappaleista romantiikan ajalta.</p><p>&nbsp;</p><p>Konserttiohjelma koostuu ukrainalaisista pianolle ja lauluäänelle sävelletyistä kappaleista, pääosin säveltäjiltä Mykola Lysenko (1842-1912) ja Kyrylo Stetsenko (1882-1922). Suuri osa lauluista on sävelletty Ukrainan kansallisrunoilijan Taras Ševtšenkon teksteihin. Esillä on myös mm. naisrunoilija Dniprova Tšaika, oikealta nimeltään Ljudmyla Vasylevska.</p><p>&nbsp;</p><p>Konsertissa kuullaan oululaista lied-duoa. Tetyana Kushniruk on ukrainalainen Oulun ammattikorkeakoulusta valmistunut pianisti, joka esiintyy ja opettaa pääosin Oulussa. Iida-Marja Kleine on helsinkiläissyntyinen altto, joka opiskelee klassista laulua myöskin Oulun ammattikorkeassa. Duo työsti tätä konserttiohjelmaa maaliskuussa Oulun musiikkijuhlien kamarimusiikin mestarikurssilla pianisti Keval Shahin ohjauksessa.</p><p>&nbsp;</p><p>Käpylän kirkko</p><p>19.4.2024&nbsp;</p><p>19.00-20.00</p><p>&nbsp;</p><p>Alppilan kirkko</p><p>21.4.2024&nbsp;</p><p>18.00-19.00</p><p>&nbsp;</p><p>Vapaa pääsy, ohjelma 10 €</p>",
                "en": "<p>Songs from Ukraine - A concert of Ukrainian art song</p><p>Ukrainian art songs composed for voice and piano from the romantic period in the late 19th century</p><p>The concert program consists of Ukrainian art songs composed by Mykola Lysenko, Kyrylo Stetsenko and Yakiv Stepovyi. Most of the songs are set to poems by Taras Shevchenko, but also other writers will be heard, such as Dniprova Chaika and Lesia Ukrainka. Shevchenko is regarded as the founder of modern Ukrainian literary language, whereas Lysenko is often deemed to be the father of Ukrainian classical music.</p><p>The concert is held by a lied duo from Oulu. Ukrainian pianist Tetyana Kushniruk studied at Oulu University of Applied Sciences and currently teaches and regularly performs in the city. The Helsinki born contralto Iida-Marja Kleine’s voice studies at the same school are ongoing.</p><p>&nbsp;</p><p>Käpylä Church</p><p>19.4.2024</p><p>19.00-20.00</p><p>&nbsp;</p><p>&nbsp;Alppila Church</p><p>21.4.2024</p><p>18.00-19.00</p><p>Free entrance, program 10 €</p>"
            },
            "provider": {
                "fi": "Kallion seurakunta",
                "en": "Kallio parish"
            },
            "name": {
                "fi": "Lauluja Ukrainasta",
                "en": "Songs from Ukraine "
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "short_description": {
                "fi": "Lauluja Ukrainasta - ukrainalaisen lied-musiikin konsertti",
                "en": "Songs from Ukraine - A concert of Ukrainian art song"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmxorrre/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghl2dir3i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74250/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dij3m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dimui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2din3a/?format=api"
                }
            ],
            "images": [
                {
                    "id": 137829,
                    "license": "event_only",
                    "created_time": "2024-04-08T09:31:16.409653Z",
                    "last_modified_time": "2024-04-08T09:32:11.319586Z",
                    "name": "Bambi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi.jpg",
                    "cropping": "330,0,1654,1323",
                    "photographer_name": "HEO (c) Joel Levänen",
                    "alt_text": "Tekstiä ruskealla pohjalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-08T09:32:14.181977Z",
            "last_modified_time": "2024-04-08T09:32:14.181999Z",
            "date_published": null,
            "start_time": "2024-04-09T16:00:00Z",
            "end_time": "2024-04-12T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://heokulta.fi/about/"
            },
            "description": {
                "fi": "<p>Bambi - kaikki mikä lakkaa kasvamasta, mätänee</p><p>Ympäristökirjallisuuden klassikko teatteripreesensissä.</p><p>Varis etsii triangeliaan, kaksi närheä avaavat ääntään ja harakka virittelee bassoaan suuren tammen alla. Niitty kerääntyy täyteen metsän väkeä, kun Skääk-kvartetti aloittaa illan numeronsa.</p><p>Bambi on tarina metsästä, jossa rauhallisen arjen voi hetkenä minä hyvänsä keskeyttää Hän. Silloin jokaisen on juostava henkensä edestä. Hengissä säilymisen edellytys on osata kuunnella metsää.</p><p>\"Hän ei voi olla kaikkivoipa kuten he sanovat. Hänestä ei ole peräisin se, mikä elää ja kasvaa. Hän ei ole meidän yläpuolellamme vaan meidän rinnallamme ja meidän kaltaisemme. Ymmärätkö minua, Bambi?\"</p><p>Sodassa jokainen voi olla sankari.</p><p>Esitys on HEOn Draama- ja näyttelijäntaidelinjan lopputyöproduktio.<br>Ohjaus ja dramatisointi Petra Pälmä.<br>&nbsp;</p><p>Tekstin talo, permantosali</p><p>5.-12.4.2024</p><p>&nbsp;</p><p>Esitykset:<br>5.4. klo19 ensi-ilta&nbsp;<br>6.4. / 7.4. / 9.4. / 10.4. / 12.4. klo 19<br>&nbsp;</p><p>Vapaaehtoinen maksu, kesto 2,5 h sis. väliajan<br>Lippuvaraukset: <a href=\"mailto:lippu.heodraama@gmail.com\">lippu.heodraama@gmail.com</a>&nbsp;</p>"
            },
            "provider": {
                "fi": ""
            },
            "name": {
                "fi": "Bambi"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Bambi - kaikki mikä lakkaa kasvamasta, mätänee"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dir3i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghl2din3a",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74250/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dir3i/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137829,
                    "license": "event_only",
                    "created_time": "2024-04-08T09:31:16.409653Z",
                    "last_modified_time": "2024-04-08T09:32:11.319586Z",
                    "name": "Bambi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi.jpg",
                    "cropping": "330,0,1654,1323",
                    "photographer_name": "HEO (c) Joel Levänen",
                    "alt_text": "Tekstiä ruskealla pohjalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-08T09:32:13.154999Z",
            "last_modified_time": "2024-04-08T09:32:13.155055Z",
            "date_published": null,
            "start_time": "2024-04-12T16:00:00Z",
            "end_time": "2024-04-12T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://heokulta.fi/about/"
            },
            "description": {
                "fi": "<p>Bambi - kaikki mikä lakkaa kasvamasta, mätänee</p><p>Ympäristökirjallisuuden klassikko teatteripreesensissä.</p><p>Varis etsii triangeliaan, kaksi närheä avaavat ääntään ja harakka virittelee bassoaan suuren tammen alla. Niitty kerääntyy täyteen metsän väkeä, kun Skääk-kvartetti aloittaa illan numeronsa.</p><p>Bambi on tarina metsästä, jossa rauhallisen arjen voi hetkenä minä hyvänsä keskeyttää Hän. Silloin jokaisen on juostava henkensä edestä. Hengissä säilymisen edellytys on osata kuunnella metsää.</p><p>\"Hän ei voi olla kaikkivoipa kuten he sanovat. Hänestä ei ole peräisin se, mikä elää ja kasvaa. Hän ei ole meidän yläpuolellamme vaan meidän rinnallamme ja meidän kaltaisemme. Ymmärätkö minua, Bambi?\"</p><p>Sodassa jokainen voi olla sankari.</p><p>Esitys on HEOn Draama- ja näyttelijäntaidelinjan lopputyöproduktio.<br>Ohjaus ja dramatisointi Petra Pälmä.<br>&nbsp;</p><p>Tekstin talo, permantosali</p><p>5.-12.4.2024</p><p>&nbsp;</p><p>Esitykset:<br>5.4. klo19 ensi-ilta&nbsp;<br>6.4. / 7.4. / 9.4. / 10.4. / 12.4. klo 19<br>&nbsp;</p><p>Vapaaehtoinen maksu, kesto 2,5 h sis. väliajan<br>Lippuvaraukset: <a href=\"mailto:lippu.heodraama@gmail.com\">lippu.heodraama@gmail.com</a>&nbsp;</p>"
            },
            "provider": {
                "fi": ""
            },
            "name": {
                "fi": "Bambi"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Bambi - kaikki mikä lakkaa kasvamasta, mätänee"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2din3a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghl2dimui",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74250/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dir3i/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137829,
                    "license": "event_only",
                    "created_time": "2024-04-08T09:31:16.409653Z",
                    "last_modified_time": "2024-04-08T09:32:11.319586Z",
                    "name": "Bambi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi.jpg",
                    "cropping": "330,0,1654,1323",
                    "photographer_name": "HEO (c) Joel Levänen",
                    "alt_text": "Tekstiä ruskealla pohjalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-08T09:32:12.845340Z",
            "last_modified_time": "2024-04-08T09:32:12.845364Z",
            "date_published": null,
            "start_time": "2024-04-10T16:00:00Z",
            "end_time": "2024-04-10T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://heokulta.fi/about/"
            },
            "description": {
                "fi": "<p>Bambi - kaikki mikä lakkaa kasvamasta, mätänee</p><p>Ympäristökirjallisuuden klassikko teatteripreesensissä.</p><p>Varis etsii triangeliaan, kaksi närheä avaavat ääntään ja harakka virittelee bassoaan suuren tammen alla. Niitty kerääntyy täyteen metsän väkeä, kun Skääk-kvartetti aloittaa illan numeronsa.</p><p>Bambi on tarina metsästä, jossa rauhallisen arjen voi hetkenä minä hyvänsä keskeyttää Hän. Silloin jokaisen on juostava henkensä edestä. Hengissä säilymisen edellytys on osata kuunnella metsää.</p><p>\"Hän ei voi olla kaikkivoipa kuten he sanovat. Hänestä ei ole peräisin se, mikä elää ja kasvaa. Hän ei ole meidän yläpuolellamme vaan meidän rinnallamme ja meidän kaltaisemme. Ymmärätkö minua, Bambi?\"</p><p>Sodassa jokainen voi olla sankari.</p><p>Esitys on HEOn Draama- ja näyttelijäntaidelinjan lopputyöproduktio.<br>Ohjaus ja dramatisointi Petra Pälmä.<br>&nbsp;</p><p>Tekstin talo, permantosali</p><p>5.-12.4.2024</p><p>&nbsp;</p><p>Esitykset:<br>5.4. klo19 ensi-ilta&nbsp;<br>6.4. / 7.4. / 9.4. / 10.4. / 12.4. klo 19<br>&nbsp;</p><p>Vapaaehtoinen maksu, kesto 2,5 h sis. väliajan<br>Lippuvaraukset: <a href=\"mailto:lippu.heodraama@gmail.com\">lippu.heodraama@gmail.com</a>&nbsp;</p>"
            },
            "provider": {
                "fi": ""
            },
            "name": {
                "fi": "Bambi"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Bambi - kaikki mikä lakkaa kasvamasta, mätänee"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dimui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghl2dij3m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74250/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dir3i/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 137829,
                    "license": "event_only",
                    "created_time": "2024-04-08T09:31:16.409653Z",
                    "last_modified_time": "2024-04-08T09:32:11.319586Z",
                    "name": "Bambi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Bambi.jpg",
                    "cropping": "330,0,1654,1323",
                    "photographer_name": "HEO (c) Joel Levänen",
                    "alt_text": "Tekstiä ruskealla pohjalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-08T09:32:12.135490Z",
            "last_modified_time": "2024-04-08T09:32:12.135514Z",
            "date_published": null,
            "start_time": "2024-04-09T16:00:00Z",
            "end_time": "2024-04-09T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://heokulta.fi/about/"
            },
            "description": {
                "fi": "<p>Bambi - kaikki mikä lakkaa kasvamasta, mätänee</p><p>Ympäristökirjallisuuden klassikko teatteripreesensissä.</p><p>Varis etsii triangeliaan, kaksi närheä avaavat ääntään ja harakka virittelee bassoaan suuren tammen alla. Niitty kerääntyy täyteen metsän väkeä, kun Skääk-kvartetti aloittaa illan numeronsa.</p><p>Bambi on tarina metsästä, jossa rauhallisen arjen voi hetkenä minä hyvänsä keskeyttää Hän. Silloin jokaisen on juostava henkensä edestä. Hengissä säilymisen edellytys on osata kuunnella metsää.</p><p>\"Hän ei voi olla kaikkivoipa kuten he sanovat. Hänestä ei ole peräisin se, mikä elää ja kasvaa. Hän ei ole meidän yläpuolellamme vaan meidän rinnallamme ja meidän kaltaisemme. Ymmärätkö minua, Bambi?\"</p><p>Sodassa jokainen voi olla sankari.</p><p>Esitys on HEOn Draama- ja näyttelijäntaidelinjan lopputyöproduktio.<br>Ohjaus ja dramatisointi Petra Pälmä.<br>&nbsp;</p><p>Tekstin talo, permantosali</p><p>5.-12.4.2024</p><p>&nbsp;</p><p>Esitykset:<br>5.4. klo19 ensi-ilta&nbsp;<br>6.4. / 7.4. / 9.4. / 10.4. / 12.4. klo 19<br>&nbsp;</p><p>Vapaaehtoinen maksu, kesto 2,5 h sis. väliajan<br>Lippuvaraukset: <a href=\"mailto:lippu.heodraama@gmail.com\">lippu.heodraama@gmail.com</a>&nbsp;</p>"
            },
            "provider": {
                "fi": ""
            },
            "name": {
                "fi": "Bambi"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Bambi - kaikki mikä lakkaa kasvamasta, mätänee"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghl2dij3m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}