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&hide_recurring_children=true&page=134
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19432,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=135",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=133"
    },
    "data": [
        {
            "id": "kulke:64484",
            "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:32/?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: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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152480,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-19T13:14:24.378509Z",
                    "last_modified_time": "2024-09-19T13:14:24.378525Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757543.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152480/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-19T13:14:24.343808Z",
            "last_modified_time": "2024-12-20T01:14:05.468463Z",
            "date_published": null,
            "start_time": "2024-11-13T10:00:00Z",
            "end_time": "2024-11-13T11: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D677DE667628E0784D42B7EB01A621C6/Liikkeella_marraskuussa_Soup_Talks",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D677DE667628E0784D42B7EB01A621C6/Liikkeella_marraskuussa_Soup_Talks",
                "en": "http://www.caisa.fi/en/events/event/D677DE667628E0784D42B7EB01A621C6/Moving_in_November_Soup_Talks"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.",
                "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.",
                "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival."
            },
            "description": {
                "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Rébecca Chaillon",
                "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Rébecca Chaillon",
                "en": "Moving in November: Soup Talks – Talk with Rébecca Chaillon"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64484/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64584",
            "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:31/?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: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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152441,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-17T10:14:06.404253Z",
                    "last_modified_time": "2024-09-17T10:14:06.404267Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758082.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152441/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-17T10:14:06.390935Z",
            "last_modified_time": "2024-12-20T01:14:05.379301Z",
            "date_published": null,
            "start_time": "2024-11-13T09:00:00Z",
            "end_time": "2024-11-13T11: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/90C113575AFF2470AB74B7BBC16BCEE7/Keskiviikon_lounasjamit",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/90C113575AFF2470AB74B7BBC16BCEE7/Jams_till_onsdagslunchen",
                "en": "http://www.kanneltalo.fi/en/events/event/90C113575AFF2470AB74B7BBC16BCEE7/Wednesday_lunch_jams"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.",
                "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.",
                "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage."
            },
            "description": {
                "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>",
                "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>",
                "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>"
            },
            "provider": null,
            "name": {
                "fi": "Keskiviikon lounasjamit",
                "sv": "Jams till onsdagslunchen",
                "en": "Wednesday lunch jams"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64584/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64521",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152304,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-05T11:13:59.423241Z",
                    "last_modified_time": "2024-09-05T11:13:59.423254Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749841.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152304/?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": "2024-09-05T11:13:59.404679Z",
            "last_modified_time": "2024-12-20T01:14:05.292492Z",
            "date_published": null,
            "start_time": "2024-11-13T08:00:00Z",
            "end_time": "2024-11-13T10: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5EA6ACEF5AD52E6D86893E4C9CABFE1D/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5EA6ACEF5AD52E6D86893E4C9CABFE1D/Knattebion",
                "en": "http://www.annantalo.fi/en/events/event/5EA6ACEF5AD52E6D86893E4C9CABFE1D/Toddler_cinema"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "description": {
                "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>",
                "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>",
                "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>"
            },
            "provider": null,
            "name": {
                "fi": "Naperokino",
                "sv": "Knattebion",
                "en": "Toddler cinema"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64521/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64425",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:p1235/?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,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152189,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T12:14:55.743340Z",
                    "last_modified_time": "2024-08-22T12:14:55.743356Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757126.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152189/?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": "2024-08-22T12:14:55.711854Z",
            "last_modified_time": "2024-12-20T01:14:05.206182Z",
            "date_published": null,
            "start_time": "2024-11-13T07: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A0E00689A4B9C32A73D71D9783595421/Skidikino_Myyra_laaketta_etsimassa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A0E00689A4B9C32A73D71D9783595421/Skidikino",
                "en": "http://www.vuotalo.fi/en/events/event/A0E00689A4B9C32A73D71D9783595421/Skidikino"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa."
            },
            "description": {
                "fi": "<p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Syksyn Skidikinossa Myyrä lähtee etsimään lääkettä ystävälleen. Tsekkiläisen Zdenek Milerin luoma vekkuli Myyrä-hahmo tarjoaa riemukkaita hetkiä kaikenikäisille.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Kieli: Elokuvassa on musiikkisäestys, ei puhetta. <br>Kesto: n. 30 min<br>Ikäraja: S</p><p>Esitykset <br>klo 9:00-9:30<br>ja<br>klo 10:30–11</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök. Vuotalo - Taidekasvatus</p><p>Längd: ca. 30 min<br>Språk: inget språk, musik<br>Anmälan för grupper på kultus.fi<br>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema. Vuotalo - Taidekasvatus</p><p>Duration: 30 min<br>Language: no language, only music<br>Registration for daycare groups at kultus.fi<br>More information: salla.fornaro@hel.fi</p>"
            },
            "provider": null,
            "name": {
                "fi": "Skidikino: Myyrä lääkettä etsimässä",
                "sv": "Skidikino",
                "en": "Skidikino"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64425/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64454",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@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:49/?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: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/einstein-and-margarita-3711528/",
                        "en": "https://www.lippu.fi/artist/savoy-teatteri/einstein-and-margarita-3711528/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152223,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-27T10:13:32.083515Z",
                    "last_modified_time": "2024-08-27T10:13:32.083528Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753751.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152223/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-27T10:13:32.052097Z",
            "last_modified_time": "2024-12-20T01:14:05.114016Z",
            "date_published": null,
            "start_time": "2024-11-12T17:00:00Z",
            "end_time": "2024-11-12T18:40: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3149113A1E52EF65DDE8C92D6920D4C9/Einstein_Margarita_",
                "en": "http://www.savoyteatteri.fi/en/events/event/3149113A1E52EF65DDE8C92D6920D4C9/Einstein_Margarita_"
            },
            "provider_contact_info": null,
            "short_description": {
                "ru": "ЭЙНШТЕЙН И МАРГАРИТА - спектакль по пьесе Александра Гельмана «Альмар»"
            },
            "description": {
                "fi": "<p>Aftersunset tuo Helsinkiin kuuluisan näytelmän suuresta rakkaudesta ja atomipommista. Margarita Konekovan ja Albert Einsteinin välisiin rakkauskirjeisiin perustuva Alexander Gelmanin kirjoittama näytelmä kertoo salasuhteen viimeisistä päivistä vuonna 1945.</p><p>Näytelmä esitetään venäjän kielellä.</p><p>*</p>",
                "en": "<p>*This play is performed in Russian</p><p>EINSTEIN AND MARGARITA<br>A play about a great love and the atomic bomb.</p><p>Starring Ksenia Rappoport and Alexei Serebryakov<br>Directed by Alexander Marin<br>Written by Alexander Gelman<br>Set design: Alexey Serebryakov<br>Costumes: Svetlana Tegin<br>Choreography: Maria Serebryakova</p><p>In 1935, Princeton University commissioned a sculpture of Albert Einstein. The sculptor, Russian emigré Sergey Konenkov, arrived to Princeton with his wife Margarita, who began a wild affair with the world-famous physicist, lasting until August 1945. After the U.S. has just dropped the atomic bombs on Hiroshima and Nagasaki, Einstein blames himself for his part in the creation of nuclear weapons, when Margarita informs him that in a week, after many years in America, she and her husband are returning to the Soviet Union for good. Based on the recently discovered letters written by Albert Einstein to Margarita Konenkova, this play by playwright Alexander Gelman details the last days of the secret lovers' time together. The audience is invited into Einstein's Princeton's residence, an intimate setting where terrible words will be spoken and a terrible secret will be revealed. Celebrated actors Ksenia Rappoport and Alexei Serebryakov have previously worked on several films, but this is the first time they share a theater stage together.</p><p>Duration: 1 hour 45 minutes, no intermission<br>Age limit: 16+</p><p>*</p>",
                "ru": "<p>«ЭЙНШТЕЙН И МАРГАРИТА» - спектакль по пьесе Александра Гельмана «Альмар»</p><p>История о любви и атомной бомбе</p><p>В спектакле заняты: Ксения Раппопорт, Алексей Серебряков<br>Режиссер: Александр Марин<br>Сценография: Алексей Серебряков<br>Костюмы: Светлана Тегин<br>Хореография: Мария Серебрякова</p><p>Ксения Раппопорт и Алексей Серебряков не раз встречались на съемочной площадке, но впервые окажутся вместе на одной сцене. Спектакль о большой любви и атомной бомбе «Эйнштейн и Маргарита» поставил режиссер Александр Марин.</p><p>В 1935 году институт в Принстоне заказал русскому эмигранту Сергею Коненкову скульптурный портрет Альберта Эйнштейна. Жена скульптора Маргарита тогда познакомилась со знаменитым физиком и оказалась его единственной любовью на многие годы. Два незаурядных человека оказались вместе в непростой ситуации в столь историческую эпоху.</p><p>В новой пьесе советского и российского драматурга Александра Гельмана «Альмар» действие происходит в доме Эйнштейна, в ночь, когда туда приезжает Конёнкова. За окном август 1945 года, США только что сбросили атомные бомбы на Хиросиму и Нагасаки. Эйнштейн, сбежавший в Америку от нацистов и надвигающейся войны, остро переживает все происходящее и винит себя в причастности к созданию американцами ядерного оружия. Маргарита сообщает ему, что через неделю, после многих лет жизни в Америке, она с мужем уезжает обратно в Советский Союз. Навсегда. Эйнштейн попытается уговорить ее остаться, но тщетно – расставание неизбежно. Маргарита уедет в Советский Союз, а Эйнштейн будет писать ей в Москву пронзительные письма.</p><p>Тихой ночью в скромном доме ученого в Принстоне будут произнесены ужасные слова и раскрыта страшная тайна...</p><p>Этот спектакль исполняется на русском языке.<br>Возрастное ограничение 16+<br>Продолжительность: 1 час 45 минут, без антракта</p>"
            },
            "provider": {
                "fi": "Aftersunset Finland"
            },
            "name": {
                "fi": "Einstein & Margarita – Loppuunmyyty! / Sold out!",
                "en": "Einstein & Margarita – Sold out!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64454/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64474",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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: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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,80 € / 33,90 €",
                        "sv": "17,80 € / 33,90 €",
                        "en": "17,80 € / 33,90 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/",
                        "sv": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/",
                        "en": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-kulttuurikeskus-caisa-19127743/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152396,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-12T07:14:28.430703Z",
                    "last_modified_time": "2024-09-12T07:14:28.430723Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757525.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152396/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-12T07:14:28.401565Z",
            "last_modified_time": "2024-12-20T01:14:05.012276Z",
            "date_published": null,
            "start_time": "2024-11-12T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/104CCE5407515821AD1E5350BF698BCB/Liikkeella_marraskuussa_R_becca_Chaillon_Whitewashing",
                "sv": "http://www.caisa.fi/sv/evenemang/event/104CCE5407515821AD1E5350BF698BCB/Liikkeella_marraskuussa_R_becca_Chaillon_Whitewashing",
                "en": "http://www.caisa.fi/en/events/event/104CCE5407515821AD1E5350BF698BCB/Moving_in_November_R_becca_Chaillon_Whitewashing"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Termi \"whitewashing\" viittaa usein valkoisiin näyttelijöihin, jotka esittävät rodullistettuja hahmoja. Tässä teoksessa Rébecca Chaillon määrittelee termin uudelleen ja ottaa sen käyttöön käsitelläkseen ihon vaalentamista.",
                "sv": "Begreppet ”whitewashing” syftar ofta på vita skådespelare som spelar karaktärer av en viss ras. I detta verk omdefinierar Rébecca Chaillon termen och använder den för att behandla hudblekning.",
                "en": "The term \"Whitewashing\" often refers to white actors portraying racialized characters. In this performance, Rébecca Chaillon redefines and reclaims the term to address skin lightening."
            },
            "description": {
                "fi": "<p>Termi \"whitewashing\" viittaa usein valkoisiin näyttelijöihin, jotka esittävät rodullistettuja hahmoja. Tässä teoksessa Rébecca Chaillon määrittelee termin uudelleen ja ottaa sen käyttöön käsitelläkseen ihon vaalentamista.</p><p>Näyttämöllä Chaillon hankaa valkaisuainetta ensin lattialle ja sitten iholleen tutkien jännitettä, joka syntyy valkoisessa yhteiskunnassa mustan siivoojan ruumiiseen. Tämä rituaali vahvistaa hänen olemassaoloaan rasismin etäännyttävää voimaa vastaan ja kutsuu yleisön seuraamaan läheltä, kuinka ruumis, jonka yhteiskunta yrittää tehdä näkymättömäksi, tulee yhä näkyvämmäksi ja vahingoittumattomaksi.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 7.–17.11.2024. Osana festivaalia Chaillon käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 13.11. klo 12 Caisassa.</p><p><b>Rébecca Chaillon</b> on kirjailija, ohjaaja ja esiintyjä. Hän ammentaa inspiraatiota monista identiteeteistä luodakseen rohkeita ja transgressiivisia teoksia, joissa yhdistyvät selfmakeup-praktiikka ja kiinnostus ruokaan osana näyttämötaidetta. Chaillon syntyi Martiniquella ja kasvoi Picardiassa, Ranskassa.</p><p>Kesto: 80 minuutta<br>Huom! Teos sisältää alastomuutta ja viittauksia rasismiin.</p><p>Ohjaus: Récca Chaillon<br>Teksti: Rébecca Chaillon ja Aurore Déon<br>Esiintyjät: Rébecca Chaillon ja Aurore Déon<br>Yleinen näyttämöjohtaminen ja tekninen operointi: Suzanne Péchenart<br>Käännös ja tekstitys: Lisa Wegener<br>Tuotanto/kehitys: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol<br>Vierailua tukee: Institut Français Finlande, Niilo Helanderin säätiö<br>Vierailu yhteistyössä: Caisa</p>",
                "sv": "<p>Begreppet ”whitewashing” syftar ofta på vita skådespelare som spelar karaktärer av en viss ras. I detta verk omdefinierar Rébecca Chaillon termen och använder den för att behandla hudblekning.</p><p>På scenen gnider Chaillon in blekmedel först på golvet och sedan på sin egen hud, och utforskar på så sätt den spänning som skapas i det vita samhället kring en svart städares kropp. Denna ritual bekräftar hennes existens mot rasismens avståndstagande kraft och bjuder in publiken att på nära håll följa hur en kropp som samhället försöker osynliggöra blir alltmer synlig och osårbar.</p><p>Verket är en del av festivalen Liikkeellä marraskuussa 7–17.11.2024. Som en del av festivalen kommer Chaillon att samtala med en lokal konstnär på det öppna evenemanget Soup Talks den 13 november kl. 12.00 i Caisa.</p><p><b>Rébecca Chaillon</b> är författare, regissör och skådespelare. Hon hämtar inspiration från flera olika identiteter för att skapa djärva och gränsöverskridande verk som kombinerar selfmakeup-praktiken med ett intresse för mat som en del av scenkonst. Chaillon föddes på Martinique och växte upp i Picardie i Frankrike.</p><p>Längd: 80 minuter</p><p>Obs! Verket innehåller nakenhet och referenser till rasism.</p><p>Regi:: Rébecca Chaillon<br>Text: Rébecca Chaillon och Aurore Déon<br>I rollerna: Rébecca Chaillon och Aurore Déon<br>Allmän scenledning och teknisk ledning: Suzanne Péchenart<br>Översättning och textning: Lisa Wegener<br>Produktion/utveckling: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol<br>Besöket stöds av: Institut Français Finlande, Niilo Helanders stiftelse<br>Besöket genomförs i samarbete med: Caisa</p>",
                "en": "<p>The term \"Whitewashing\" often refers to white actors portraying racialized characters. In this performance, Rébecca Chaillon redefines and reclaims the term to address skin lightening.</p><p>On stage, she scrubs bleach on the floor and her skin, exploring the tension of being a Black cleaning woman in a white society. This ritual affirms her existence against the alienating force of racism, inviting the audience to watch closely, as a body that society tries to render invisible becomes increasingly visible and undamaged.</p><p>The performance is part of Moving in November festival 7.-17.11.2024. As part of the festival, there will be an open discussion with Chaillon and local host called Soup Talk on the 13th of November at noon in Caisa.</p><p><b>Rébecca Chaillon</b>, an author, director, and performer, draws inspiration from her multiple identities to create bold and transgressive performances that incorporate her practice of artistic self-makeup and her fascination with food. Born in Martinique and raised in Picardy, she began her artistic journey in Paris, studying performing arts at the Conservatoire of the 20th arrondissement. She has worked with theatre companies like Entrées de jeu and she founded her own company: Dans le Ventre, in 2006.</p><p>Duration: 80 minutes<br>Please note: This performance contains references to racism and nudity.</p><p>Direction: Rébecca Chaillon<br>Text: Rébecca Chaillon and Aurore Déon<br>With: Rébecca Chaillon and Aurore Déon<br>General Stage Management & Technical Operations: Suzanne Péchenart<br>Translation and Subtitling: Lisa Wegener<br>Production / Development: L’Oeil Ecoute – Mara Teboul, Elise Bernard & Amandine Loriol <br>Visit supported by: Institut Français Finlande, Niilo Helander’s foundation<br>Visit in collaboration: Caisa</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Rébecca Chaillon: Whitewashing",
                "sv": "Liikkeellä marraskuussa – Rébecca Chaillon: Whitewashing",
                "en": "Moving in November – Rébecca Chaillon: Whitewashing"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64474/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64566",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,80 € / 33,90 €",
                        "sv": "17,80 € / 33,90 €",
                        "en": "17,80 € / 33,90 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-stoa-19127243/",
                        "sv": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-stoa-19127243/",
                        "en": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-stoa-19127243/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152395,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-12T07:14:28.324245Z",
                    "last_modified_time": "2024-09-12T07:14:28.324263Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757929.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152395/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-12T07:14:28.301921Z",
            "last_modified_time": "2024-12-20T01:14:04.905279Z",
            "date_published": null,
            "start_time": "2024-11-12T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/89629FD98C048A40202A897118986DC6/Liikkeella_marraskuussa_Milla_Koistinen_GRIT_for_what_it_s_worth_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/89629FD98C048A40202A897118986DC6/Liikkeella_marraskuussa_Milla_Koistinen_GRIT_for_what_it_s_worth_",
                "en": "http://www.stoa.fi/en/events/event/89629FD98C048A40202A897118986DC6/Moving_in_November_Milla_Koistinen_GRIT_for_what_it_s_worth_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Milla Koistisen teos GRIT (for what it's worth) on avaus tulevalle esityssarjalle, joka heijastaa henkilökohtaista kestävyyttä: fyysistä ja henkistä, vaatimusta rajojen ylittämisestä.",
                "sv": "Milla Koistinens GRIT (for what it’s worth) är det första verket i en kommande serie föreställningar som speglar personlig uthållighet: fysisk och mental samt kravet på att tänja gränserna.",
                "en": "GRIT (for what it's worth) by Milla Koistinen is an opening for her upcoming performance series, reflecting personal endurance: physical and mental, a requirement to push boundaries and transcend limitations."
            },
            "description": {
                "fi": "<p>Milla Koistisen teos GRIT (for what it's worth) on avaus tulevalle esityssarjalle, joka heijastaa henkilökohtaista kestävyyttä: fyysistä ja henkistä, vaatimusta rajojen ylittämisestä.</p><p>Urheilun ja esittävän taiteen yhteisiä sosiaalisia tiloja tutkimalla GRIT (for what it's worth) syventyy kykyyn kestää vaikeuksia, väsymystä ja esteitä ilmentäen sietokykyä sen henkilökohtaisimmassa muodossa.</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä.</p><p><b>Milla Koistinen</b> on Helsingissä ja Berliinissä asuva suomalainen koreografi. Hän valmistui Teatterikorkeakoulusta tanssin maisteriksi ja koreografian maisteriksi HZT Berliinistä. Hän on tehnyt yhteistyötä mm. Kristian Smedsin, Hiroaki Umedan ja Christine Gaiggin kanssa, ja hänen töitään on esitetty Radialsystemissä Berliinissä, Tanssin talossa Helsingissä ja Tanzhaus NRW:ssä. Hän sai danceWEB-stipendin Impulstanz Wieniin vuonna 2010. Koistinen on toiminut vierailevana opettajana muun muassa SEAD Salzburgissa, Tanzhaus NRW:ssä, Sasha Waltz & Guestsissa, Helsingin Teatterikorkeakoulussa ja HZT Berliinissä. Vuonna 2019 hän toimi luennoitsijana Helsingin Kuvataideakatemiassa. Vuosina 2020–2024 hänen työskentelyään tukee apap – FEMINIST FUTURES, jota osarahoittaa Euroopan unionin Luova Eurooppa -ohjelma.</p><p>Kesto: noin 60min</p><p>Konsepti, koreografia ja esitys: Milla Koistinen<br>Äänisuunnittelu: Paul Valikoski ja Grégoire Simon<br>Valosuunnittelu: Meri Ekola<br>Dramaturgia: Synne Behrndt<br>Lavastus ja puku: Teo Paaer<br>Teo Paaerin assistentti: Nour Ainasoja<br>Taiteellinen dialogi: Ringa Ropo ja Thomas Broich<br>Tuotanto: Milla Koistinen<br>Tukijat: Suomen Kulttuurirahasto ja Helsingin kaupunki<br>Yhteistyössä: Liikkeellä marraskuussa, Stoa</p><p>Ensi-ilta 11.11.2024 Stoassa Liikkeellä marraskuussa -festivaaleilla.</p>",
                "sv": "<p>Milla Koistinens GRIT (for what it’s worth) är det första verket i en kommande serie föreställningar som speglar personlig uthållighet: fysisk och mental samt kravet på att tänja gränserna.</p><p>GRIT (for what it’s worth) utforskar idrottens och scenkonstens gemensamma sociala rum och handlar om förmågan att stå emot svårigheter, trötthet och hinder, vilket förkroppsligar motståndskraften i dess mest personliga form.</p><p>Verket är en del av programmet Focus on the Local Landscape – Paikallisjälkiä inom ramen för festivalen Liikkeellä marraskuussa.</p><p><b>Milla Koistinen</b> är en finländsk koreograf baserad i Helsingfors och Berlin. Hon har en magisterexamen i dans från Teaterhögskolan och en magisterexamen i koreografi från HZT Berlin. Hon har samarbetat med bl.a. Kristian Smeds, Hiroaki Umeda och Christine Gaigg och hennes verk har presenterats på Radialsystem i Berlin, Dansens hus i Helsingfors och Tanzhaus NRW. Hon tilldelades ett danceWEB-stipendium till Impulstanz Wien 2010. Koistinen har varit gästlärare vid bland annat SEAD Salzburg, Tanzhaus NRW, Sasha Waltz & Guests, Teaterhögskolan i Helsingfors och HZT Berlin. År 2019 verkade hon som föreläsare vid Helsingfors konstakademi. Åren 2020–2024 understöds hennes arbete av apap – FEMINIST FUTURES, som delfinansieras av Europeiska unionens program Kreativa Europa.</p><p>Längd: ca 60 min.</p><p>Koncept, koreografi och framförande: Milla Koistinen<br>Ljuddesign: Paul Valikoski och Grégoire Simon<br>Ljusdesign: Meri Ekola<br>Dramaturgi: Synne Behrndt<br>Scenografi och kostym: Teo Paaer<br>Teo Paaers assistent: Nour Ainasoja<br>Konstnärlig dialog: Ringa Ropo och Thomas Broich<br>Produktion: Milla Koistinen<br>Mecenat: Suomen Kulttuurirahasto och Helsingfors stad<br>I samarbete med: Liikkeellä marraskuussa, Stoa</p><p>Premiär 11.11.2024 på Stoa på festivalen Liikkeellä marraskuussa.</p>",
                "en": "<p>GRIT (for what it's worth) by Milla Koistinen is an opening for her upcoming performance series, reflecting personal endurance: physical and mental, a requirement to push boundaries and transcend limitations.</p><p>While investigating the shared social spaces between sports and performing arts, GRIT (for what it's worth) examines the ability to persevere through hardships, fatigue and obstacles, embodying the spirit of endurance in its most personal form.</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November.</p><p><b>Milla Koistinen</b> is a Helsinki-Berlin-based Finnish choreographer. She graduated from the Theatre Academy in Helsinki with an MA in Dance and holds an MA in Choreography from HZT Berlin. She has collaborated with artists such as Kristian Smeds, Hiroaki Umeda and Christine Gaigg, and her work has been featured in venues like Radialsystem Berlin, Dance House Helsinki and Tanzhaus NRW. She received a danceWEB scholarship at Impulstanz Vienna in 2010. As a guest teacher, she has taught at institutions including SEAD Salzburg, Tanzhaus NRW, Sasha Waltz & Guests, the Theatre Academy of Helsinki and HZT Berlin. In 2019, she was a lecturer at the Academy of Fine Arts in Helsinki. From 2020 to 2024, her work is supported by apap – FEMINIST FUTURES, co-funded by the Creative Europe Programme of the European Union.</p><p>Duration: approx. 60min</p><p>Concept, choreography and performance: Milla Koistinen <br>Sound design: Paul Valikoski and Grégoire Simon <br>Light design: Meri Ekola <br>Dramaturgy: Synne Behrndt <br>Set design and Costume: Teo Paaer <br>Teo Paaer’s assistant: Nour Ainasoja <br>Dialogue partners: Ringa Ropo and Thomas Broich <br>Production by: Milla Koistinen <br>Supported by: the Finnish Cultural Foundation and the City of Helsinki <br>In collaboration with: Moving in November, Stoa<br> <br>Premiere on the 11th of November 2024 in Stoa, Helsinki at Moving in November</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Milla Koistinen: GRIT (for what it's worth)",
                "sv": "Liikkeellä marraskuussa – Milla Koistinen: GRIT (for what it's worth)",
                "en": "Moving in November – Milla Koistinen: GRIT (for what it's worth)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64566/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63829",
            "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:348/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "38,50 €",
                        "sv": "38,50 €",
                        "en": "38,50 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mark-hummel-band-feat-anson-funderburgh-usa-malmitalo-18716320/",
                        "sv": "https://www.lippu.fi/event/mark-hummel-band-feat-anson-funderburgh-usa-malmitalo-18716320/",
                        "en": "https://www.lippu.fi/event/mark-hummel-band-feat-anson-funderburgh-usa-malmitalo-18716320/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152333,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-06T14:14:25.809763Z",
                    "last_modified_time": "2024-09-06T14:14:25.809780Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753151.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-06T14:14:25.792704Z",
            "last_modified_time": "2024-12-20T01:14:04.798399Z",
            "date_published": null,
            "start_time": "2024-11-12T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6C7A79C8CEF97A512B22DCB9AEBE651C/Mark_Hummel_Band_feat_Anson_Funderburg_USA_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6C7A79C8CEF97A512B22DCB9AEBE651C/Mark_Hummel_Band_feat_Anson_Funderburg_USA_",
                "en": "http://www.malmitalo.fi/en/events/event/6C7A79C8CEF97A512B22DCB9AEBE651C/Mark_Hummel_Band_feat_Anson_Funderburg_USA_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Amerikkalainen superblues-bändi saapuu Malmitalolle!",
                "sv": "Det amerikanska superbluesbandet anländer till Malms kulturhus!",
                "en": "An American super blues band arrives at Malmitalo!"
            },
            "description": {
                "fi": "<p>Amerikkalainen superblues-bändi saapuu Malmitalolle!</p><p>“Mark Hummel on huuliharppuvirtuoosi. Hän on yksi instrumentin parhaista soittajista ikinä.” – Blues Revue Magazine</p><p>Anson Funderburg tunnetaan bluespiireissä poikkeuksellisista ja tiukoista kitarasooloistaan. Funderburghin tunnistettava tyyli, sävy ja herkkyys ovat tehneet hänestä yhden nykybluesin tärkeimmistä kitaristeista. Aikoinaan hänet tunnettiin amerikkalaisessa blues-skenessä nousijana, jonka hiljainen puhetapa jäi hänen terävien ja purevien kitarariffien varjoon. Anson on kehittynyt perinnetaiteilijaksi jonka vaikutus lukuisiin kitaristeihin on kiistämätön.</p><p>Rumpali Wes Starrilla on ansioluettelossaan nimekkäitä rymiä: Asleep At The Wheel, Delbert McClinton, Marcia Ball, Omar & The Howlers, Jimmy Vaughan, Willie Nelson, Jimmie Dale Gilmore ja muita!</p><p>Brittiläinen pianisti Bob Hall on puolestaan legendaarinen soittaja, joka on uransa aikana ehtinyt esiintyä lukuisilla blues-levyillä ja tehdä yhteistyötä alan huippujen kanssa. Vai miltä kuulostaa: Savoy Brown, Brunning Sunflower Blues Band w/Peter Green, The Groundhogs, Alexis Korner, Little Walter, Howlin Wolf, Jimmy Witherspoon, John Lee Hooker, Chuck Berry, Charlie Watts?</p><p>Kontrabasisti Bill Stuve on soittanut jo 29 vuotta Rod Piazza & Mighty Flyersin kanssa.</p><p>Kokoonpano on siis äärimmäisen laadukas ja mielenkiintoinen. Tule ihmeessä konserttiin kuulemaan alansa kansainvälistä parhaimmistoa.</p>",
                "sv": "<p>Det amerikanska superbluesbandet anländer till Malms kulturhus!</p><p>“Mark Hummel är en munspelsvirtuos. Han är en av de bästa som någonsin spelat instrumentet.” – Blues Revue Magazine</p><p>I blueskretsar är Anson Funderburg känd för sina exceptionella och tajta gitarrsolon. Funderburghs särpräglade stil, ton och känslighet har gjort honom till en av de viktigaste gitarristerna inom samtida blues. På den amerikanska bluesscenen kändes han förr som en uppkommande förmåga vars lågmälda tal överskuggades av hans skarpa och bitande gitarriff. Anson har utvecklats till en traditionell artist vars inflytande på många gitarrister är obestridligt.</p><p>Trummisen Wes Starr har stora namn på sin meritlista: Asleep At The Wheel, Delbert McClinton, Marcia Ball, Omar & The Howlers, Jimmy Vaughan, Willie Nelson, Jimmie Dale Gilmore och många fler!</p><p>Den brittiske pianisten Bob Hall är en legendarisk musiker som har spelat in ett stort antal bluesalbum och samarbetat med de bästa i branschen. Hur låter exempelvis följande: Savoy Brown, Brunning Sunflower Blues Band m/Peter Green, The Groundhogs, Alexis Korner, Little Walter, Howlin Wolf, Jimmy Witherspoon, John Lee Hooker, Chuck Berry, Charlie Watts?</p><p>Kontrabasisten Bill Stuve har redan i 29 års tid spelat med Rod Piazza & Mighty Flyers.</p><p>Ensemblen är därmed extremt högkvalitativ och intressant. Kom på konsert och hör det bästa som finns på den internationella scenen.</p>",
                "en": "<p>An American super blues band arrives at Malmitalo!</p><p>“Mark Hummel is a Harmonica Virtuoso. He is one of a handful of the Best Players ever on the Instrument”. – Blues Revue Magazine Anson</p><p>Funderburgh undeniably remains best known in the blues field for his extraordinarily concise lead guitar attack. Funderburgh’s unmistakable style, tone and sensibility has made him one of contemporary blues music’s most important guitar players. Once a clean-cut up-and-comer on the national blues scene who’s crisp, biting guitar licks belied his soft-spoken manner, Anson developed into a legacy artist and his influence on countless guitarists is immeasurable.</p><p>Drummer Wes Starr has impeccable credentials: Asleep At The Wheel, Delbert McClinton, Marcia Ball, Omar & The Howlers, Jimmy Vaughan, Willie Nelson, Jimmie Dale Gilmore, everyone!</p><p>UK Pianist Bob Hall is the legendary player on most blues gigs & records out of his country between 1965 to mid 80s including Savoy Brown, Brunning Sunflower Blues Band w/Peter Green, The Groundhogs, Alexis Korner, Little Walter, Howlin Wolf, Jimmy Witherspoon, John Lee Hooker and many more. Later Bob collaborated with Chuck Berry, Charlie Watts and numerous other names.</p><p>Upright bassist Bill Stuve is longtime Rod Piazza & Mighty Flyers player for 29 years.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Mark Hummel Band feat. Anson Funderburg (USA)",
                "sv": "Mark Hummel Band feat. Anson Funderburg (USA)",
                "en": "Mark Hummel Band feat. Anson Funderburg (USA)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63829/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63818",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151447,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T10:13:04.848927Z",
                    "last_modified_time": "2024-06-13T10:13:04.848943Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753139.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151447/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T10:13:04.834628Z",
            "last_modified_time": "2024-12-20T01:14:04.635095Z",
            "date_published": null,
            "start_time": "2024-11-12T15: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/685C5F3E004CB377794F9B6AB54F4690/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/685C5F3E004CB377794F9B6AB54F4690/Yhteislaulut",
                "en": "http://www.malmitalo.fi/en/events/event/685C5F3E004CB377794F9B6AB54F4690/Yhteislaulut"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!",
                "sv": "De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!",
                "en": "The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.</p><p>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti:</p><p>Ti 10.9. klo 17–18<br>Ti 8.10. klo 17–18<br>Ti 12.11. klo 17–18<br>Ti 10.12. klo 17–18</p><p>Tervetuloa mukaan!<br>Vapaa pääsy</p>",
                "sv": "<p>De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!</p><p>Här får alla sjunga härliga favoritlåtar av hjärtats lust under ledning av Jukka Okkonen och Pauli Kainulainen.</p><p>Allsången ordnas i den lilla salen i Malms kulturhus en gång i månaden på tisdagar.</p><p>Välkommen med!<br>Fritt inträde</p>",
                "en": "<p>The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to wonderful classics.</p><p>Sing-along sessions are held in the small hall of Malmitalo once a month on Tuesdays.</p><p>Welcome!<br>Free admission</p>"
            },
            "provider": null,
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Yhteislaulut",
                "en": "Yhteislaulut"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63818/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64896",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:55/?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:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152949,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-05T12:13:58.887513Z",
                    "last_modified_time": "2024-11-05T12:13:58.887528Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761438.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152949/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-05T12:13:58.871285Z",
            "last_modified_time": "2024-12-20T01:14:04.493440Z",
            "date_published": null,
            "start_time": "2024-11-12T10:00:00Z",
            "end_time": "2024-11-12T13: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/47E0CE8A10A5398D6190A41599E39C57/Venajankielinen_korutyopaja",
                "en": "http://www.stoa.fi/en/events/event/47E0CE8A10A5398D6190A41599E39C57/Russian-language_jewelry_workshop"
            },
            "provider_contact_info": null,
            "short_description": {
                "ru": "Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!"
            },
            "description": {
                "fi": "<p>Tervetuloa luovaan koruvalmistusworkshopiin Stoan kulttuurikeskukseen!<br> <br>Kutsumme sinut oppimaan tekemään yksinkertaisen mutta ainutlaatuisen choker-kaulakorun käyttäen luonnonkiviä, erilaisia helmiä ja korunosia. Yhdessä luomme korun, joka heijastaa persoonallisuuttasi ja tyyliäsi. Tämä on upea tilaisuus kehittää luovuutta, rentoutua ja tavata uusia ihmisiä! Työpaja on venäjänkielinen.<br> <br>Työpajaa järjestetään kolmena eri päivänä. Voit ilmoittautua yhdelle seuraavista päivistä:<br>Su 10.11, klo 12:00–15:00<br>Ti 12.11, klo 12:00–15:00<br>La 23.11, klo 14:00–17:00<br>Työpaja on maksuton, ja osallistujamäärä on rajoitettu 10 henkilöön per työpaja.<br> <br>Ilmoittautuminen sähköpostitse – ilmoitathan samalla, mihin päivään haluat osallistua: maria.bolshedonova@gmail.com.<br> <br>Työpajan vetäjästä:<br>Maria Bolshedonova on helsinkiläinen suunnittelija, jolla on laaja kokemus tekstiili- ja korusuunnittelusta. Hän järjestää luovia työpajoja ja kehittää omaa brändiään, Wild Fern Design.</p>",
                "ru": "<p>Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!</p><p>Приглашаем вас на трехчасовой мастер-класс, где вы научитесь создавать простой, но уникальный чокер, используя натуральные камни, различные бусины и фурнитуру. Вместе мы создадим украшение, которое отразит вашу индивидуальность и стиль. Это прекрасная возможность проявить творческий потенциал, расслабиться и найти новые знакомства!<br> <br>Мастер-класс проводится в три разных дня. Вы можете записаться на один из следующих дней:<br>Вс, 10.11, с 12:00 до 15:00<br>Вт, 12.11, с 12:00 до 15:00<br>Сб, 23.11, с 14:00 до 17:00<br> <br>Участие в мастер-классе бесплатно, количество мест ограничено — максимум 10 участников на каждую сессию.<br> <br>Для регистрации, пожалуйста, отправьте письмо на электронную почту и укажите дату, на которую хотите записаться: maria.bolshedonova@gmail.com<br> <br>О ведущей:<br>Мария Большедонова — дизайнер из Хельсинки с большим опытом в области текстильного и ювелирного дизайна. Она проводит творческие мастер-классы и развивает свой бренд Wild Fern Design.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Venäjänkielinen korutyöpaja",
                "en": "Russian-language jewelry workshop"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64896/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64483",
            "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:32/?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: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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152479,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-19T11:14:26.214620Z",
                    "last_modified_time": "2024-09-19T11:14:26.214634Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757541.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-19T11:14:26.199289Z",
            "last_modified_time": "2024-12-20T01:14:04.407575Z",
            "date_published": null,
            "start_time": "2024-11-12T10:00:00Z",
            "end_time": "2024-11-12T11: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C6E61717CD798240B740D7D69787DE14/Liikkeella_marraskuussa_Soup_Talks",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C6E61717CD798240B740D7D69787DE14/Liikkeella_marraskuussa_Soup_Talks",
                "en": "http://www.caisa.fi/en/events/event/C6E61717CD798240B740D7D69787DE14/Moving_in_November_Soup_Talks"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.",
                "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.",
                "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival."
            },
            "description": {
                "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Stina Nyberg",
                "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Stina Nyberg",
                "en": "Moving in November: Soup Talks – Talk with Stina Nyberg"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64483/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64565",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,80 € / 33,90 €",
                        "sv": "17,80 € / 33,90 €",
                        "en": "17,80 € / 33,90 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-stoa-19127242/",
                        "sv": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-stoa-19127242/",
                        "en": "https://www.lippu.fi/event/liikkeellae-marraskuussa-2024-stoa-19127242/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152394,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-12T07:14:28.130537Z",
                    "last_modified_time": "2024-09-12T07:14:28.130554Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757928.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152394/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-12T07:14:28.116088Z",
            "last_modified_time": "2024-12-20T01:14:04.316376Z",
            "date_published": null,
            "start_time": "2024-11-11T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/DA22304A93BC4AFD0CBB2E97C9F6A1F5/Liikkeella_marraskuussa_Milla_Koistinen_GRIT_for_what_it_s_worth_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/DA22304A93BC4AFD0CBB2E97C9F6A1F5/Liikkeella_marraskuussa_Milla_Koistinen_GRIT_for_what_it_s_worth_",
                "en": "http://www.stoa.fi/en/events/event/DA22304A93BC4AFD0CBB2E97C9F6A1F5/Moving_in_November_Milla_Koistinen_GRIT_for_what_it_s_worth_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Milla Koistisen teos GRIT (for what it's worth) on avaus tulevalle esityssarjalle, joka heijastaa henkilökohtaista kestävyyttä: fyysistä ja henkistä, vaatimusta rajojen ylittämisestä.",
                "sv": "Milla Koistinens GRIT (for what it’s worth) är det första verket i en kommande serie föreställningar som speglar personlig uthållighet: fysisk och mental samt kravet på att tänja gränserna.",
                "en": "GRIT (for what it's worth) by Milla Koistinen is an opening for her upcoming performance series, reflecting personal endurance: physical and mental, a requirement to push boundaries and transcend limitations."
            },
            "description": {
                "fi": "<p>Milla Koistisen teos GRIT (for what it's worth) on avaus tulevalle esityssarjalle, joka heijastaa henkilökohtaista kestävyyttä: fyysistä ja henkistä, vaatimusta rajojen ylittämisestä.</p><p>Urheilun ja esittävän taiteen yhteisiä sosiaalisia tiloja tutkimalla GRIT (for what it's worth) syventyy kykyyn kestää vaikeuksia, väsymystä ja esteitä ilmentäen sietokykyä sen henkilökohtaisimmassa muodossa.</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä.</p><p><b>Milla Koistinen</b> on Helsingissä ja Berliinissä asuva suomalainen koreografi. Hän valmistui Teatterikorkeakoulusta tanssin maisteriksi ja koreografian maisteriksi HZT Berliinistä. Hän on tehnyt yhteistyötä mm. Kristian Smedsin, Hiroaki Umedan ja Christine Gaiggin kanssa, ja hänen töitään on esitetty Radialsystemissä Berliinissä, Tanssin talossa Helsingissä ja Tanzhaus NRW:ssä. Hän sai danceWEB-stipendin Impulstanz Wieniin vuonna 2010. Koistinen on toiminut vierailevana opettajana muun muassa SEAD Salzburgissa, Tanzhaus NRW:ssä, Sasha Waltz & Guestsissa, Helsingin Teatterikorkeakoulussa ja HZT Berliinissä. Vuonna 2019 hän toimi luennoitsijana Helsingin Kuvataideakatemiassa. Vuosina 2020–2024 hänen työskentelyään tukee apap – FEMINIST FUTURES, jota osarahoittaa Euroopan unionin Luova Eurooppa -ohjelma.</p><p>Kesto: noin 60min</p><p>Konsepti, koreografia ja esitys: Milla Koistinen<br>Äänisuunnittelu: Paul Valikoski ja Grégoire Simon<br>Valosuunnittelu: Meri Ekola<br>Dramaturgia: Synne Behrndt<br>Lavastus ja puku: Teo Paaer<br>Teo Paaerin assistentti: Nour Ainasoja<br>Taiteellinen dialogi: Ringa Ropo ja Thomas Broich<br>Tuotanto: Milla Koistinen<br>Tukijat: Suomen Kulttuurirahasto ja Helsingin kaupunki<br>Yhteistyössä: Liikkeellä marraskuussa, Stoa</p><p>Ensi-ilta 11.11.2024 Stoassa Liikkeellä marraskuussa -festivaaleilla.</p>",
                "sv": "<p>Milla Koistinens GRIT (for what it’s worth) är det första verket i en kommande serie föreställningar som speglar personlig uthållighet: fysisk och mental samt kravet på att tänja gränserna.</p><p>GRIT (for what it’s worth) utforskar idrottens och scenkonstens gemensamma sociala rum och handlar om förmågan att stå emot svårigheter, trötthet och hinder, vilket förkroppsligar motståndskraften i dess mest personliga form.</p><p>Verket är en del av programmet Focus on the Local Landscape – Paikallisjälkiä inom ramen för festivalen Liikkeellä marraskuussa.</p><p><b>Milla Koistinen</b> är en finländsk koreograf baserad i Helsingfors och Berlin. Hon har en magisterexamen i dans från Teaterhögskolan och en magisterexamen i koreografi från HZT Berlin. Hon har samarbetat med bl.a. Kristian Smeds, Hiroaki Umeda och Christine Gaigg och hennes verk har presenterats på Radialsystem i Berlin, Dansens hus i Helsingfors och Tanzhaus NRW. Hon tilldelades ett danceWEB-stipendium till Impulstanz Wien 2010. Koistinen har varit gästlärare vid bland annat SEAD Salzburg, Tanzhaus NRW, Sasha Waltz & Guests, Teaterhögskolan i Helsingfors och HZT Berlin. År 2019 verkade hon som föreläsare vid Helsingfors konstakademi. Åren 2020–2024 understöds hennes arbete av apap – FEMINIST FUTURES, som delfinansieras av Europeiska unionens program Kreativa Europa.</p><p>Längd: ca 60 min.</p><p>Koncept, koreografi och framförande: Milla Koistinen<br>Ljuddesign: Paul Valikoski och Grégoire Simon<br>Ljusdesign: Meri Ekola<br>Dramaturgi: Synne Behrndt<br>Scenografi och kostym: Teo Paaer<br>Teo Paaers assistent: Nour Ainasoja<br>Konstnärlig dialog: Ringa Ropo och Thomas Broich<br>Produktion: Milla Koistinen<br>Mecenat: Suomen Kulttuurirahasto och Helsingfors stad<br>I samarbete med: Liikkeellä marraskuussa, Stoa</p><p>Premiär 11.11.2024 på Stoa på festivalen Liikkeellä marraskuussa.</p>",
                "en": "<p>GRIT (for what it's worth) by Milla Koistinen is an opening for her upcoming performance series, reflecting personal endurance: physical and mental, a requirement to push boundaries and transcend limitations.</p><p>While investigating the shared social spaces between sports and performing arts, GRIT (for what it's worth) examines the ability to persevere through hardships, fatigue and obstacles, embodying the spirit of endurance in its most personal form.</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November.</p><p><b>Milla Koistinen</b> is a Helsinki-Berlin-based Finnish choreographer. She graduated from the Theatre Academy in Helsinki with an MA in Dance and holds an MA in Choreography from HZT Berlin. She has collaborated with artists such as Kristian Smeds, Hiroaki Umeda and Christine Gaigg, and her work has been featured in venues like Radialsystem Berlin, Dance House Helsinki and Tanzhaus NRW. She received a danceWEB scholarship at Impulstanz Vienna in 2010. As a guest teacher, she has taught at institutions including SEAD Salzburg, Tanzhaus NRW, Sasha Waltz & Guests, the Theatre Academy of Helsinki and HZT Berlin. In 2019, she was a lecturer at the Academy of Fine Arts in Helsinki. From 2020 to 2024, her work is supported by apap – FEMINIST FUTURES, co-funded by the Creative Europe Programme of the European Union.</p><p>Duration: approx. 60min</p><p>Concept, choreography and performance: Milla Koistinen <br>Sound design: Paul Valikoski and Grégoire Simon <br>Light design: Meri Ekola <br>Dramaturgy: Synne Behrndt <br>Set design and Costume: Teo Paaer <br>Teo Paaer’s assistant: Nour Ainasoja <br>Dialogue partners: Ringa Ropo and Thomas Broich <br>Production by: Milla Koistinen <br>Supported by: the Finnish Cultural Foundation and the City of Helsinki <br>In collaboration with: Moving in November, Stoa<br> <br>Premiere on the 11th of November 2024 in Stoa, Helsinki at Moving in November</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Milla Koistinen: GRIT (for what it's worth)",
                "sv": "Liikkeellä marraskuussa – Milla Koistinen: GRIT (for what it's worth)",
                "en": "Moving in November – Milla Koistinen: GRIT (for what it's worth)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64565/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63688",
            "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:104/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151919,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T08:14:34.294892Z",
                    "last_modified_time": "2024-07-26T08:14:34.294911Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752034.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T08:14:34.269790Z",
            "last_modified_time": "2024-12-20T01:14:04.211611Z",
            "date_published": null,
            "start_time": "2024-11-11T16:00:00Z",
            "end_time": "2024-11-11T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/89CAFFD4F8B2C2F1B431A8A6CD4166B5/Kirjailijavieraana_Kale_Puonti",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/89CAFFD4F8B2C2F1B431A8A6CD4166B5/Gastforfattare_Kale_Puonti",
                "en": "http://www.kanneltalo.fi/en/events/event/89CAFFD4F8B2C2F1B431A8A6CD4166B5/Author_guest_Kale_Puonti"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Pasilan Myrkky -dekkarisarjallaan suosiota niittänyt Kale Puonti saapuu Kanneltalon kirjailijavieraaksi.",
                "sv": "Författaren Kale Puonti, som blev välkänd genom sin deckarserie Pasilan Myrkky, besöker Gamlasgården.",
                "en": "Kale Puonti, who gained popularity with his Pasilan Myrkky series, makes an appearance at Kanneltalo."
            },
            "description": {
                "fi": "<p>Pasilan Myrkky -dekkarisarjallaan suosiota niittänyt Kale Puonti saapuu Kanneltalon kirjailijavieraaksi.</p><p>Haastattelijana kirjailija ja toimittaja Esa Mäkijärvi.</p><p>Kale Puonti (s. 1962) työskenteli yli 30 vuotta Helsingissä huumepoliisina ja järjestäytyneen rikollisuuden tutkinnassa. Hän on nähnyt aitiopaikalta kansainvälisen huumerikollisuuden rantautumisen Suomeen ja ollut mukana monissa suurta julkisuutta saaneissa jutuissa. Kale Puonti on noussut lukijoiden suosikiksi vakuuttavan realistisella Pasilan Myrkky -dekkarisarjallaan, jonka viides osa Fadi sai Suomen dekkariseuran Vuoden johtolanka -palkinnon 2023. Pasilan Myrkyn kuudes osa Joni ilmestyi alkuvuodesta 2024. Sarjan neljästä ensimmäisestä on myyty tv- ja elokuvaoikeudet.</p><p>Puonti tunnetaan myös tietokirjoistaan, kuten Kokaiinikeilapallo ja muita huumekytän tapauksia sekä Satu – Alamaailman rautarouva, joka on käännetty ruotsiksi, tanskaksi ja norjaksi. Lisäksi Puonti on tuttu katsojille MTV3:n Rikospaikka-ohjelman vakiokasvona ja kuuntelijoille podcastin tekijänä. Immun ja Kalen rötöskatsaus on saavuttanut jo 300 000 kuuntelun rajan, ja suositusta Ammattina rikos -podcastista on tehty kolme tuotantokautta.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.</p>",
                "sv": "<p>Författaren Kale Puonti, som blev välkänd genom sin deckarserie Pasilan Myrkky, besöker Gamlasgården.</p><p>Författaren och journalisten Esa Mäkijärvi fungerar som intervjuare.</p><p>I över 30 år arbetade Kale Puonti (f. 1962) som narkotikapolis och med utredning av organiserad brottslighet i Helsingfors. Han har följt med den internationella narkotikaindustrins ankomst till Finland på första parkett, och har varit med om flera mycket uppmärksammade fall. Kale Puonti har blivit en läsarfavorit med sin övertygande realistiska deckarserie Pasilan Myrkky. Seriens femte del Fadi belönades med föreningen Suomen dekkariseuras pris Vuoden johtolanka 2023. Den sjätte delen av Pasilan Myrkky, Joni, utkom i början av 2024. TV- och filmrättigheterna till de fyra första delarna i serien har sålts.</p><p>Puonti är också känd för sina faktaböcker, såsom Kokaiinikeilapallo ja muita huumekytän tapauksia och Satu – Undre världens järnlady, som har översatts till svenska, danska och norska. Puonti är också bekant för TV-tittare som en återkommande gäst i MTV3:s program Rikospaikka och för podcast-lyssnare. Podcasten Immun ja Kalen rötöskatsaus har redan nått 300 000 lyssnare, och tre säsonger av den populära podcasten Ammattina rikos har producerats.</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.</p>",
                "en": "<p>Kale Puonti, who gained popularity with his Pasilan Myrkky series, makes an appearance at Kanneltalo.</p><p>The interviewer is author and journalist Esa Mäkijärvi.</p><p>Kale Puonti (b. 1962) worked for the Helsinki Police as a narcotics and organised crime investigator for more than 30 years. He has seen the landing of international drug crime in Finland and was involved in many high-profile cases. Kale Puonti has become a reader favourite with his convincingly realistic Pasilan Myrkky detective series, the fifth part of which, Fadi, received the Finnish Detective Novel Association's Lead of the Year award in 2023. The sixth part of Pasilan Myrkky, Joni, was released in early 2024. TV and film rights have been sold for the first four books of the series.</p><p>Puonti is also known for his non-fiction books, such as Kokaiinikeilapallo and other drug cop cases, as well as Satu – Alamaailman rautarouva, which has been translated into Swedish, Danish and Norwegian. In addition, Puonti is familiar to viewers as a standard face of MTV3's Rikospaikka programme and to listeners as a podcaster. Immun ja Kalen rötöskatsaus has already found 300,000 listens, and there are already three seasons of the popular Ammattina rikos podcast.</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Kirjailijavieraana Kale Puonti – Maksuttomat maanantait",
                "sv": "Gästförfattare Kale Puonti – Avgiftsfria måndagar",
                "en": "Author guest Kale Puonti – Free Mondays"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63688/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64482",
            "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:32/?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: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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152478,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-19T11:14:26.000178Z",
                    "last_modified_time": "2024-09-19T11:14:26.000205Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757539.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152478/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-19T11:14:25.966237Z",
            "last_modified_time": "2024-12-20T01:14:04.113064Z",
            "date_published": null,
            "start_time": "2024-11-11T10:00:00Z",
            "end_time": "2024-11-11T11: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/DAC70E9187D9461FB862C8E19D6B0186/Liikkeella_marraskuussa_Soup_Talks",
                "sv": "http://www.caisa.fi/sv/evenemang/event/DAC70E9187D9461FB862C8E19D6B0186/Liikkeella_marraskuussa_Soup_Talks",
                "en": "http://www.caisa.fi/en/events/event/DAC70E9187D9461FB862C8E19D6B0186/Moving_in_November_Soup_Talks"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.",
                "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.",
                "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival."
            },
            "description": {
                "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>",
                "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Tiziano Cruz",
                "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Tiziano Cruz",
                "en": "Moving in November: Soup Talks – Talk with Tiziano Cruz"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64482/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64621",
            "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: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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152608,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-25T10:15:35.300218Z",
                    "last_modified_time": "2024-09-25T10:15:35.300236Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758433.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152608/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-25T10:15:35.277578Z",
            "last_modified_time": "2024-12-20T01:14:04.025608Z",
            "date_published": null,
            "start_time": "2024-11-11T09: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/407E08F1118C1B070E0BE3199B0A2716/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/407E08F1118C1B070E0BE3199B0A2716/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/407E08F1118C1B070E0BE3199B0A2716/Musical_Art_Adventure"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.",
                "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.",
                "en": "We explore and interpret the world through imagination, music and other arts."
            },
            "description": {
                "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat  <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 8 lasta ja 8 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</p>",
                "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 8 barn och 8 vuxna.</p><p>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</p>",
                "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11.  https://link.webropol.com/ep/muskari5</p>"
            },
            "provider": null,
            "name": {
                "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille",
                "sv": "Musikaliskt konstäventyr – för 1–2-åringar",
                "en": "Musical Art Adventure – for 1–2-year-olds"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64621/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63434",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151572,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-27T15:13:44.732724Z",
                    "last_modified_time": "2024-06-27T15:13:44.732743Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749899.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151572/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-27T15:13:44.708389Z",
            "last_modified_time": "2024-12-20T01:14:03.932394Z",
            "date_published": null,
            "start_time": "2024-11-11T08:15:00Z",
            "end_time": "2024-11-11T08: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B212A3E7B2E9E68906ED613AB07C92DF/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B212A3E7B2E9E68906ED613AB07C92DF/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/B212A3E7B2E9E68906ED613AB07C92DF/Musical_Art_Adventure"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.",
                "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.",
                "en": "We explore and interpret the world through imagination, music and other arts."
            },
            "description": {
                "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 30 min <br>Ikäryhmä: 3–12 kk<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä on noin 12 osallistujaa, 6 lasta ja 6 aikuista.</p><p>Varaa yksi paikka per lapsi + aikuinen.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>",
                "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama. Konstäventyren ordnas två måndagar i månaden.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 3–12 mån.<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har ca 12 deltagare, 6 barn och 6 vuxna.<br>Boka en plats per barn + vuxen.</p><p><b>Anmälningslänkar:</b></p><p><b>Mån 2 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">anmäl dig här</u></a></p><p><b>Mån 19 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">anmäl dig här</u></a></p><p><b>Mån 30 september 2024 kl 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">anmäl dig här</u></a></p><p><b>Mån 14 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">anmäl dig här</u></a></p><p><b>Mån 28 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">anmäl dig här</u></a></p><p><b>Mån 11 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">anmäl dig här</u></a></p><p><b>Mån 25 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">anmäl dig här</u></a></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: https://link.webropol.com/s/Taideseikkailunjono</p>",
                "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 30 min <br>Age group: 3–12 months<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p>Mon 2 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">Register here</u></a></p><p>Mon 16 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">Register here</u></a></p><p>Mon 30 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">Register here</u></a></p><p>Mon 14 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">Register here</u></a></p><p>Mon 28 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">Register here</u></a></p><p>Mon 11 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">Register here</u></a></p><p>Mon 25 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">Register her</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>"
            },
            "provider": null,
            "name": {
                "fi": "Musiikillinen taideseikkailu – vauvoille",
                "sv": "Musikaliskt konstäventyr – för bebisar",
                "en": "Musical Art Adventure – for babies"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63434/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63427",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151564,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-27T14:13:42.244575Z",
                    "last_modified_time": "2024-06-27T14:13:42.244590Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749885.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151564/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-27T14:13:42.219471Z",
            "last_modified_time": "2024-12-20T01:14:03.841673Z",
            "date_published": null,
            "start_time": "2024-11-11T07:00:00Z",
            "end_time": "2024-11-11T07: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/255B6A54203361540BD9BD26691C6F68/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/255B6A54203361540BD9BD26691C6F68/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/255B6A54203361540BD9BD26691C6F68/Musical_Art_Adventure"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.",
                "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.",
                "en": "We explore and interpret the world through imagination, music and other arts."
            },
            "description": {
                "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 45 min <br>Ikäryhmä: 3–5-vuotiaat<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 9–9.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo  9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>",
                "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>",
                "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>"
            },
            "provider": null,
            "name": {
                "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille",
                "sv": "Musikaliskt konstäventyr – för 3–5-åringar",
                "en": "Musical Art Adventure – for 3–5-year-olds"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63427/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63908",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "39,50 €",
                        "sv": "39,50 €",
                        "en": "39,50 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3662672",
                        "sv": "https://www.lippu.fi/eventseries/3662672",
                        "en": "https://www.lippu.fi/eventseries/3662672"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151320,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-30T12:13:07.393239Z",
                    "last_modified_time": "2024-05-30T12:13:07.393266Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753480.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151320/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-30T12:13:07.347607Z",
            "last_modified_time": "2024-12-20T01:14:03.760441Z",
            "date_published": null,
            "start_time": "2024-11-10T17: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8BF9F45422AED7DFD12E8B04831B2FF5/Dad_Harmony_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/8BF9F45422AED7DFD12E8B04831B2FF5/Dad_Harmony_",
                "en": "http://www.savoyteatteri.fi/en/events/event/8BF9F45422AED7DFD12E8B04831B2FF5/Dad_Harmony_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Isänpäiväkonsertti",
                "en": "Fathers' Day concert"
            },
            "description": {
                "fi": "<p>Isänpäiväkonsertti</p><p>Sosiaalisessa mediassa ilmiöksi noussut Dad Harmony lähtee talvella kiertueelle, jossa keskitytään joululauluihin päivitetyllä ohjelmistolla unohtamatta myös vanhoja suosikkeja. Tällä kiertueella Dad Harmony haluaa tuoda yleisön takaisin olohuoneeseensa kaikkine siihen liittyvine tunnelmallisuuksineen ja joululauluineen. Kiertueella kuullaan uusia kappaleita, parempaa laulua ja enemmän koreografiaa pienten lasten isille suoraan olohuoneesta.</p><p>Dad Harmony jatkaa menestyksekästä tietään sosiaalisessa mediassa julkaisemalla a cappella-lauluvideoita ja keräämällä miljoonia katsojia. DAD Harmony nimettiin viime vuonna Ruotsin suurimmaksi artistiksi TikTokissa. Heillä on tällä hetkellä noin 5 miljoonaa seuraajaa. Skellefteåsta kotoisin olevat isät tulivat kuuluisiksi yhdessä yössä, ja sittemmin he ovat vierailleet aamuohjelmissa ympäri maailmaa ja olivat hiljattain vieraana The Kelly Clarkson Show'ssa.</p><p>Ikäraja: S</p><p>Kesto n. 1 h 15 min, ei väliaikaa</p>",
                "sv": "<p>Social media-fenomenet Dad Harmony ger sig ut på en vinterturné med fokus på jullåtar med uppdaterad repertoar som även inkluderar gamla favoriter. Med denna turné vill Dad Harmony återigen ta publiken till sitt vardagsrum med allt vad det innebär av mys och skönsång. På turnén tillkommer det nya låtar, bättre sång och mer koreografi för småbarnspappor samt en ny dekor som skapar vardagsrumskänslan.</p><p>Dad Harmony fortsätter att göra succé på sociala medier, där de lägger ut klipp där de sjunger Acapella, och lockar miljontals tittare. DAD Harmony blev utsedda till Sveriges största artist på TikTok under 2023. De har idag en följarskara på ca. 5 miljoner användare. Papporna från Skellefteå blev kända över en natt, och har sedan dess uppmärksammats i morgonsoffor runt om i världen samt var nyligen gäster i The Kelly Clarkson Show.</p><p>Längd: Ca 1 h 15 min, utan paus.</p>",
                "en": "<p>Fathers' Day concert</p><p>A social media phenomenon, Dad Harmony will go on a tour this winter. The updated repertoire focuses on Christmas carols without forgetting the old favourites. On this tour, Dad Harmony wants to take the audience to their sitting room with a fitting atmosphere and all the Christmas carols that go with it. The tour includes new songs, better singing and more choreography for fathers of small children right from the sitting room.</p><p>Dad Harmony continues on their successful journey on social media by posting a cappella song videos that garner millions of views. Last year, Dad Harmony was named Sweden’s biggest artist on TikTok. They currently have around 5 million followers. Hailing from Skellefteå in Sweden, these fathers became famous overnight and have since appeared on morning shows around the world, most recently The Kelly Clarkson Show.</p><p>Suitable for all ages</p><p>Duration about 1 h 15 min.</p>"
            },
            "provider": {
                "fi": "Ramasound Oy",
                "sv": "Ramasound Oy",
                "en": "Ramasound Oy"
            },
            "name": {
                "fi": "Dad Harmony – Loppuunmyyty! / Sold out!",
                "sv": "Dad Harmony – Slut såld!",
                "en": "Dad Harmony – Sold out!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63908/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64478",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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:53/?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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,80 € / 33,90 €",
                        "en": "17,80 € / 33,90 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727774/",
                        "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727774/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152393,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-12T07:14:27.902528Z",
                    "last_modified_time": "2024-09-12T07:14:27.902542Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757521.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-12T07:14:27.887762Z",
            "last_modified_time": "2024-12-20T01:14:03.665460Z",
            "date_published": null,
            "start_time": "2024-11-10T13: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/CA0DCF4A830E699705A6B13DE5AE440C/Liikkeella_marraskuussa_Tiziano_Cruz_Soliloquio_I_woke_up_and_hit_my_head_against_the_wall_",
                "en": "http://www.caisa.fi/en/events/event/CA0DCF4A830E699705A6B13DE5AE440C/Moving_in_November_Tiziano_Cruz_Soliloquio_I_woke_up_and_hit_my_head_against_the_wall_"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Esityksen ensimmäinen osa alkaa Kallion kirjaston edestä, josta kävelemme yhdessä seuraten paraatia noin 30 minuutin ajan teatterille.",
                "en": "The performance starts in front of the entrance of Kallio Library, where we will be walking together, following the parade for approx. 30 minutes to the theater."
            },
            "description": {
                "fi": "<p>Esityksen ensimmäinen osa alkaa Kallion kirjaston edestä, josta kävelemme yhdessä seuraten paraatia noin 30 minuutin ajan teatterille.</p><p>Saavu Kallion kirjaston sisäänkäynnin eteen 15 minuuttia ennen esitystä. Esityksen toinen osa tapahtuu Caisassa, teatterin sisätiloissa ja kestää noin 50 minuuttia.</p><p>Nämä kaksi osaa muodostavat yhdessä kokonaisuuden. Jos sinulla on vaikeuksia kävelyn tai liikkumisen kanssa, ota meihin yhteyttä etukäteen. Mikäli sää on erittäin huono, annamme lisäohjeita. Huonon sään sattuessa tarkista ohjeistus Liikkeellä marraskuussa-festivaalin sosiaalisen median kanavista.</p><p>Tapaamispaikka: Esitys alkaa Kallion kirjaston sisäänkäynnin edestä klo 15, tule paikalle klo 14.45.</p><p><b>Tiziano Cruzin</b> teos Soliloquio (I woke up and hit my head against the wall) perustuu lapsuuden kaikuihin ja 58 kirjeeseen, jotka hän kirjoitti äidilleen Covid-19 pandemian aikana. Teos manaa esiin vuosisatoja kestäneen rodullisen ja institutionaalisen syrjinnän valaisemalla Pohjois-Argentiinan alkuperäisyhteisöjen defolklorisoituja kulttuureja, jossa Cruz syntyi ja kasvoi.</p><p>Kurkottamalla äitiään kohti yli maantieteellisten- ja luokkarajojen, Cruz käyttää kirjeitä lähtökohtana kritiikille, joka kohdistuu syrjinnän, syrjäyttämisen ja epäoikeudenmukaisuuden puolustajiin, unohtamatta taidemaailmaa.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 7.–17.11.2024. Osana festivaalia Cruz käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 11.11. klo 12 Caisassa.</p><p>Kesto: noin 1,5h<br>Kieli: Espanja<br>Tekstitykset: Englanti</p><p>Ohjaus, käsikirjoitus ja esitys: Tiziano Cruz<br>Dramaturgia ja ohjaajan assistentti: Rodrigo Herrera<br>Videosuunnittelu: Matías Gutiérrez<br>Äänisuunnittelu ja sävellys: Luciano Giambastiani<br>Valosuunnittelu: Matías Ramos<br>Alkuperäisen käsikirjoituksen oikoluku: Hugo Miranda Campos<br>Taide- ja pukusuunnittelu: Uriel Cistaro<br>Pukujen toteutus: Vega Cardozo Luisa Fernanda ja Luciana Iovane<br>Taiteellinen tuottaja ja graafinen suunnittelu: Luciana Iovane<br>Päätuotanto: Ulmus Gestión Cultural<br>Kansainväliset suhteet, tuotanto ja johtaminen: Cecilia Kuska & Rosa Studio.<br>Vierailu yhteistyössä: Caisa</p>",
                "en": "<p>The performance starts in front of the entrance of Kallio Library, where we will be walking together, following the parade for approx. 30 minutes to the theater.</p><p>Please be in front of the entrance of the Kallio library 15 minutes before the performance. The second part of the performance takes place inside the Caisa theater and lasts approx. 50 minutes.<br> <br>These two parts are integral to the overall experience. If you have any difficulty with walking, please contact us in advance. In the event of severe weather, further instructions will be provided. In case of bad weather, check Moving in November social media accounts.</p><p>Soliloquio (I woke up and hit my head against the wall) by <b>Tiziano Cruz</b> draws from the echoes of his childhood and the 58 letters he wrote to his mother during the Covid-19 pandemic. The performance seeks to exorcise centuries of abuse and erasure, shining a light on the defolklorized cultures of the indigenous communities of northern Argentina, where Cruz was born and raised.</p><p>By reaching his mother across boundaries of geography and class, Cruz uses the letters as the starting point for a critique of the powers that uphold discrimination, exclusion, and injustice, extending it into the art world.</p><p>The performance is part of Moving in November festival 7.-17.11.2024. As part of the festival, there will be an open discussion with Cruz and local host called Soup Talk on the 11th of November at noon in Caisa.</p><p>Duration: 1,5h<br>Language: Spanish<br>Subtitles: English</p><p>General director, playwright and performer: Tiziano Cruz<br>Dramaturg and director's assistant: Rodrigo Herrera<br>Filmmaker: Matías Gutiérrez<br>Sound designer and composer: Luciano Giambastiani<br>Lights design: Matías Ramos<br>Proofreading of original script: Hugo Miranda Campos<br>Art and costume design: Uriel Cistaro<br>Costumes realization: Vega Cardozo Luisa Fernanda and Luciana Iovane<br>Artistic producer and graphic design: Luciana Iovane<br>Executive production: Ulmus Gestión Cultural<br>International relations, production, and management: Cecilia Kuska & Rosa Studio.<br>Visit in collaboration: Caisa</p>"
            },
            "provider": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Tiziano Cruz: Soliloquio (I woke up and hit my head against the wall)",
                "en": "Moving in November – Tiziano Cruz: Soliloquio (I woke up and hit my head against the wall)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64478/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63863",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:p29865/?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": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/",
                        "sv": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/",
                        "en": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152114,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-14T13:15:28.083349Z",
                    "last_modified_time": "2024-08-14T13:15:28.083369Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753330.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152114/?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": "2024-08-14T12:14:55.061873Z",
            "last_modified_time": "2024-12-20T01:14:03.564781Z",
            "date_published": null,
            "start_time": "2024-11-10T12: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BF81889B6A5D75B0027EFAFAADC3D5F7/Pori_Sinfoniettan_muusikot_Vauvakonsertti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/BF81889B6A5D75B0027EFAFAADC3D5F7/Pori_Sinfoniettas_musiker_Babykonsert",
                "en": "http://www.annantalo.fi/en/events/event/BF81889B6A5D75B0027EFAFAADC3D5F7/Musicians_of_Pori_Sinfonietta_Baby_Concert"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ota oma viltti ja pehmolelu mukaan ja tule kuuntelemaan klassista konserttia, johon koko perhe on tervetullut! LOPPUUNMYYTY!",
                "sv": "Ta med dig en egen filt och ett gosedjur och kom och lyssna på en klassisk konsert för hela familjen! SLUTSOLD!",
                "en": "Bring your blanket and stuffed animal, and join us in listening to a classic concert for the whole family! SOLD OUT!"
            },
            "description": {
                "fi": "<p>Ota oma viltti ja pehmolelu mukaan ja tule kuuntelemaan klassista konserttia, johon koko perhe on tervetullut! LOPPUUNMYYTY!</p><p>Annantalossa soi huilu-piano-duo, jonka kappaleet on valittu pienille korville.</p><p>Kesto 45 min<br>Ikä: 0–2 v<br>Liput: aikuisille 15 €, vauvat ja lapset ilmaiseksi</p>",
                "sv": "<p>Ta med dig en egen filt och ett gosedjur och kom och lyssna på en klassisk konsert för hela familjen! SLUTSOLD!</p><p>På Annegården uppträder en flöjt-piano-duo med musikstycken som har valts ut för små öron.</p><p>Längd 45 min.<br>Ålder: 0–2 år<br>Biljetter: vuxna 15 €, bebisar och barn gratis</p>",
                "en": "<p>Bring your blanket and stuffed animal, and join us in listening to a classic concert for the whole family! SOLD OUT!</p><p>A flute-and-piano duo will play a concert at Annantalo, the songs of which have been selected for smaller listeners.</p><p>Duration: 45 mins.<br>Age: 0–2 years<br>Tickets: adults €15, babies and children free</p>"
            },
            "provider": null,
            "name": {
                "fi": "Pori Sinfoniettan muusikot: Vauvakonsertti",
                "sv": "Pori Sinfoniettas musiker: Babykonsert",
                "en": "Musicians of Pori Sinfonietta: Baby Concert"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63863/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}