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 weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

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=helsinki

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 super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

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

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

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 /v1/event/?format=api&page=1230
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 26999,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1231",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1229"
    },
    "data": [
        {
            "id": "helmet:265759",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8269/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3332,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-16T14:28:42.767783Z",
                    "last_modified_time": "2024-02-06T13:38:21.481086Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{052EDCAB-1A1B-47E3-B576-09244D8C1909}/104990",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3332/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2023-08-16T14:33:45.404098Z",
            "last_modified_time": "2023-10-26T07:22:18.598584Z",
            "date_published": "2023-08-16T12:49:40.403000Z",
            "start_time": "2023-09-25T07:00:00Z",
            "end_time": "2023-09-25T09:00: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Enter ry:n seniorit antavat maksutonta ja henkilökohtaista vertaisopastusta tietokoneiden, tablettien ja kännyköiden käytössä.<br> Ota mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat!</p><p>Opastusta 11.9.–4.12.2023 parittomien viikkojen maanantaisin klo 10–12</p><p>Varaa aika numerosta 09 310 85001.</p><p>Tervetuloa!</p><p> <a href=\"https://www.helmet.fi/pasilankirjasto\">Pasilan kirjasto</a> </p>"
            },
            "name": {
                "fi": "Enter ry:n digiopastus senioreille"
            },
            "short_description": {
                "fi": "Enter ry:n seniorit antavat maksutonta ja henkilökohtaista vertaisopastusta tietokoneiden, tablettien ja kännyköiden käytössä."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265759/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268329",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8220/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10821/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4791,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-15T13:40:18.002899Z",
                    "last_modified_time": "2024-02-06T13:38:03.562134Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{6BC1EF6F-971F-4486-B604-3B8DCF773325}/38282",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4791/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2023-09-15T13:44:03.115256Z",
            "last_modified_time": "2023-10-26T06:22:43.960910Z",
            "date_published": "2023-09-15T12:39:33.687000Z",
            "start_time": "2023-09-25T07:00:00Z",
            "end_time": "2023-09-25T08:00: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tarjolla kysymyksiä, arvoituksia, sanahakuja, ym. huviksi ja hyödyksi. </p><p> <em> <strong>Syksyllä 2023 Muistikerho kokoontuu kerran viikossa maanantaina klo 10-11!</strong> </em> </p><p>Tervetuloa mukaan aivojumppaan!<br> </p>"
            },
            "name": {
                "fi": "Muistikerho"
            },
            "short_description": {
                "fi": "Tarjolla kysymyksiä, arvoituksia, sanahakuja, ym. huviksi ja hyödyksi."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268329/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265555",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2741,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:30:54.863462Z",
                    "last_modified_time": "2024-02-06T13:38:03.460355Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{F45712A8-9DB2-4AF2-9DBE-0AEE672000E7}/41220",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2741/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:38:46.209829Z",
            "last_modified_time": "2023-10-26T06:22:43.860996Z",
            "date_published": "2023-08-15T14:41:00Z",
            "start_time": "2023-09-25T07:00:00Z",
            "end_time": "2023-09-25T07:45: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<h3>Maanantaisin klo 10 Jaminurkassa</h3></p><p>Tule mukaan tuolijumppaan!</p><p>Vapaa pääsy, tervetuloa!</p><p> <br> </p>"
            },
            "name": {
                "fi": "Tuolijumppa"
            },
            "short_description": {
                "fi": "Tuolijumppaa maanantaisin klo 10. Tervetuloa!"
            },
            "location_extra_info": {
                "fi": "Jaminurkka"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265555/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:261900",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8289/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2631,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:27.800511Z",
                    "last_modified_time": "2024-02-06T13:38:03.362398Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{2298D4B7-548D-4D58-9BFE-EA6157A795E4}/88885",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2631/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:38:45.869096Z",
            "last_modified_time": "2023-10-26T05:21:38.028634Z",
            "date_published": "2023-06-20T11:03:00Z",
            "start_time": "2023-09-25T07:00:00Z",
            "end_time": "2023-09-25T07: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p> <strong> Puistolan kirjaston satutuokiot <strong>järjestetään maanantaisin klo 10.</strong> </strong> </p><p>Satutuokiossa luetaan suomenkielisiä satuja. Satutuokiot on suunnattu alle 7-vuotiaille lapsille vanhempineen. Tervetuloa satujen maailmaan!</p><p> <em>Kuva: Maarit Hohteri</em> </p>"
            },
            "name": {
                "fi": "Satutuokiot Puistolan kirjastossa"
            },
            "short_description": {
                "fi": "Satutuokio lapsille"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261900/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:261343",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8205/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2902,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:34:13.152720Z",
                    "last_modified_time": "2024-02-06T13:38:21.085357Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{1F13112C-DE90-4DA6-A9A6-7D2AFCA30400}/75241",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2902/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:38:45.524927Z",
            "last_modified_time": "2023-10-26T05:21:37.967280Z",
            "date_published": "2020-06-11T21:01:00Z",
            "start_time": "2023-09-25T07:00:00Z",
            "end_time": "2023-09-25T07: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tuokiollinen runoja ja loruleikkejä noin 1-3 -vuotiaille lapsille vanhempineen. Iloa, kielen oppimista ja yhdessä hassuttelua!</p><p>Parittomina maanantaina 11.9., 25.9., 9.10., 23.10., 6.11., 20.11., 4.12. ja 18.12. klo 10</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tervetuloa!</p>"
            },
            "name": {
                "fi": "Taaperoiden lorutuokio"
            },
            "short_description": {
                "fi": "Rytmiä ja leikkiä taaperoille!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261343/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59803",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4093,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:25.118837Z",
                    "last_modified_time": "2023-09-07T14:20:25.118860Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730195.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4093/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:20:24.917298Z",
            "last_modified_time": "2023-10-25T20:13:40.431615Z",
            "date_published": null,
            "start_time": "2023-08-26T17:00:00Z",
            "end_time": null,
            "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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1C404A044C27F2BE8FE3966299015CB9/Kissa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1C404A044C27F2BE8FE3966299015CB9/Kissa",
                "en": "http://www.malmitalo.fi/en/events/event/1C404A044C27F2BE8FE3966299015CB9/Kissa"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kissa on yhdistelmä glitterin kyllästämää 70-luvun glam-spektaakkelia, dekatenttia kapinaa kapinaa vastaan ja kiihkeää rakkautta.</p><p>Yhtye ammentaa musiikillisen ja lyyrisen voimansa huolettomasta rock ’n’ rollin alkulähteestä, herkästä ja kuplivasta pop-estetiikasta sekä voimapopin isoista harmonisista kitaroista ja melodiakoukuista.</p><p>Livenä Kissa on päällekäyvän riehakasta, leveiden haara-asentojen ja armottomana vinkuvien kitaroiden kuorruttamaa poprock-unelmaa. Talla on pohjassa ja hiki pinnassa, ja hurmos pitää otteessaan alusta loppuun.</p><p>Värivalojen ristitulesta ja vaaleanpunaisesta usvasta nousee persoonallinen, värikäs ja räiskyvä eriskummallinen sekstetti, josta on mahdoton irrottaa katsettaan. Tunnelma on kutkuttavan arvaamaton, kaahataan lähellä reunaa silläkin uhalla, että käydään ojan puolella. Kissa viekoittelee ehdoitta katsojan mukanaan tulikuumaan ja hikiseen sykkeeseen. Sydän on tehty napalmista – tätä kissaa ei voi pysäyttää mikään.</p><p>Kissan debyyttilevy Vaarallinen bändi julkaistiin 4. kesäkuuta 2021 Svart Recordsin kautta. Eheä ja voimaa uhkuva levykokonaisuus koostuu harkituista koukuista, raikkaista ja rajuista riffeistä, massiivisista synaverhoista sekä sopivasti kieli poskessa kirjoitetuista tarinoista. Kepeän kuplivan pinnan alla asuu silti herkkä ja hellä rakastaja. Bändi on moniaistinen kokemus, joka tarjoaa silmiä hivelevän shown.</p><p>Yhtye julkaisi keväällä 2023 toisen albuminsa, joka kantaa nimeä Apinalinna. Kissan toinen näytös on herkkä, hienostunut ja kunnianhimoinen. Siinä on aiempaa enemmän syvyyttä. Luvassa on kovaa rokkia, tarttuvaa pop-sensibiliteettiä, isoja sovituksia ja suuria tunteita huolellisesti yhteen liimattuna.<br> <br>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>",
                "sv": "<p>Kissa är en kombination av ett 70-tals glamspektakel med en överdos av glitter, ett dekadent uppror mot upproret och passionerad kärlek.</p><p>Bandet hämtar sin musikaliska och lyriska kraft från rock ’n’ rollens bekymmerslösa urkälla, sensitiv och bubblande popestetik samt powerpopens stora harmoniska gitarrer och melodislingor.<br> <br>Kissas liveuppträdanden är en gåpåigt uppsluppen poprockdröm med bredbenta scenposer och skoningslöst vinande gitarrer. Plattan är i mattan och svetten lackar – ren och skär extas från start till slut.</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>",
                "en": "<p>Kissa is a combination of an authentic 70s glam rock spectacle, a decadent rebellion against rebellion and passionate love.</p><p>The band takes its musical and lyrical inspiration from free-flowing font of rock ‘n’ roll, tender and bubbly pop aesthetics and the big guitar harmonies and melodic hooks of power pop.<br> <br>Kissa’s raucous live performances are like a hazy pop rock dream complete with rock poses and relentlessly screeching guitars. Be prepared for some sweaty high-octane fun from start to finish.</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>"
            },
            "name": {
                "fi": "Kissa – Malmin tapahtumakesä",
                "sv": "Kissa – Malms evenemangssommar",
                "en": "Kissa – Malmi Summer of Events"
            },
            "short_description": {
                "fi": "Kissa on yhdistelmä glitterin kyllästämää 70-luvun glam-spektaakkelia, dekatenttia kapinaa kapinaa vastaan ja kiihkeää rakkautta.",
                "sv": "Kissa är en kombination av ett 70-tals glamspektakel med en överdos av glitter, ett dekadent uppror mot upproret och passionerad kärlek.",
                "en": "Kissa is a combination of an authentic 70s glam rock spectacle, a decadent rebellion against rebellion and passionate love."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59803/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60304",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "10 € / 6 €",
                        "sv": "10 € / 6 €",
                        "en": "10 € / 6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3425630",
                        "sv": "https://www.lippu.fi/eventseries/name-3425630",
                        "en": "https://www.lippu.fi/eventseries/name-3425630"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4092,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:24.683876Z",
                    "last_modified_time": "2023-09-07T14:20:24.683896Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734717.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4092/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:20:24.379747Z",
            "last_modified_time": "2023-10-25T20:13:40.345367Z",
            "date_published": null,
            "start_time": "2023-08-26T16:30:00Z",
            "end_time": null,
            "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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/695ABC58F9E095FC9F1A5CC193B9D983/Adventures_of_Harriharri_Episode_III_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/695ABC58F9E095FC9F1A5CC193B9D983/Adventures_of_Harriharri_Episode_III_",
                "en": "http://www.caisa.fi/en/events/event/695ABC58F9E095FC9F1A5CC193B9D983/Adventures_of_Harriharri_Episode_III_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Videopeliesityksessä Harriharri taistelee sosiaalisen syrjäyttämisen voimia vastaan integroituakseen suomalaiseen yhteiskuntaan.</p><p>Esitys seuraa Harriharrin elämää Helsingissä. Pelin päähahmo Harriharri on juuri saapunut Suomeen ja toivoo saavansa uusia ystäviä sekä lämpimän vastaanoton uuteen kulttuuriin. Harriharri luottaa itseensä ja motivaatioonsa toimia myös osana paikallista taidemaailmaa. Kaikki ei kuitenkaan mene niin kuin Strömsössä. <br> <br>Pelissä Harriharri joutuu tutustumaan suomalaiseen kulttuuri- ja maahanmuuttopolitiikkaan hämmentävillä tavoilla, jotka murskaavat hänen naiivin kuvansa Suomesta. Ponnisteluistaan huolimatta hän kohtaa jatkuvia vastoinkäymisiä pyrkiessään suomalaisen yhteiskunnan jäseneksi.</p><p>Pelin vaikeimmilla tasoilla Harriharrin täytyy taistella byrokraattista koneistoa ja sosiaalisen syrjäyttämisen rakenteita vastaan improvisoidun rapin ja laulun keinoin. Jokainen esitys on uniikki monipelaajakokemus, sillä yleisö voi vaikuttaa pelin kulkuun. Liity Harriharrin seuraan hiphopfantasiaseikkailuun! <br> <br>Kävi miten kävi, Harriharri ei saa luovuttaa! <br> <br>Pelisuunnittelija ja esittäjä: Harold Hejazi <br>Pelinkehittäjät: magu & Rolands Tīss <br>Säveltäjä ja äänisuunnittelija: Eliel Tammiharju <br>Videoteknikko: Jokke Heikkilä <br> <br>Sisältöhuomautukset: Esitys sisältää voimakkaita valoja ja värejä sekä karkeaa kielenkäyttöä. Esitys kertoo rasismista, ei välttämättä sovi herkille katsojille. <br> <br>Harriharri on osa Suomen tarinat -hanketta, jossa tutkitaan suomalaista historiakulttuuria, millaisia narratiiveja Suomen historiasta kerrotaan, miten niiden sisällöstä on neuvoteltu ja millaisia merkityksiä kansalaiset näille kertomuksille asettavat. Suomen tarinat -projektin rahoittaa Koneen Säätiö ja sen kotipaikka on Helsingin yliopiston poliittisen historian oppiaine. Hanke aloitti toukokuussa 2021 ja on kolmivuotinen. <br> <br>Esityksen kesto: n. 60 min <br>Kieli: englanti <br>Ikäsuositus/ikäraja: +12-v <br> <br>Esitys on alun perin tuotettu Nykyesityksen näyttämölle, ja sitä tuki Taiteen edistämiskeskus.</p><p>Pysy kuulolla ja ota seurantaan @harriharrigame Instagramissa!</p><p>Katso aiemmat osat täältä: <br>Jakso I: https://youtu.be/VAMZKqDMoKA <br>Jakso II: https://youtu.be/FP8Of8MNT_I</p>",
                "sv": "<p>I videospelsutställningen kämpar Harriharri mot den sociala utslagningens krafter för att integreras i det finländska samhället.</p><p>Utställningen följer Harriharris liv i Helsingfors. Spelets huvudkaraktär Harriharri har nyligen anlänt till Finland och önskar sig nya vänner samt ett varmt mottagande i den nya kulturen. Harriharri tvingas bekanta sig med den finska kultur- och migrationspolitiken på förbryllande sätt, som krossar hans naiva bild av Finland.<br>På spelets svårare nivåer måste Harriharri kämpa mot det byråkratiska maskineriet och den sociala utslagningens strukturer med improviserad rap och sång. Varje föreställning är en unik flerspelarupplevelse, eftersom publiken kan påverka spelets gång. Anslut dig till Harriharris hiphopfantasiäventyr!</p><p>Anmärkningar om innehållet: Föreställningen har starka ljus och färger, grovt språkbruk och rasistiska referenser. <br> <br>Harriharri är en del av projektet Finlands berättelser, i vilket man undersöker den finländska historiekulturen, hurdana narrativ som berättas om Finlands historia, hur deras innehåll har förhandlats och hurdana betydelser medborgarna ger dessa berättelser. Finlands berättelser finansieras av Konestiftelsen och dess hemort är politisk historia vid Helsingfors universitet. Projektet inleddes i maj 2021 och varar i tre år.</p><p>Längd: ca. 60 min.<br>Språk: engelska<br>Åldersrekommendation: +12</p>",
                "en": "<p>A video game performance. Harriharri battles the forces of social exclusion in order to integrate into Finnish society.</p><p>This video game performance chronicles the life and times of Harriharri living in Helsinki. Harriharri is a newcomer to Finland who arrives with high hopes of being warmly welcomed into the culture and making new friends. He feels confident and full of initiative to contribute to the local artistic landscape. However, it doesn’t turn out quite like in Strömsö. <br>  <br>Through gameplay, Harriharri undergoes an unsettling introduction to Finnish cultural politics, one that shatters his naïve image of Finland. Despite his sincere efforts, he faces continuous obstacles in pursuit of integrating into Finnish society. In order to conquer the most challenging levels of the game, Harriharri must battle bureaucracies and systemic forces of social exclusion. <br>  <br>No matter what, Harriharri must not give up! <br>  <br>The game is performed live in an interactive-cinema format and narrated through rap and song. In this multiplayer experience, the audience’s decisions influence the narrative––making each performance unique. Join Harriharri on this hip hop fantasy adventure! <br>  <br>Creator and Performer: Harold Hejazi <br>Game Developers: magu & Rolands Tīss <br>Composer and Sound Designer: Eliel Tammiharju <br>Video Technician: Jokke Heikkilä</p><p>Duration: 60 min<br>Age recommendation: 12+<br>Language: English<br> <br>This performance was originally produced by Stage for Contemporary Performance and supported by Arts Promotion Center Finland. <br> <br>Watch the previous episodes here: <br>Episode I: https://youtu.be/VAMZKqDMoKA <br>Episode II: https://youtu.be/FP8Of8MNT_I <br> <br>Follow @harriharrigame to stay updated <br> <br>Content Warning: This performance explores issues of race and immigration and uses strong or coarse language that may be considered offensive to some viewers. The on-screen visuals include flashing lights and colours that may trigger seizures. <br> <br>Harold Hejazi, who Fennicised his name in 2020 to Harriharri, is a Canadian artist and game designer currently living in Helsinki. In recent years, he has been using the medium of video games for live cinematic storytelling that examines issues of race, marginalisation, and contemporary multiculturalism in Finland.</p>"
            },
            "name": {
                "fi": "Adventures of Harriharri – Episode III – Suomen Tarinat",
                "sv": "Adventures of Harriharri – Episode III",
                "en": "Adventures of Harriharri – Episode III"
            },
            "short_description": {
                "fi": "Videopeliesityksessä Harriharri taistelee sosiaalisen syrjäyttämisen voimia vastaan integroituakseen suomalaiseen yhteiskuntaan.",
                "sv": "I videospelsutställningen kämpar Harriharri mot den sociala utslagningens krafter för att integreras i det finländska samhället.",
                "en": "A video game performance. Harriharri battles the forces of social exclusion in order to integrate into Finnish society."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60304/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59802",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4091,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:23.930293Z",
                    "last_modified_time": "2023-09-07T14:20:23.930336Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730194.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4091/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:20:23.268578Z",
            "last_modified_time": "2023-10-25T20:13:40.260075Z",
            "date_published": null,
            "start_time": "2023-08-26T15:00:00Z",
            "end_time": null,
            "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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/76AAD5A65F688F5ED5817C079AF73BDF/Suosikki",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/76AAD5A65F688F5ED5817C079AF73BDF/Suosikki",
                "en": "http://www.malmitalo.fi/en/events/event/76AAD5A65F688F5ED5817C079AF73BDF/Suosikki"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Asfalttia on nuoltu ja bensa-asemia nähty. Nyt nelikko vihdoin samassa kokoonpanossa!</p><p>Soittamisen ilo on edelleen samalla tasolla kuin 90-luvun puolessavälissä, kun bändin jätkät ekan kerran tapasivat.</p><p>Suosikin musassa uniikiksi komboksi yhdistyvät Bob Mouldin yhtyeiden, The Jesus Lizardin jenkkialternative ja uuden polven Ruotsi-punk (Masshysteri).</p><p>90-luvun puolessa välissä Jussi, Antti ja Sakke soittivat kaikki bändeineen samalla treeniksellä ja pari vuotta myöhemmin Jamppa perusti Ylöjärvellä Abduktion. Nyt ollaan tilanteessa, jossa nelikko soittaa ensimmäistä kertaa samassa kokoonpanossa!</p><p>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>",
                "sv": "<p>Asfalten har nötts och många bensinmackar setts. Nu är alla fyra äntligen tillsammans!</p><p>Suosikkis musik är en unik kombo av Bob Moulds band, The Jesus Lizards alternativa amerikanska rock och nya generationens Sverigepunk (Masshysteri).<br> <br>I mitten av 90-talet spelade Jussi, Antti och Sakke i samma replokal med sina respektive band och ett par år senare satte Jamppa ihop Abduktio i Ylöjärvi. Och nu har vi kommit till den punkt att alla fyra för första gången spelar tillsammans!</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>",
                "en": "<p>After seeing a lot of roads and petrol stations, the four of them are finally in the same band!</p><p>Suosikki concocts a unique blend from the music of Bob Mould’s groups, the American alternative rock of The Jesus Lizard and the new wave of Swedish punk (Masshysteri).<br> <br>In the mid-90s, Jussi, Antti and Sakke were playing at the same rehearsal facility and, a couple of years later, Jamppa established Abduktio in Ylöjärvi. Now the four men are playing in the band for the first time ever!</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>"
            },
            "name": {
                "fi": "Suosikki – Malmin tapahtumakesä",
                "sv": "Suosikki – Malms evenemangssommar",
                "en": "Suosikki – Malmi Summer of Events"
            },
            "short_description": {
                "fi": "Asfalttia on nuoltu ja bensa-asemia nähty. Nyt nelikko vihdoin samassa kokoonpanossa!",
                "sv": "Asfalten har nötts och många bensinmackar setts. Nu är alla fyra äntligen tillsammans!",
                "en": "After seeing a lot of roads and petrol stations, the four of them are finally in the same band!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59802/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60556",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4090,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:22.786092Z",
                    "last_modified_time": "2023-09-07T14:20:22.786113Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732104.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4090/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:20:22.632707Z",
            "last_modified_time": "2023-10-25T20:13:40.173132Z",
            "date_published": null,
            "start_time": "2023-08-26T14:00:00Z",
            "end_time": null,
            "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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A332439434249DA8A1152169FE02D098/Sami_Leponiemi_Quartet",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/A332439434249DA8A1152169FE02D098/Sami_Leponiemi_Quartet",
                "en": "http://www.espanlava.fi/en/events/event/A332439434249DA8A1152169FE02D098/Sami_Leponiemi_Quartet"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Sami Leponiemi debytoi säveltäjänä ja yhtyeenjohtajana Espan lavalla!</p><p>Sävellyksissään hän pyrkii yhdistelemään jazzmusiikin vapautta ja klassisen musiikin säännönmukaisuutta. Leponiemi on tarkoin harkinnut upouuden kvartettinsa jäsenet tukemaan visiotaan.</p><p>Leponiemi suorittaa maisteriopintoja Sibelius-Akatemian jazzosastolla, entisestään syventäen ymmärrystään jazzrytmiikasta ja haastaen oman luovuutensa rajat. Sami Leponiemen tinkimätön tavoite huippumuusikkoudesta vei hänet taannoin vuoden mittaiselle matkalle Pariisiin, jossa hän syventyi intensiivisesti saksofoninsoittoon ja säveltämiseen Pariisin konservatoriossa. Tänä aikana Leponiemi sai kunnian konsertoida jazzlegenda Chuck Israelsin kanssa sekä Pariisissa että Suomessa.<br> <br>Sami Leponiemi – Saksofoni ja sävellykset<br>Juho Valjakka – Piano<br>Filemon von Numers – Kontrabasso<br>Teemu Mustonen – Rummut</p>",
                "sv": "<p>Sami Leponiemi debuterar som kompositör och bandledare på Esplanadestraden!</p><p>I sina kompositioner strävar han efter att kombinera jazzmusikens frihet med den klassiska musikens regelmässighet. Leponiemi har noggrant valt medlemmarna i sin splitterny kvartett, så att de kan stödja hans vision.</p>",
                "en": "<p>Experience the artistry of Sami Leponiemi, a rising star in the Finnish jazz scene.</p><p>Drawing inspiration from jazz and classical music, his compositions and improvisations showcase a seamless fusion of genres. Currently studying at the esteemed Sibelius Academy's jazz department, he recently spent a transformative year in Paris.</p><p>During this time, Leponiemi had the honor of performing alongside jazz legend Chuck Israels, both in Paris and in his home country of Finland. With accolades like winning the Huittisten Hullu Puhallus competition in 2017, Leponiemi's virtuosity shines through in bands such as Sir Garrison, Sami Saari & Jazzpojat and Sointi Jazz Orchestra.</p><p>Sami Leponiemi<br>Juho Valjakka<br>Filemon von Numers<br>Teemu Mustonen</p>"
            },
            "name": {
                "fi": "Sami Leponiemi Quartet",
                "sv": "Sami Leponiemi Quartet",
                "en": "Sami Leponiemi Quartet"
            },
            "short_description": {
                "fi": "Sami Leponiemi debytoi säveltäjänä ja yhtyeenjohtajana Espan lavalla!",
                "sv": "Sami Leponiemi debuterar som kompositör och bandledare på Esplanadestraden!",
                "en": "Experience the artistry of Sami Leponiemi, a rising star in the Finnish jazz scene."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60556/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60447",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4089,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:22.345077Z",
                    "last_modified_time": "2023-09-07T14:20:22.345114Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734078.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4089/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:20:22.195800Z",
            "last_modified_time": "2023-10-25T20:13:40.090512Z",
            "date_published": null,
            "start_time": "2023-08-26T13:00:00Z",
            "end_time": null,
            "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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/81C03815ADF53700D521227CA02CEDE9/Gaia_Mobilij",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/81C03815ADF53700D521227CA02CEDE9/Gaia_Mobilij",
                "en": "http://www.espanlava.fi/en/events/event/81C03815ADF53700D521227CA02CEDE9/Gaia_Mobilij"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kulkija, tuulen tytär, lumoojatar ja tarinankertoja, joka on jättänyt jälkensä matkatessaan ympäri maailman.</p><p><b>Gaia Mobilij</b> on hienostunut loop-sensaatio, joka siirtää matkakokemukset työhönsä. Istanbul, Mexico City, Barcelona, Mumbai: Gaia on kotonaan kaikkialla ja prosessoi lukuisien kulttuurien vaikutukset esitykseensä.</p><p>Välineinään laulu, haitari, elektroniikka ja monet pienemmät instrumentit hän saa yleisönsä hämmästelemään, mitä kaikkea yksi ihminen voikaan musiikillisesti tehdä.</p><p>Syntetisaattoreineen ja muine laitteineen hän ei arastele tekniikkaa. Musiikista löytyy bulgarialaista ragaa ja muita Balkanin alueen vaikutteita; kuultavissa on myös italialaisia, latinalaisia, intialaisia ja romaniväestön resonansseja. Matkaa ympäri maailman 60 minuutissa!</p>",
                "sv": "<p>En vandrare, vindens dotter, en förtrollerska och en historieberättare som har lämnat sina spår under sina resor runtom i världen.</p><p><b>Gaia Mobilij</b> är en sofistikerad loop-sensation som överför sina reseupplevelser till sina verk. Istanbul, Mexico City, Barcelona, Mumbai: Gaia är hemvan överallt och inbakar influenser från ett antal kulturer i sitt uppträdande.</p>",
                "en": "<p>A traveller, daughter of the wind, enchantress and innovator, she left traces of her journey around the world.</p><p><b>Gaia Mobilij</b> is a sophisticated loop sensation that brings your different travel experiences into her work. Istanbul, Mexico City, Barcelona, Mumbai: Gaia has been at home in many places and processes the influences of these cultures directly in her performance. Armed with vocals, an accordion, electronics and a variety of small instruments, audiences quickly wonder what a single person is musically capable of.</p><p>With her synthesizer and other electronic equipment, she is not even afraid of electronics… Her Bulgarian Raga and other Balkan songs, as well as Italian, Latin American, Indian and Roma resonances. Travel around the world in 60 minutes.</p>"
            },
            "name": {
                "fi": "Gaia Mobilij",
                "sv": "Gaia Mobilij",
                "en": "Gaia Mobilij"
            },
            "short_description": {
                "fi": "Kulkija, tuulen tytär, lumoojatar ja tarinankertoja, joka on jättänyt jälkensä matkatessaan ympäri maailman.",
                "sv": "En vandrare, vindens dotter, en förtrollerska och en historieberättare som har lämnat sina spår under sina resor runtom i världen.",
                "en": "A traveller, daughter of the wind, enchantress and innovator, she left traces of her journey around the world."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60447/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60555",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4088,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:21.961190Z",
                    "last_modified_time": "2023-09-07T14:20:21.961226Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732103.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4088/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:20:21.788678Z",
            "last_modified_time": "2023-10-25T20:13:39.990987Z",
            "date_published": null,
            "start_time": "2023-08-26T12:30:00Z",
            "end_time": null,
            "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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/67FC6DFA3EFB7EAD40EEF4A48B582323/La_Mue_tte_False_Orchestra",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/67FC6DFA3EFB7EAD40EEF4A48B582323/La_Mue_tte_False_Orchestra",
                "en": "http://www.espanlava.fi/en/events/event/67FC6DFA3EFB7EAD40EEF4A48B582323/La_Mue_tte_False_Orchestra"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Virtuoosimainen yhden miehen orkesteri yrittää mahdotonta kohtaamista aidon ja kopion välillä.</p><p>Lopulta todellisuutta ja kuvitelmaa ei enää voi erottaa toisistaan. Katoamme maailmaan, jossa kaikki on sulautunut yhdeksi silmiä hiveleväksi musiikin ja illuusion tanssiksi.</p><p>Kaksi muusikkoa istuu seläkkäin: toinen on oikea muusikko, toinen ei. Yhdellä puolella on muusikko, jolla on kielisoitin, Ronroco. Toisella puolella on lyömäsoittaja, jolla on rumpu ja symbaali sekä lusikat polvillaan. Toinen heistä esittää olevansa toinen… Kääntyvässä asetelmassa, joka tarjoaa yli 180 asteen näkymän, kaksi alter egoa yrittää mahdotonta kohtaamista.</p><p>He seuraavat toisiaan, välttelevät ja kiusoittelevat toisiaan ennen kuin lopulta kadottavat itsensä ja sulautuvat kehämäiseen tanssiin. False Orchestra leikittelee alkuperäisen ja kopion, todellisuuden ja illuusion välillä, väärennetty argentiinalainen Milonga ja aidot venäläiset lusikat.</p><p>Eteläamerikkalaisvaikutteinen musiikki vie maailmaan, jossa virtuoosimaista False Orchestraa on kuunneltava silmät auki!</p><p>Ranskan Lorrainesta saapuva <b>La Mue/tte</b> on näyttelijä ja nukeillanäyttelijä <b>Delphine Bardot’n</b> ja argentiinalaisen muusikon ja nukeillanäyttelijä <b>Santiago Morenon</b> yhteistyö. Vuodesta 2014 lähtien he ovat tehneet yhdessä seitsemän esitystä ja kehittäneet visuaalisen ja musiikillisen teatterimuodon, jossa sekä kehot että esineet puhuvat, kyseenalaistaen miesten ja naisten välisiä suhteita, valtaa ja väkivaltaa.</p><p>Delphine Bardot luo omaa nukketeatterikieltään käyttäen nukketeatterinaisen konseptia, Santiago Moreno vastaa kehittämällä muunnelmia yhden miehen yhtyeen ympärille ja käyttäen kehoa musiikki-instrumenttina.</p><p>La Mue/tte tekee yhteistyötä pariisilaisen nukketeatterin Le Mouffetardin kanssa vuosien 2022 ja 2025 välillä, ja Nancyssa toimivan Le LEM:in, Place of Puppetry Experimentationin kanssa vuosina 2022–2024. Ryhmä saa tukea Grand Estin alueviranomaisilta.</p><p>Konsepti ja esiintyjä: Santiago Moreno <br>Visuaalinen suunnittelu: Delphine Bardot & Juan Perez Escala  <br>Taiteellinen yhteistyö: Benoit Dattez <br>Puvustus: Daniel Trento  <br>Kesto: 25 min <br>Ikäsuositus: 5+ <br>Kieli: sanaton</p>",
                "sv": "<p>En virtuosmässig enmansorkester försöker göra ett omöjligt möte mellan det ursprungliga och en kopia.</p><p>Den sydamerikainfluerade musiken tar oss till en värld där den virtuosmässiga  False Orchestra måste lyssnas på med öppna ögon!</p><p>La Mue/tte är ett samarbete mellan skådespelaren och dockskådespelaren Delphine Bardot och den argentinska musikern och dockskådespelaren Santiago Moreno. Sedan 2014 har de tillsammans skapat sju föreställningar och utvecklat en visuell och musikalisk teaterform där både kroppar och föremål talar och som ifrågasätter relationer mellan män och kvinnor, makt och våld.</p><p>Koncept och artist: Santiago Moreno <br>Visuell design: Delphine Bardot & Juan Perez Escala  <br>Konstnärligt samarbete: Benoit Dattez <br>Kostumer: Daniel Trento  <br>Längd: 25 min <br>Åldersrekommedation: 5+ <br>Språk: ordlös</p>",
                "en": "<p>A virtuoso one-man orchestra attempts an impossible encounter between the original and the copy.</p><p>In the end, reality and imagination can no longer be separated. We disappear into a world where everything has merged into one eye-popping dance of music and illusion.</p><p>Two musicians sitting back to back: one is a true musician and the other false. On one side is a musician with a stringed instrument, a Ronroco. On the other is a percussionist flanked by a drum and a cymbal with spoons on his knees. One of them is a faker, faking the other...In a turning set-up offering a vision of over 180° degrees, the two alter egos attempt an impossible encounter.</p><p>They follow each other, evade, and tease each other before finally losing themselves and merging in a circular dance. The False-Orchestra plays between original and copy, reality and illusion, a fake Milonga with real Russian spoons. A fused puppet, a deported mask and music with a South American air, the False-Orchestra of this virtuoso musician is to be listened to with your eyes wide open!</p><p>The Lorraine company <b>La Mue/tte</b> is a partnership between actress and puppeteer <b>Delphine Bardot</b> and Argentinian musician and puppeteer <b>Santiago Moreno</b>. They have created seven shows since 2014, inventing a visual and musical form of theatre that allowsboth bodies and objects to speak, questioning relationships between men and women, power, and violence.</p><p>While Delphine Bardot creates a puppeteering language of her own, using the concept of the puppet theatre woman, Santiago Moreno responds by developing variations around the figure of the one-man-band and the idea of the body as a musical instrument.</p><p>La Mue/tte is associated with Le Mouffetard, puppet theater in Paris from 2022 to 2025 and with Le LEM, Place of Puppetry Experimentation in Nancy from 2022 to 2024. The artistic team is supported by the Grand Est Regional Authority.</p><p>Concept and performer: Santiago Moreno <br>Visual design: Delphine Bardot & Juan Perez Escala  <br>Artistic collaboration: Benoit Dattez <br>Costume: Daniel Trento  <br>Duration: 25 min <br>Age recommendation: 5+ <br>Language: sanaton / nonverbal</p>"
            },
            "name": {
                "fi": "La Mue/tte: False Orchestra",
                "sv": "La Mue/tte: False Orchestra",
                "en": "La Mue/tte: False Orchestra"
            },
            "short_description": {
                "fi": "Virtuoosimainen yhden miehen orkesteri yrittää mahdotonta kohtaamista aidon ja kopion välillä.",
                "sv": "En virtuosmässig enmansorkester försöker göra ett omöjligt möte mellan det ursprungliga och en kopia.",
                "en": "A virtuoso one-man orchestra attempts an impossible encounter between the original and the copy."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60555/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60186",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "16 €",
                        "sv": "16 €",
                        "en": "16 €"
                    },
                    "info_url": {
                        "fi": "https://sampofestival.fi/",
                        "sv": "https://sampofestival.fi/",
                        "en": "https://sampofestival.fi/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4087,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:21.452104Z",
                    "last_modified_time": "2023-09-07T14:20:21.452128Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734131.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4087/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:20.750134Z",
            "last_modified_time": "2023-10-25T20:13:39.901947Z",
            "date_published": null,
            "start_time": "2023-08-26T12:00:00Z",
            "end_time": null,
            "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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/08DA00DD9D9C373196AE24AE1EF21D78/Lutkovno_gledalis_c_e_Ljubljana_Jossain_muualla_Somewhere_else_Nekje_drugje",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/08DA00DD9D9C373196AE24AE1EF21D78/Lutkovno_gledalis_c_e_Ljubljana_Jossain_muualla_Somewhere_else_Nekje_drugje",
                "en": "http://www.annantalo.fi/en/events/event/08DA00DD9D9C373196AE24AE1EF21D78/Lutkovno_gledalis_c_e_Ljubljana_Jossain_muualla_Somewhere_else_Nekje_drugje"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>”Jossain muualla” on esitys aiheesta, josta ei useinkaan ole helppo puhua: se kertoo tarinan pienestä tytöstä, joka on joutunut keskelle sotaa.</p><p>Uhkaavia lentokoneita lentää kaupungin yllä, kadut ovat tyhjiä, eikä kaupan hyllyillä ole enää ruokaa. Koulu on suljettu. Lähistöltä kuuluu silloin tällöin laukauksia. Tyttö haaveilee lähtevänsä maaseudulle, jossa elämä voisi olla parempaa. Hän haluaa mennä jonnekin muualle, kauas sodan kauhuista.</p><p>”Jossain muualla” on syvästi koskettava tarina sodan järjettömyydestä ja sen julmuudesta lapsen näkökulmasta kerrottuna. Tarinan kertominen on tärkeää nuorimmille katsojista: koska aihe on varsin herkkä ja tuskallinen, nämä tarinat jäävät usein kertomatta.</p><p>Tarinan lisäksi Jossain muualla -esityksen lavastus on epätavallinen myös ilmaisukeinoiltaan. Näyttelijä ja nukkenäyttelijä ovat sama henkilö, joka luo ympäristön, jossa pieni tyttö kävelee. Hän kuvaa siveltimillään ja maalaa mäkisiä maisemia, korkeita pilvenpiirtäjiä ja kammottavia sotilaita, jotka lähestyvät hitaasti kaupunkia. Videoprojisoinnit imaisevat katsojan jännittävän tarinan ytimeen sodan kauhuista, jotka onneksi tapahtuvat jossain muualla. Mutta ne tapahtuvat jossain.</p><p>Kesto: 45 min <br>Ikäsuositus: 7+<br>Tekstitys: englanti/suomi</p><p>Ohjaus: Tin Grabnar<br>Kirjoittaja: Zala Dobovšek, Nina Šorak, Tin Grabnar, Asja Kahrimanović Babnik <br>Cast: Asja Kahrimanović Babnik<br>Art Design: Matija Medved<br>Stop motion animation: Matija Medved and Lea Vučko<br>Dramaturgia: Zala Dobovšek<br>Ohjaajan assistentti: Nina Šorak</p><p>Liput 16 €, varaukset: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 13 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>Någon annanstans är en föreställning om ett ämne som ofta inte är enkelt att prata om. Den handlar om en liten flicka som befinner sig mitt i ett krig.</p><p>Hotfulla flygplan flyger över staden, gatorna är tomma och det finns ingen mat kvar på hyllorna i butiken. Skolan är stängd. Och då och då hörs gevärseld i närheten. Flickan drömmer om att åka ut på landet, där hon kan få ett bättre liv. Hon vill åka någon annanstans, långt bort från krigets hemskheter.</p><p>Någon annanstans är en rörande historia om krigets absurditet och grymhet, berättad från ett barns perspektiv. Det är viktigt att berätta historien för den yngsta publiken. Eftersom ämnet är känsligt och smärtsamt förblir dessa historier ofta oberättade.</p><p>Utöver själva berättelsen har Någon annanstans även en ovanlig iscensättning. Skådespelaren och dockspelaren är samma person som skapar miljön som den lilla flickan går runt i. Hon använder sina penslar och målar de kuperade landskapen, de höga skyskraporna och de läskiga soldaterna som långsamt närmar sig staden. Videoprojektionerna suger in publiken i spännande berättelse om krigets hemskheter, som tur nog sker någon annanstans. Men de sker någonstans.</p><p>Längd: 45 min <br>Åldersrekommendation: 7+<br>Textning: engelska/finska</p><p>Regi: Tin Grabnar<br>Författare: Zala Dobovšek, Nina Šorak, Tin Grabnar, Asja Kahrimanović Babnik <br>Cast: Asja Kahrimanović Babnik<br>Art Design: Matija Medved<br>Stop motion animation: Matija Medved and Lea Vučko<br>Dramaturgi: Zala Dobovšek<br>Regiassistent: Nina Šorak</p><p>Biljetter 16 €, sampofestival.fi</p>",
                "en": "<p>Somewhere Else is a performance about a topic that is often not easy to speak about: it tells a story about a little Girl, who finds herself at the heart of war.</p><p>Threatening planes are flying over the city, the streets are empty, and there is no food left on the shelves in the store. The school is closed. And every now and then gunshots sound nearby. The Girl dreams of leaving to the countryside, where she could have a better life. She wants to go somewhere else, far away from the horrors of war.</p><p>How do the horrors of war look like through a child’s eyes? Only through this perspective can we fully understand the absurdity of the violence of war and the vulnerability of each individual. Somewhere Else is a deeply moving story about the absurdity of war and its cruelty, told from the point of view of a child. It is essential to tell the story to the youngest of viewers: since the topic is quite delicate and painful, these stories often remain untold.</p><p>In addition to the story matter, the staging of Somewhere Else is unusual in its means of expression as well. The actor and puppeteer are the same person who creates the environment in which the little Girl walks. She depicts with her brushes and paints the hilly landscapes, high skyscrapers, and creepy soldiers slowly approaching the city. The video projections absorb the viewer into the heart of an exciting story about the horrors of war, which are – fortunately enough – happening somewhere else. But they are happening somewhere.<br> <br>Director: Tin Grabnar<br>Author: Zala Dobovšek, Nina Šorak, Tin Grabnar, Asja Kahrimanović Babnik <br>Cast: Asja Kahrimanović Babnik<br>Art Design: Matija Medved<br>Stop motion animation: Matija Medved and Lea Vučko<br>Dramaturgy: Zala Dobovšek<br>Assistant Director: Nina Šorak</p><p>Duration: 45 min <br>Age recommendation: 7+<br>Subtitles: English / Finnish</p><p>Tickets € 16, sampofestival.fi</p>"
            },
            "name": {
                "fi": "Lutkovno gledališče Ljubljana: Jossain muualla / Somewhere else / Nekje drugje – SAMPO Festivaali",
                "sv": "Lutkovno gledališče Ljubljana: Jossain muualla / Somewhere else / Nekje drugje – SAMPO Festival",
                "en": "Lutkovno gledališče Ljubljana: Jossain muualla / Somewhere else / Nekje drugje – SAMPO Festival"
            },
            "short_description": {
                "fi": "”Jossain muualla” on esitys aiheesta, josta ei useinkaan ole helppo puhua: se kertoo tarinan pienestä tytöstä, joka on joutunut keskelle sotaa.",
                "sv": "Någon annanstans är en föreställning om ett ämne som ofta inte är enkelt att prata om. Den handlar om en liten flicka som befinner sig mitt i ett krig.",
                "en": "Somewhere Else is a performance about a topic that is often not easy to speak about: it tells a story about a little Girl, who finds herself at the heart of war."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60186/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60187",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "16 €",
                        "sv": "16 €",
                        "en": "16 €"
                    },
                    "info_url": {
                        "fi": "https://sampofestival.fi/",
                        "sv": "https://sampofestival.fi/",
                        "en": "https://sampofestival.fi/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4086,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:20.029894Z",
                    "last_modified_time": "2023-09-07T14:20:20.029916Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734132.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4086/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:19.698203Z",
            "last_modified_time": "2023-10-25T20:13:39.810541Z",
            "date_published": null,
            "start_time": "2023-08-26T09:00:00Z",
            "end_time": null,
            "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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/501D419F0C13516408D2CFB3466BA592/Lutkovno_gledalis_c_e_Ljubljana_Jossain_muualla_Somewhere_else_Nekje_drugje",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/501D419F0C13516408D2CFB3466BA592/Lutkovno_gledalis_c_e_Ljubljana_Jossain_muualla_Somewhere_else_Nekje_drugje",
                "en": "http://www.annantalo.fi/en/events/event/501D419F0C13516408D2CFB3466BA592/Lutkovno_gledalis_c_e_Ljubljana_Jossain_muualla_Somewhere_else_Nekje_drugje"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>”Jossain muualla” on esitys aiheesta, josta ei useinkaan ole helppo puhua: se kertoo tarinan pienestä tytöstä, joka on joutunut keskelle sotaa.</p><p>Uhkaavia lentokoneita lentää kaupungin yllä, kadut ovat tyhjiä, eikä kaupan hyllyillä ole enää ruokaa. Koulu on suljettu. Lähistöltä kuuluu silloin tällöin laukauksia. Tyttö haaveilee lähtevänsä maaseudulle, jossa elämä voisi olla parempaa. Hän haluaa mennä jonnekin muualle, kauas sodan kauhuista.</p><p>”Jossain muualla” on syvästi koskettava tarina sodan järjettömyydestä ja sen julmuudesta lapsen näkökulmasta kerrottuna. Tarinan kertominen on tärkeää nuorimmille katsojista: koska aihe on varsin herkkä ja tuskallinen, nämä tarinat jäävät usein kertomatta.</p><p>Tarinan lisäksi Jossain muualla -esityksen lavastus on epätavallinen myös ilmaisukeinoiltaan. Näyttelijä ja nukkenäyttelijä ovat sama henkilö, joka luo ympäristön, jossa pieni tyttö kävelee. Hän kuvaa siveltimillään ja maalaa mäkisiä maisemia, korkeita pilvenpiirtäjiä ja kammottavia sotilaita, jotka lähestyvät hitaasti kaupunkia. Videoprojisoinnit imaisevat katsojan jännittävän tarinan ytimeen sodan kauhuista, jotka onneksi tapahtuvat jossain muualla. Mutta ne tapahtuvat jossain.</p><p>Kesto: 45 min <br>Ikäsuositus: 7+<br>Tekstitys: englanti/suomi</p><p>Ohjaus: Tin Grabnar<br>Kirjoittaja: Zala Dobovšek, Nina Šorak, Tin Grabnar, Asja Kahrimanović Babnik <br>Cast: Asja Kahrimanović Babnik<br>Art Design: Matija Medved<br>Stop motion animation: Matija Medved and Lea Vučko<br>Dramaturgia: Zala Dobovšek<br>Ohjaajan assistentti: Nina Šorak</p><p>Liput 16 €, varaukset: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 13 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>Någon annanstans är en föreställning om ett ämne som ofta inte är enkelt att prata om. Den handlar om en liten flicka som befinner sig mitt i ett krig.</p><p>Hotfulla flygplan flyger över staden, gatorna är tomma och det finns ingen mat kvar på hyllorna i butiken. Skolan är stängd. Och då och då hörs gevärseld i närheten. Flickan drömmer om att åka ut på landet, där hon kan få ett bättre liv. Hon vill åka någon annanstans, långt bort från krigets hemskheter.</p><p>Någon annanstans är en rörande historia om krigets absurditet och grymhet, berättad från ett barns perspektiv. Det är viktigt att berätta historien för den yngsta publiken. Eftersom ämnet är känsligt och smärtsamt förblir dessa historier ofta oberättade.</p><p>Utöver själva berättelsen har Någon annanstans även en ovanlig iscensättning. Skådespelaren och dockspelaren är samma person som skapar miljön som den lilla flickan går runt i. Hon använder sina penslar och målar de kuperade landskapen, de höga skyskraporna och de läskiga soldaterna som långsamt närmar sig staden. Videoprojektionerna suger in publiken i spännande berättelse om krigets hemskheter, som tur nog sker någon annanstans. Men de sker någonstans.</p><p>Längd: 45 min <br>Åldersrekommendation: 7+<br>Textning: engelska/finska</p><p>Regi: Tin Grabnar<br>Författare: Zala Dobovšek, Nina Šorak, Tin Grabnar, Asja Kahrimanović Babnik <br>Cast: Asja Kahrimanović Babnik<br>Art Design: Matija Medved<br>Stop motion animation: Matija Medved and Lea Vučko<br>Dramaturgi: Zala Dobovšek<br>Regiassistent: Nina Šorak</p><p>Biljetter 16 €, sampofestival.fi</p>",
                "en": "<p>Somewhere Else is a performance about a topic that is often not easy to speak about: it tells a story about a little Girl, who finds herself at the heart of war.</p><p>Threatening planes are flying over the city, the streets are empty, and there is no food left on the shelves in the store. The school is closed. And every now and then gunshots sound nearby. The Girl dreams of leaving to the countryside, where she could have a better life. She wants to go somewhere else, far away from the horrors of war.</p><p>How do the horrors of war look like through a child’s eyes? Only through this perspective can we fully understand the absurdity of the violence of war and the vulnerability of each individual. Somewhere Else is a deeply moving story about the absurdity of war and its cruelty, told from the point of view of a child. It is essential to tell the story to the youngest of viewers: since the topic is quite delicate and painful, these stories often remain untold.</p><p>In addition to the story matter, the staging of Somewhere Else is unusual in its means of expression as well. The actor and puppeteer are the same person who creates the environment in which the little Girl walks. She depicts with her brushes and paints the hilly landscapes, high skyscrapers, and creepy soldiers slowly approaching the city. The video projections absorb the viewer into the heart of an exciting story about the horrors of war, which are – fortunately enough – happening somewhere else. But they are happening somewhere.<br> <br>Director: Tin Grabnar<br>Author: Zala Dobovšek, Nina Šorak, Tin Grabnar, Asja Kahrimanović Babnik <br>Cast: Asja Kahrimanović Babnik<br>Art Design: Matija Medved<br>Stop motion animation: Matija Medved and Lea Vučko<br>Dramaturgy: Zala Dobovšek<br>Assistant Director: Nina Šorak</p><p>Duration: 45 min <br>Age recommendation: 7+<br>Subtitles: English / Finnish</p><p>Tickets € 16, sampofestival.fi</p>"
            },
            "name": {
                "fi": "Lutkovno gledališče Ljubljana: Jossain muualla / Somewhere else / Nekje drugje – SAMPO Festivaali",
                "sv": "Lutkovno gledališče Ljubljana: Jossain muualla / Somewhere else / Nekje drugje – SAMPO Festival",
                "en": "Lutkovno gledališče Ljubljana: Jossain muualla / Somewhere else / Nekje drugje – SAMPO Festival"
            },
            "short_description": {
                "fi": "”Jossain muualla” on esitys aiheesta, josta ei useinkaan ole helppo puhua: se kertoo tarinan pienestä tytöstä, joka on joutunut keskelle sotaa.",
                "sv": "Någon annanstans är en föreställning om ett ämne som ofta inte är enkelt att prata om. Den handlar om en liten flicka som befinner sig mitt i ett krig.",
                "en": "Somewhere Else is a performance about a topic that is often not easy to speak about: it tells a story about a little Girl, who finds herself at the heart of war."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60187/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60261",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4085,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:19.458791Z",
                    "last_modified_time": "2023-09-07T14:20:19.458823Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734535.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4085/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:19.304590Z",
            "last_modified_time": "2023-10-25T20:13:39.723448Z",
            "date_published": null,
            "start_time": "2023-08-26T07:00:00Z",
            "end_time": "2023-08-26T17:00: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0A6ECAF97E3029806D378572269F6DBD/Kantsun_kylajuhlat_2_0",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0A6ECAF97E3029806D378572269F6DBD/Kvartersfesten_i_Gamlas_2_0",
                "en": "http://www.kanneltalo.fi/en/events/event/0A6ECAF97E3029806D378572269F6DBD/Kannelmaki_Blockparty_2_0"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Koko Kannelmäki muuttuu taas juhlatilaksi! Sitratorilla, Kanneltalossa ja Vanhaistenpuistossa on tarjolla maksutonta ohjelmaa kaikille kantsulaisille.</p><p>Luvassa on mm. puistokirppis, musiikkia, taidetta, tanssia, teatteria, ohjelmaa lapsille, työpajoja ja purtavaa.</p><p><b>Aikataulu</b></p><p><b>Sitratorin lava</b></p><p>12.10 Radioactive Pineapple <br>13.00 Monkey earth <br>13.50 ATK <br>15.00 Päistikka <br>16.10 Rosita Luu <br>17.00 Nuorisotalon bändit <br>18.00 Guirikan Foli <br>18.40 Uniikki <br>19.30 Pitkävirta</p><p><b>Kanneltalo & kahvilan stage</b></p><p>12.15 Kirjailijavieraana Tero Somppi <br>13.30 Jousikvartetti <br>14.30 Jonninjoutava-teatterishow <br>15.50 Stand Up, Nitu Kaur</p><p>- Kirjaston satutunnit 2 x 30 min klo 13 ja 14, kirjaston Lukuliiketilassa <br>- Kirjojen Kannelmäki -kävelykierros klo 14–16, lähtö Kanneltalon portailta klo 14. Mukana mm. Juha Itkonen <br>- 14–15 MLL Kannelmäen paikallisyhdistyksen tatuointipaja lapsille</p><p>Lisäksi kyläjuhlien ohjelmaa on Vanhaistenpuistossa ja Kauppakeskus Kaaren 2. kerroksessa. Koko aikataulu ja ohjelmaosioiden esittelyt löytyvät Kantsun kyläjuhlien Facebook-tapahtumasta.</p><p>Kannelmäen kyläjuhlat on vuonna 2021 Kannelmäki-liikkeen Facebook-sivuilla esitetystä asukkaiden ideasta käyntiin lähtenyt tapahtuma, jota luotsaa alueen asukkaista koostuva kyläjuhlatyöryhmä yhdessä alueen toimijoiden kanssa. Tapahtuma järjestetään tänä vuonna toista kertaa.</p><p>Vapaa pääsy<br>Sitratori, Kanneltalo, Vanhaistenpuisto</p>",
                "sv": "<p>Hela Gamlas förvandlas återigen till en festlokal! På Cittertorget, på Gamlasgården och i Gamlasparken bjuds det på gratis program för alla Gamlasbor.</p><p>Bland annat utlovas ett parkloppis, musik, konst, dans, teater, program för barn, verkstäder och något att äta.</p><p>Kvartersfesten i Gamlas är ett evenemang som 2021 började med en idé från invånarna i Facebookgruppen Kannelmäki-liike. Kvartersfesten lotsas av en arbetsgrupp bestående av invånare i området tillsammans och lokala aktörer. Evenemanget ordnas i år för andra året i rad.</p>",
                "en": "<p>The whole of Kannelmäki is turning into a party space again! Sitratori square, Kanneltalo and Vanhaistenpuisto park offer a free programme for all Kannelmäki residents.</p><p>The event includes, for example, a flea market, music, art, dance, theatre, children’s programme, workshops and snacks.</p><p>Kannelmäki Blockparty is a project-form event based on an idea presented by Kannelmäki residents on the Kannelmäki movement’s Facebook page in 2021, which is led by a Blockparty working group of local residents together with local actors. The event is now being held in Helsinki for the second time.</p>"
            },
            "name": {
                "fi": "Kantsun kyläjuhlat 2.0",
                "sv": "Kvartersfesten i Gamlas 2.0",
                "en": "Kannelmäki Blockparty 2.0"
            },
            "short_description": {
                "fi": "Koko Kannelmäki muuttuu taas juhlatilaksi! Sitratorilla, Kanneltalossa ja Vanhaistenpuistossa on tarjolla maksutonta ohjelmaa kaikille kantsulaisille.",
                "sv": "Hela Gamlas förvandlas återigen till en festlokal! På Cittertorget, på Gamlasgården och i Gamlasparken bjuds det på gratis program för alla Gamlasbor.",
                "en": "The whole of Kannelmäki is turning into a party space again! Sitratori square, Kanneltalo and Vanhaistenpuisto park offer a free programme for all Kannelmäki residents."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60261/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268464",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4849,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-20T12:30:58.462009Z",
                    "last_modified_time": "2023-09-20T12:30:58.462029Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{2E16A285-3E67-4B8D-BBEB-F8075D1DA782}/106033",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4849/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-19T13:49:01.408620Z",
            "last_modified_time": "2023-10-25T17:23:59.677232Z",
            "date_published": "2023-09-19T11:46:00Z",
            "start_time": "2023-10-25T15:00:00Z",
            "end_time": "2023-10-25T16: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<h3>Keskiviikko 25.10. klo 18 lavalla</h3><p>Tervetuloa uudesta rakentamislaista kiinnostuneet, korjausrakentajat sekä rakennusten omistajat, joilla ei ole todistusta loppukatselmuksesta tai tarvitsevat sen esimerkiksi myyntiä varten. Asiantuntijat kertova uudesta rakentamislaista, antavat vinkkejä korjausrakentamiseen, valvontaa sekä loppukatselmuksen tekemiseen sekä vastaava mestari vinkkejä korjaamiseen. Ilmoittautumista ei tarvita. </p><ul> <li>Vinkit puuttuvan loppukatselmuksen tekemiseen eri ikäisissä taloissa </li> <li>Mitä uusi rakentamislaki tuo korjausrakentamiseen?</li> <li>Vinkit korjaamiseen ja valvontaan</li> </ul><p>Järjestäjä: Espoon ja Kauniaisten pienkiinteistöt</p>"
            },
            "name": {
                "fi": "Rakennusilta: Korjausrakentaminen pientaloissa"
            },
            "short_description": {
                "fi": "Rakennusilta korjausrakentamisesta pientaloissa."
            },
            "location_extra_info": {
                "fi": "Lava"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268464/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268721",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4876,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-21T14:41:02.063966Z",
                    "last_modified_time": "2023-09-21T14:41:02.063986Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{1D2DF3B1-95AF-4661-93DE-AE08F5E8E7D1}/106096",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4876/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-21T13:32:16.454616Z",
            "last_modified_time": "2023-10-25T16:22:15.183464Z",
            "date_published": "2023-09-21T11:58:00Z",
            "start_time": "2023-09-24T05:00:00Z",
            "end_time": "2023-09-24T18:00: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>",
                "en": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>"
            },
            "name": {
                "fi": "Adventures in White Privilege",
                "en": "Adventures in White Privilege"
            },
            "short_description": {
                "fi": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki.",
                "en": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki."
            },
            "location_extra_info": {
                "fi": "1st floor info",
                "en": "1st floor info"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268721/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268044",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4705,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-11T13:30:50.651849Z",
                    "last_modified_time": "2023-09-11T13:30:50.651878Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{C6E780BE-53C1-4B13-9ECE-26F4243657E0}/105735",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4705/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-11T13:30:53.960709Z",
            "last_modified_time": "2023-10-25T13:23:21.442894Z",
            "date_published": "2023-09-11T11:56:00Z",
            "start_time": "2023-09-24T10:00:00Z",
            "end_time": "2023-09-24T15: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Ääniaalto-mediafestivaaliin on vapaa pääsy. Tervetuloa!</p><p>ÄÄNIAALTO is an annual sound oriented new media festival. ÄÄNIAALTO spans into multiple days and venues presenting striking sonic oddities in the form of performances, installations, workshops and open lectures. Festival has become a linking platform between emerging promises in the field and established artists. The aim of ÄÄNIAALTO is to create a fluent network in the sonic new media scene in Helsinki and an open culture accessible to anybody interested in learning and engaging with the new media’s practices.</p><p> <strong>Maijansalin (1.krs) ohjelma</strong> </p><p>16:00 - 16:20 <br> Avian Electronics<br> Ville Aalto<br> Sound performance</p><p>16:30 - 16:50 <br> ROCK/STAR Vol.1<br> Johan Högsten, Erika Rustamova, murrettumeri<br> Audio-visual dance performance</p><p>17:00 - 17:20 <br> How to know if your compost worms are happy?<br> Merle Karp &amp; Leo Pahta<br> Audio-visual performance</p><p>17:30 - 17:50 <br> Venus of the Baltic Sea<br> Haverinen Calderón<br> Sound (visual) performance</p><p>18:00 - 18:20 <br> bonk~<br> bonk~<br> Audio-visual performance</p><p> <strong>Auran (2. krs) ohjelma</strong> <br> 13:00 - 20:00<br> Aural Labyrinth<br> Konsta Klemetti<br> Sound and movement performance</p><p>Tapahtuman verkkosivut: <a href=\"https://aaniaalto.fi/\">aaniaalto.fi</a></p><p>Tapahtuman järjestää Ääniaalto.</p>",
                "en": "<p>Free entrance, welcome!</p><p>ÄÄNIAALTO is an annual sound oriented new media festival. ÄÄNIAALTO spans into multiple days and venues presenting striking sonic oddities in the form of performances, installations, workshops and open lectures. Festival has become a linking platform between emerging promises in the field and established artists. The aim of ÄÄNIAALTO is to create a fluent network in the sonic new media scene in Helsinki and an open culture accessible to anybody interested in learning and engaging with the new media’s practices.</p><p> <strong>Maijansali's (1st floor) program</strong> </p><p>16:00 - 16:20 <br> Avian Electronics<br> Ville Aalto<br> Sound performance</p><p>16:30 - 16:50 <br> ROCK/STAR Vol.1<br> Johan Högsten, Erika Rustamova, murrettumeri<br> Audio-visual dance performance</p><p>17:00 - 17:20 <br> How to know if your compost worms are happy?<br> Merle Karp &amp; Leo Pahta<br> Audio-visual performance</p><p>17:30 - 17:50 <br> Venus of the Baltic Sea<br> Haverinen Calderón<br> Sound (visual) performance</p><p>18:00 - 18:20 <br> bonk~<br> bonk~<br> Audio-visual performance</p><p> <strong>Aura's (2nd floor) program</strong> <br> 13:00 - 20:00<br> Aural Labyrinth<br> Konsta Klemetti<br> Sound and movement performance</p><p>Website: <a href=\"https://aaniaalto.fi/\">aaniaalto.fi</a></p><p>Organized by Ääniaalto.</p>"
            },
            "name": {
                "fi": "Ääniaalto-mediafestivaali, päivä 2",
                "en": "Ääniaalto media festival day 2"
            },
            "short_description": {
                "fi": "Tutustu avoimeen ja maksuttomaan mediafestivaaliin.",
                "en": "Come and enjoy the free festival!"
            },
            "location_extra_info": {
                "fi": "Maijansali 1. krs, Aura 2. krs",
                "en": "Maijansali 1st floor, Aura 2nd floor"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268044/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265135",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2738,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:30:51.248355Z",
                    "last_modified_time": "2023-08-15T15:30:51.248375Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{B06386EA-3317-4271-BD4E-CBAA9DC95B40}/104837",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2738/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:38:42.881865Z",
            "last_modified_time": "2023-10-25T08:23:47.059620Z",
            "date_published": "2023-01-13T12:15:00Z",
            "start_time": "2023-09-24T08:00:00Z",
            "end_time": "2023-09-24T10:00: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista.</p><p>Nähdään joka toinen sunnuntai Sellossa!</p>"
            },
            "name": {
                "fi": "Lukukoira Fila"
            },
            "short_description": {
                "fi": "Lukukoira Fila tavattavissa Sellossa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265135/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265105",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8344/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10817/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2639,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:38.067145Z",
                    "last_modified_time": "2024-02-06T13:39:09.508698Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{CD66F78D-6AED-451D-BA2A-808C0C717A45}/79633",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2639/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:44:29.936495Z",
            "last_modified_time": "2023-10-25T06:23:53.114526Z",
            "date_published": "2023-01-12T13:50:00Z",
            "start_time": "2023-10-10T06:30:00Z",
            "end_time": "2023-10-10T12:00: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Ongelmia tietokoneen tai tabletin kanssa? Nyt on mahdollisuus saada apua tietoteknisiin ongelmiin.</p><p>Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Opastukseen voi tuoda oman laitteen mukaan. Digitalkkari on opiskelija, joka suorittaa kirjastossa opintoihinsa liittyvää harjoittelujaksoa 15.8.–10.10. maanantaisin ja tiistaisin klo 9–15.</p><p>Varaa opastusaika puhelimitse: 09-3108 5020, kirjaston asiakaspalvelupisteestä tai sähköisestä ajanvarauskalenterista: <a href=\"https://outlook.office365.com/owa/calendar/Lauttasaarenkirjasto@helsinginkaupunki.onmicrosoft.com/bookings/\">Digitalkkari ajanvaraus</a></p>"
            },
            "name": {
                "fi": "Digitalkkari Lauttasaaren kirjastossa"
            },
            "short_description": {
                "fi": "Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Varaa aika opastukseen!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265105/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265098",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8344/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10817/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2639,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:38.067145Z",
                    "last_modified_time": "2024-02-06T13:39:09.508698Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{CD66F78D-6AED-451D-BA2A-808C0C717A45}/79633",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2639/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:43:54.987295Z",
            "last_modified_time": "2023-10-25T06:23:48.406766Z",
            "date_published": "2023-01-12T13:50:00Z",
            "start_time": "2023-10-09T06:30:00Z",
            "end_time": "2023-10-09T12:00: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Ongelmia tietokoneen tai tabletin kanssa? Nyt on mahdollisuus saada apua tietoteknisiin ongelmiin.</p><p>Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Opastukseen voi tuoda oman laitteen mukaan. Digitalkkari on opiskelija, joka suorittaa kirjastossa opintoihinsa liittyvää harjoittelujaksoa 15.8.–10.10. maanantaisin ja tiistaisin klo 9–15.</p><p>Varaa opastusaika puhelimitse: 09-3108 5020, kirjaston asiakaspalvelupisteestä tai sähköisestä ajanvarauskalenterista: <a href=\"https://outlook.office365.com/owa/calendar/Lauttasaarenkirjasto@helsinginkaupunki.onmicrosoft.com/bookings/\">Digitalkkari ajanvaraus</a></p>"
            },
            "name": {
                "fi": "Digitalkkari Lauttasaaren kirjastossa"
            },
            "short_description": {
                "fi": "Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Varaa aika opastukseen!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265098/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}