Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&page=1145&registration__remaining_attendee_capacity__isnull=true
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 26802,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1146&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1144&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:60459",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-2/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4449,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:25:03.224298Z",
                    "last_modified_time": "2023-09-07T14:25:03.224349Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725184.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4449/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:25:03.072836Z",
            "last_modified_time": "2023-11-14T06:13:27.938733Z",
            "date_published": null,
            "start_time": "2023-10-24T10:30:00Z",
            "end_time": "2023-10-24T12: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,
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers",
                "sv": "Open Art Studio for Toddlers-verkstäder",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4B033E74CF9BA089B3BD62D28FA999B2/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4B033E74CF9BA089B3BD62D28FA999B2/Open_Art_Studio_for_Toddlers-verkstader_",
                "en": "http://www.caisa.fi/en/events/event/4B033E74CF9BA089B3BD62D28FA999B2/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers"
            },
            "description": {
                "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60459/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61095",
            "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:105/?format=api"
                },
                {
                    "@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: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"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5420,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-12T11:00:33.339112Z",
                    "last_modified_time": "2023-10-12T11:00:33.339132Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737891.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5420/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-12T11:00:33.215701Z",
            "last_modified_time": "2023-11-14T06:13:27.865858Z",
            "date_published": null,
            "start_time": "2023-10-24T09:00:00Z",
            "end_time": "2023-10-24T09: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,
            "name": {
                "fi": "Stoan Tulevaisuuslaboratorio: Ideat ilmaan! – Toiminnallinen näyttelyopastus päiväkotiryhmille"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Millaisesta maailmasta unelmoit? Millainen olisi kulttuuritalo unelmamaailmassasi? Stoan tulevaisuuslaboratorion yhteisötaideteos 2030°+ päästää lapset ääneen."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/07EDCA10E5C2B0DAAC8E175FAE8ADA26/Stoan_Tulevaisuuslaboratorio_Ideat_ilmaan_"
            },
            "description": {
                "fi": "<p>Millaisesta maailmasta unelmoit? Millainen olisi kulttuuritalo unelmamaailmassasi? Stoan tulevaisuuslaboratorion yhteisötaideteos 2030°+ päästää lapset ääneen.</p><p>Saatte unelmoida, suunnitella, keskustella, haastaa, muovailla ja lopulta pääsette ripustamaan ideanne ilmaan!</p><p>Stoan Tulevaisuuslaboratorio on tapahtumakokonaisuus, jossa kaupunkilaiset rakentavat yhteistä 2030-luvun tulevaisuusnäkymää. Hauskalla opastuksella tutustutaan yhteisötaiteen käsitteeseen, opetellaan luovaa ongelmanratkaisua ja syvennytään gallerian taideteokseen toiminnallisesti.</p><p>Toiminnallisen opastuksen kesto on 45 minuuttia ja kieli suomi.  <br>Opastukset toteuttaa Seikkailutaidekoulu. <br> <br>Järj. Stoa /kulttuuri <br> <br>Paikka: Stoan galleria <br>Kenelle suunnattu: päiväkoti- ja koululaisryhmille <br><b>Lisätiedot ja ilmoittautumiset:</b> hanna.westerholm@hel.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61095/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61130",
            "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:105/?format=api"
                },
                {
                    "@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: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"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5419,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-12T11:00:32.970097Z",
                    "last_modified_time": "2023-10-12T11:00:32.970117Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737890.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5419/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-12T11:00:32.827121Z",
            "last_modified_time": "2023-11-14T06:13:27.793065Z",
            "date_published": null,
            "start_time": "2023-10-24T07:00:00Z",
            "end_time": "2023-10-24T07: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,
            "name": {
                "fi": "Stoan Tulevaisuuslaboratorio: Ideat ilmaan! – Toiminnallinen näyttelyopastus päiväkotiryhmille"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Millaisesta maailmasta unelmoit? Millainen olisi kulttuuritalo unelmamaailmassasi? Stoan tulevaisuuslaboratorion yhteisötaideteos 2030°+ päästää lapset ääneen."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FB32EE154126108C63FD3411E871A439/Stoan_Tulevaisuuslaboratorio_Ideat_ilmaan_"
            },
            "description": {
                "fi": "<p>Millaisesta maailmasta unelmoit? Millainen olisi kulttuuritalo unelmamaailmassasi? Stoan tulevaisuuslaboratorion yhteisötaideteos 2030°+ päästää lapset ääneen.</p><p>Saatte unelmoida, suunnitella, keskustella, haastaa, muovailla ja lopulta pääsette ripustamaan ideanne ilmaan!</p><p>Stoan Tulevaisuuslaboratorio on tapahtumakokonaisuus, jossa kaupunkilaiset rakentavat yhteistä 2030-luvun tulevaisuusnäkymää. Hauskalla opastuksella tutustutaan yhteisötaiteen käsitteeseen, opetellaan luovaa ongelmanratkaisua ja syvennytään gallerian taideteokseen toiminnallisesti.</p><p>Toiminnallisen opastuksen kesto on 45 minuuttia ja kieli suomi.  <br>Opastukset toteuttaa Seikkailutaidekoulu. <br> <br>Järj. Stoa /kulttuuri <br> <br>Paikka: Stoan galleria <br>Kenelle suunnattu: päiväkoti- ja koululaisryhmille <br><b>Lisätiedot ja ilmoittautumiset:</b> hanna.westerholm@hel.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61130/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61144",
            "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:104/?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: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5471,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-13T14:41:30.135220Z",
                    "last_modified_time": "2023-10-13T14:41:30.135239Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738049.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5471/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-10-13T14:41:29.990864Z",
            "last_modified_time": "2023-11-14T06:13:27.718681Z",
            "date_published": null,
            "start_time": "2023-10-24",
            "end_time": "2023-10-29",
            "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,
            "name": {
                "fi": "Stoan Tulevaisuuslaboratorio: Tulevaisuus 2030 -ääniteos"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Miltä tulevaisuuden Itä-Helsinki näyttää, tuoksuu, kuulostaa, tuntuu tai maistuu. Entä mikä tekisi Itä-Helsingistä vielä rakkaamman?"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/061C8C413DEB60E83FA080C654384E97/Stoan_Tulevaisuuslaboratorio_Tulevaisuus_2030_-aaniteos_"
            },
            "description": {
                "fi": "<p>Miltä tulevaisuuden Itä-Helsinki näyttää, tuoksuu, kuulostaa, tuntuu tai maistuu. Entä mikä tekisi Itä-Helsingistä vielä rakkaamman?</p><p>Nuorten lyriikka- ja sanataidepajassa syntyneitä ajatuksia ja runoja ääniteoksen muodossa Stoan tulevaisuuslaboratoriossa Stoan galleriassa talon aukioloaikoina eli ma-to klo 8-20, pe klo 8-18, la klo 10-16 ja su klo 12-18.</p><p>Stoassa 24.–29.10. järjestettävässä Tulevaisuuslaboratorio-tapahtumakokonaisuudessa kaupunkilaiset rakentavat Stoan yhteistä tulevaisuusnäkymää. Tapahtumakokonaisuuteen kuuluu kaikille kaupunkilaisille avoimen 2030°+-yhteisöteoksen lisäksi eri vierailijaryhmille suunnattuja työpajoja sekä kävijöille jaettavia tehtäväpaketteja. Kertyvää tietoa hyödynnämme Stoan tulevan laajennusosan ja perusparannuksen suunnittelussa.</p><p>Tulevaisuuden Stoa luodaan yhdessä – osallistu suunnitteluun ja tee Stoasta elämäsi keskus!</p><p>Järj. Nuorten toimintatalo Kipinä ja Signaalimedia sekä Stoa/kulttuuripalvelut</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61144/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61093",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:669/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5418,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-12T11:00:32.593905Z",
                    "last_modified_time": "2023-10-12T11:00:32.593992Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737888.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5418/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-12T11:00:32.267174Z",
            "last_modified_time": "2023-11-14T06:13:27.641909Z",
            "date_published": null,
            "start_time": "2023-10-24",
            "end_time": "2023-10-29",
            "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,
            "name": {
                "fi": "Stoan Tulevaisuuslaboratorio: 2030°+ – Itä saa mitä tilaa – suunnitellaan yhdessä elämäsi keskus",
                "sv": "Stoas Framtidslaboratorium: 2030°+",
                "en": "Stoa Futures Lab: 2030°+ – Go East! – designing the hub of your life"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kulttuurikeskus Stoa uudistuu ja laajenee 2030-luvulla. Tavoitteemme on tehdä tila, joka on koko Itä-Helsingin ikioma ylpeyden aihe ja itähelsinkiläisen kulttuurin ja arjen keskus.",
                "sv": "Kulturcentret Stoa förnyas och utvidgas på 2030-talet. Vårt mål är att skapa ett utrymme som är en stolthet och ett centrum för kultur och vardag i östra Helsingfors.",
                "en": "Cultural Centre Stoa will be renewing and expanding in the 2030s. Our aim is to create a space that will be a source of pride for all of East Helsinki and the hub for East Helsinki culture and daily life."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E6520998BDB565B73F2F2FBBC7F2AA62/Stoan_Tulevaisuuslaboratorio_2030_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E6520998BDB565B73F2F2FBBC7F2AA62/Stoas_Framtidslaboratorium_2030_",
                "en": "http://www.stoa.fi/en/events/event/E6520998BDB565B73F2F2FBBC7F2AA62/Stoa_Futures_Lab_2030_"
            },
            "description": {
                "fi": "<p>Kulttuurikeskus Stoa uudistuu ja laajenee 2030-luvulla. Tavoitteemme on tehdä tila, joka on koko Itä-Helsingin ikioma ylpeyden aihe ja itähelsinkiläisen kulttuurin ja arjen keskus.</p><p>Tulevaisuuden Stoassa voit luoda, kokea, harrastaa, leikkiä, työskennellä, juhlia, oppia ja opiskella.</p><p>Koska kukaan ei tunne itää paremmin kuin sen asukkaat, kutsumme kaupunkilaiset ideoimaan, millainen yhteinen Stoamme voisi olla 2030-luvulla. Tule mukaan muodostamaan ideoiden ja toiveiden 2030°+-yhteisöteosta Stoan galleriaan 24.–29.10.2023. Osallistua voit talon aukioloaikoina eli ma-to klo 8-20, pe klo 8-18, la klo 10-16 ja su klo 12-18.</p><p>Kolmiulotteisen osallistavan teoksen Stoan galleriaan ovat suunnitelleet tutkija-taiteilijat Lauri Jäntti ja Francisco Trento sekä kuvataiteilija Anniina Lius. Rakennelman on toteuttanut Studio Thomas. Teos rakentuu ja täydentyy Stoan Tulevaisuuslaboratoriossa vierailevien kaupunkilaisten ajatuksista, ideoista, haaveista, toiveista ja niiden kytköksistä.</p><p>Stoassa 24.–29.10. järjestettävässä Tulevaisuuslaboratorio-tapahtumakokonaisuudessa kaupunkilaiset rakentavat Stoan yhteistä tulevaisuusnäkymää. Tapahtumakokonaisuuteen kuuluu kaikille kaupunkilaisille avoimen 2030°+-yhteisöteoksen lisäksi eri vierailijaryhmille suunnattuja työpajoja sekä kävijöille jaettavia tehtäväpaketteja. Kertyvää tietoa hyödynnämme Stoan tulevan laajennusosan ja perusparannuksen suunnittelussa.<br> <br>Tulevaisuuden Stoa luodaan yhdessä – osallistu suunnitteluun ja tee Stoasta elämäsi keskus!<br> <br>Järj. Kaikki Itä-Helsingin kulttuurikeskus Stoan toimijat yhdessä: Itäkeskuksen kirjasto, kulttuuripalvelut, Nuorten toimintatalo Kipinä, Työväenopisto ja Arbis</p>",
                "sv": "<p>Kulturcentret Stoa förnyas och utvidgas på 2030-talet. Vårt mål är att skapa ett utrymme som är en stolthet och ett centrum för kultur och vardag i östra Helsingfors.</p><p>Kulturcentret Stoa förnyas och utvidgas på 2030-talet. Vårt mål är att skapa ett utrymme som är en stolthet och ett centrum för kultur och vardag i östra Helsingfors.</p><p>I framtidens Stoa kan du skapa, uppleva, leka, arbeta, festa, lära dig nytt och studera.<br> <br>Eftersom ingen känner till öst bättre än invånarna, bjuder vi in er att komma med idéer om hurdan vår gemensamma Stoa kunde vara på 2030-talet. Kom med och forma idéernas och önskemålens 2030°+-gemenskapsverk i Stoas galleri den 24–29 oktober 2023. Du kan delta under husets öppettider, det vill säga må-to kl. 8-20, fre kl. 8-18, lö kl.10-16, och sö kl. 12-18.</p><p>Det tredimensionella engagerande verket i Stoas galleri har planerats av forskare-konstnärerna Lauri Jäntti och Francisco Trento samt bildkonstnären Anniina Lius och Studio Thomas.  Verket byggs upp och kompletteras med tankar, idéer, drömmar, önskningar och deras kopplingar från stadsbor som besöker Stoas Framtidslaboratorium. Under evenemanget Framtidslaboratorium som äger rum i Stoa den 24–29 oktober, bygger stadsborna upp en gemensam framtidsvision för Stoa. I evenemanget ingår förutom 2030°+-gemenskapsverket också verkstäder som är riktade till olika besöksgrupper samt uppgiftspaket som delas ut till besökarna. Den insamlade informationen kommer att användas i planeringen av Stoas kommande utvidgningsdel och renovering.<br>Öst e bäst - kom med och planera ditt livs centrum</p><p>Arr. Alla aktörer i Östra Helsingfors kulturcentret Stoa tillsammans: Östra centrum bibliotek, kulturtjänster, Ungdomsverksamhetshuset Kipinä, Arbetarinstitutet och Arbis.</p>",
                "en": "<p>Cultural Centre Stoa will be renewing and expanding in the 2030s. Our aim is to create a space that will be a source of pride for all of East Helsinki and the hub for East Helsinki culture and daily life.</p><p>In the future Stoa, you can create, experience, play, work, celebrate, learn, and study.</p><p>Because no one knows East Helsinki better than its residents, we invite citizens to brainstorm what our shared Stoa could be like in the 2030s. Join us in shaping the 2030°+ community artwork of ideas and desires in the Stoa Gallery from 24th to 29th October 2023.</p><p>During the Futures Lab event at Stoa from 24th to 29th October, residents will construct a collective vision for the future of Stoa. The event includes the 2030°+ community artwork open to all residents, workshops designed for different visitor groups, and worksheets distributed to visitors. The information accumulated in the process will be used in the planning of Stoa's future expansion and renovation.</p><p>The future Stoa is created together – participate in the planning and make Stoa the hub of your life!</p><p>Opening hours<br>Mon–Thu 9.00–20.00, Fri 8.00–18.00, Sat 10.00–16.00 and                                     <br>Sun 12.00–18.00</p><p>Artists: Lauri Jäntti, Francisco Trento, Anniina Lius and Studio Thomas.</p><p>Organised by all the operators of Cultural Centre Stoa in East Helsinki, including Itäkeskus library, cultural services, Kipinä Youth Activity House, Adult Education Centre, and Arbis.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61093/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60772",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3473724"
                    },
                    "description": null,
                    "price": {
                        "fi": "60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:25:02.832142Z",
                    "last_modified_time": "2023-09-07T14:25:02.832165Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736290.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:25:02.679461Z",
            "last_modified_time": "2023-11-14T06:13:27.557025Z",
            "date_published": null,
            "start_time": "2023-10-23T17: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,
            "name": {
                "fi": "Abdullah Ibrahim (ZA)"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Fullsteam Agency"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Maankuulu jazzpianisti Abdullah Ibrahim Helsinkiin lokakuussa!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0B29C85C8BF75D9E403FD60913991F68/Abdullah_Ibrahim_ZA_"
            },
            "description": {
                "fi": "<p>Maankuulu jazzpianisti Abdullah Ibrahim Helsinkiin lokakuussa!</p><p>Ainutlaatuisen pitkän uran tehnyt eteläafrikkalainen pianisti ja säveltäjä Abdullah Ibrahim saapuu Suomeen syksyllä. Modernin jazzin edelläkävijänä tunnettu artisti konsertoi maanantaina 23. lokakuuta Helsingin Savoy-teatterissa.</p><p>1950-luvulla uransa aloittanut ja myös Dollar Brand -artistinimellä uraa tehnyt Abdullah Ibrahim sulattaa vahvan tunteikkaaseen ja humaaniin musiikkiinsa vaikutteita muun muassa afrikkalaisesta perinnemusiikista, gospelista, klassisesta musiikista sekä amerikkalaisesta jazzista. Yhteistyötä genrensä suurnimien kuten Duke Ellingtonin, Don Cherryn, John Coltranen, Max Roachin ja Ornette Colemanin kanssa tehnyt artisti on julkaissut vertaansa vailla olevan uransa aikana yli 100 albumia. Itsekin maanpaossa 1960- ja 1970-luvuilla eläneen Ibrahimin musiikilla oli myös näkyvä rooli apartheidin vastaisessa liikkeessä.</p><p>Vangitsevan tunnelmallisista esiintymistään tunnetun muusikon viimeisin julkaisu on vuonna 2021 ilmestynyt meditatiivinenen ja melankolinen ”Solotude”. Lokakuisessa Savoy-teatterin illassa on odotettavissa ikimuistoinen spirituaalinen kokemus.</p><p>Illan aikataulu:</p><p>19:00 ovet Savoy-teatteriin<br>19:30 ovet saliin<br>20:00 konsertti alkaa</p><p>Konsertin arvioitu kesto 1,5 h. Konsertissa ei ole väliaikaa</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60772/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60496",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4447,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:25:02.454195Z",
                    "last_modified_time": "2023-09-07T14:25:02.454227Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731775.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4447/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:25:02.283437Z",
            "last_modified_time": "2023-11-14T06:13:27.482455Z",
            "date_published": null,
            "start_time": "2023-10-23T07:15:00Z",
            "end_time": "2023-10-23T08: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,
            "name": {
                "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar",
                "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/CD6A5212214662F83E0C3A2FBF921BC8/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset",
                "sv": "http://www.caisa.fi/sv/evenemang/event/CD6A5212214662F83E0C3A2FBF921BC8/Dans_och_lek_verkstad_Barn_i_lekaldern",
                "en": "http://www.caisa.fi/en/events/event/CD6A5212214662F83E0C3A2FBF921BC8/Dance_and_play_workshops_Play-age"
            },
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60496/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60484",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:25:01.233888Z",
                    "last_modified_time": "2023-09-07T14:25:01.233911Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731759.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:25:00.350244Z",
            "last_modified_time": "2023-11-14T06:13:27.404086Z",
            "date_published": null,
            "start_time": "2023-10-23T06:15:00Z",
            "end_time": "2023-10-23T07: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,
            "name": {
                "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar",
                "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/FFE6ABE61CF97E78828FDF9A3029A3EC/Tanssi_ja_leikki_-tyopaja_Taaperot",
                "sv": "http://www.caisa.fi/sv/evenemang/event/FFE6ABE61CF97E78828FDF9A3029A3EC/Dans_och_lek_verkstad_Smabarn",
                "en": "http://www.caisa.fi/en/events/event/FFE6ABE61CF97E78828FDF9A3029A3EC/Dance_and_play_workshops_Toddlers"
            },
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60484/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:58658",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3268243",
                        "sv": "https://www.lippu.fi/eventseries/name-3268243",
                        "en": "https://www.lippu.fi/eventseries/name-3268243"
                    },
                    "description": null,
                    "price": {
                        "fi": "65/48,50 €",
                        "sv": "65/48,50 €",
                        "en": "65/48,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4445,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:59.528469Z",
                    "last_modified_time": "2023-09-07T14:24:59.528491Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_722936.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4445/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:59.188939Z",
            "last_modified_time": "2023-11-14T06:13:27.316291Z",
            "date_published": null,
            "start_time": "2023-10-22T15: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,
            "name": {
                "fi": "Anna Eriksson - Tikaritaivas-konsertti",
                "sv": "Anna Eriksson – konserten Tikaritaivas",
                "en": "Anna Eriksson – Tikaritaivas concert"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Ihode Management Oy",
                "sv": "Ihode Management Oy",
                "en": "Ihode Management Oy"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Anna Erikssonin uskomaton Tikaritaivas-konsertti yhdistää Erikssonin ja pianisti Mikko Mäkisen vuosien yhteistyön ainutlaatuisella tavalla. Konsertin ohjelmisto perustuu Anna Erikssonin uran tunnetuimpiin lauluihin sekä taiteilijan voimakkaisiin tulkintoihin maailman klassikoista.",
                "sv": "Anna Erikssons otroliga konsert Tikaritaivas kombinerar Erikssons och pianisten Mikko Mäkinens mångåriga samarbete på ett unikt sätt. Repertoaren grundar sig på de bästa kända styckena från Anna Erikssons karriär och konstnärens kraftfulla tolkningar av klassiker från världen.",
                "en": "Anna Eriksson’s incredible Tikaritaivas (Dagger Sky) concert brings together the years of cooperation between Eriksson and pianist Mikko Mäkinen in a truly unique way. The set list for the concert features some of the most famous songs of Anna Eriksson’s career and her powerful interpretations of global classics."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B69C27635AF9218523A20F13C5514597/Anna_Eriksson_-_Tikaritaivas-konsertti",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B69C27635AF9218523A20F13C5514597/Anna_Eriksson_konserten_Tikaritaivas",
                "en": "http://www.savoyteatteri.fi/en/events/event/B69C27635AF9218523A20F13C5514597/Anna_Eriksson_Tikaritaivas_concert"
            },
            "description": {
                "fi": "<p>Anna Erikssonin uskomaton Tikaritaivas-konsertti yhdistää Erikssonin ja pianisti Mikko Mäkisen vuosien yhteistyön ainutlaatuisella tavalla. Konsertin ohjelmisto perustuu Anna Erikssonin uran tunnetuimpiin lauluihin sekä taiteilijan voimakkaisiin tulkintoihin maailman klassikoista.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Kesto n. 1 h 20 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>Anna Erikssons otroliga konsert Tikaritaivas kombinerar Erikssons och pianisten Mikko Mäkinens mångåriga samarbete på ett unikt sätt. Repertoaren grundar sig på de bästa kända styckena från Anna Erikssons karriär och konstnärens kraftfulla tolkningar av klassiker från världen.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Längd ca 1 h 20 min, ingen paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>Anna Eriksson’s incredible Tikaritaivas (Dagger Sky) concert brings together the years of cooperation between Eriksson and pianist Mikko Mäkinen in a truly unique way. The set list for the concert features some of the most famous songs of Anna Eriksson’s career and her powerful interpretations of global classics.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Duration approx. 1 h 20 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:58658/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59534",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3341202",
                        "sv": "https://www.lippu.fi/eventseries/name-3341202",
                        "en": "https://www.lippu.fi/eventseries/name-3341202"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,50/17,50 €",
                        "sv": "29,50/17,50 €",
                        "en": "29,50/17,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4444,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:58.926671Z",
                    "last_modified_time": "2023-09-07T14:24:58.926692Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728081.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4444/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:58.776416Z",
            "last_modified_time": "2023-11-14T06:13:27.232110Z",
            "date_published": null,
            "start_time": "2023-10-21T16: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,
            "name": {
                "fi": "Giants of U.K. Rockabilly! – Featuring Darrel Higham and Graham Fenton (Matchbox)",
                "sv": "Giants of U.K. Rockabilly! – Featuring Darrel Higham and Graham Fenton (Matchbox)",
                "en": "Giants of U.K. Rockabilly! – Featuring Darrel Higham and Graham Fenton (Matchbox)"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Deelen Consultancies",
                "sv": "Deelen Consultancies",
                "en": "Deelen Consultancies"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Vanhan kunnon rock & rollin ystäville tästä on luvassa muistojen ilta. Tämän mahtavan rockabilly-show'n myötä palaamme Elviksen, Gene Vincentin ja Little Richardin aikaan, jonka valokeilassa on kaksi genren maineikkainta nimeä: Graham Fenton (Matchbox) ja Darrell Highham.",
                "sv": "En kväll att minnas för alla vänner av gammal, hederlig rock & roll. Denna magnifika rockabillyshow tar publiken tillbaka till Elvis, Gene Vincents och Little Richards årtionden och allt ljus är på två av tidens främsta ikoner: Graham Fenton (Matchbox) och Darrell Highham.",
                "en": "This will be a night to remember for lovers of good old-fashioned rock & roll. The raucous rockabilly show will take us back to the time of Elvis, Gene Vincent and Little Richard, with the limelight on two of the most famous names in the genre: Graham Fenton (Matchbox) and Darrell Higham."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5CDC61479C0381446F4C018E3FEFE820/Giants_of_U_K_Rockabilly_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5CDC61479C0381446F4C018E3FEFE820/Giants_of_U_K_Rockabilly_",
                "en": "http://www.savoyteatteri.fi/en/events/event/5CDC61479C0381446F4C018E3FEFE820/Giants_of_U_K_Rockabilly_"
            },
            "description": {
                "fi": "<p>Vanhan kunnon rock & rollin ystäville tästä on luvassa muistojen ilta. Tämän mahtavan rockabilly-show'n myötä palaamme Elviksen, Gene Vincentin ja Little Richardin aikaan, jonka valokeilassa on kaksi genren maineikkainta nimeä: Graham Fenton (Matchbox) ja Darrell Highham.</p><p>Graham Fenton on todella ansainnut kannuksensa rokkarina. Hän oli mukana jopa Gene Vincentin kiertueella 1971. Yhdessä Matchbox-bändinsä kanssa hänellä oli lukuisia hittejä 70-luvun loppupuolella, kuten 'Rockabilly Rebel', 'Buzz Buzz A Diddle It', 'Love's Made A Fool Of You' ja 'Midnight Dynamos'. Fenton on yksi viimeisiä todellisia rock & rollin legendoja. Hän ei ole langennut kaupallisuuden edessä ja huokuu 100 %:sesti alkuperäistä rock & rollia. Hän on ehtaa tavaraa. Olemme ylpeitä voidessamme järjestää hänet ihka ensimmäistä kertaa esiintymään Savoy-teatteriin.</p><p>Darrell Higham on niin ikään nimi, joka ei esittelyjä kaipaa. Hän on perusrokkari, joka on komean ulkonäkönsä, hienon Gretch-soundinsa ja jännitävän raa'an laulutaitonsa myötä määrittänyt genreä 80-luvulta lähtien. Hän on työskennellyt monien artistien kanssa, kuten Jeff Beck ja Imelda May, jonka kanssa hän oli aviossa muutama vuosi sitten. Higham tunnetaan myös edesmenneen, mahtavan Gene Vincentin fanituksesta, ja epäilemättä sellaiset klassikot kuten 'C'mon Everbody' ja 'Summertime Blues' saavat Savoyn yleisön rokkaamaan tulevana spesiaali-iltana.</p><p>Tämä on ihka ensimmäinen kerta, kun nämä rock & roll -suuruudet esiintyvät yhdessä tässä show'ssa, joka tulee olemaan todellista dynamiittia. Sekä Darrell Higham että Graham Fenton haluavat tämän olevan jotain erityistä suomalaisfaneille. He esittävät hittejään kuten myös heihin liitettyjä biisejä, sekä muutaman yllätysnumeron. Tämä on yhden kerran esitys, erityisesti Savoylle suunniteltu, ja me lämpimästi suosittelemme show'ta. Luvassa on unohtumaton ilta, joka sinun pitää nähdä, sillä tässä koetaan kahden vielä voimissaan olevan mahtavan rokkarin valta.</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>En kväll att minnas för alla vänner av gammal, hederlig rock & roll. Denna magnifika rockabillyshow tar publiken tillbaka till Elvis, Gene Vincents och Little Richards årtionden och allt ljus är på två av tidens främsta ikoner: Graham Fenton (Matchbox) och Darrell Highham.</p><p>Graham Fenton har verkligen tjänat sina sporrar som rockare. Han deltog till och med i Gene Vincents turné 1971. Tillsammans med sitt band Matchbox hade han under sent 70-tal flertalet hitlåtar, till exempel Rockabilly Rebel, Buzz Buzz A Diddle It, Love's Made A Fool Of You och Midnight Dynamos. Fenton är en av de sista sanna rock & roll-legenderna. Han har inte kapitulerat för kommersen och andas till 100 % den äkta och ursprungliga rock & rollen. Han är äkta vara. Vi är stolta över att för allra första gången i historien kunna ordna en spelning med honom på Savoyteatern.</p><p>Också Darrell Higham är en man som inte behöver presenteras. Higham är en stabil rockare som med sitt stiliga utseende, fina Gretchsound och spännande, råa sångtalang definierat genren sedan 80-talet. Han har arbetat med flera artister, såsom Jeff Beck och Imelda May. Med den sistnämnda var han också gift för ett par år sedan. Higham är också känd som ett stort fan av den framlidne giganten Gene Vincent och det råder ingen tvekan om att klassiker som C'mon Everybody och Summertime Blues kommer att få publiken i Savoy att rocka loss under den kommande specialkvällen.</p><p>Det är den allra första gången som dessa två rock & roll-storheter uppträder tillsammans på en show som kommer att vara rena dynamiten. Både Darrell Higham och Graham Fenton vill skapa något speciellt för sina finländska fans. De framför egna hitlåtar, låtar som förknippats med dem och några överraskningsnummer. Detta är en föreställning som bara visas en gång. Den är särskilt sammansatt för Savoy, och vi rekommenderar showen varmt. Det utlovas en oförglömlig kväll som måste ses – ett unikt tillfälle att få uppleva två fantastiska rockare som fortfarande är vid full vigör.</p><p>Längd ca 2,5 h med paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>This will be a night to remember for lovers of good old-fashioned rock & roll. The raucous rockabilly show will take us back to the time of Elvis, Gene Vincent and Little Richard, with the limelight on two of the most famous names in the genre: Graham Fenton (Matchbox) and Darrell Higham.</p><p>Graham Fenton has truly earned his stripes as a rocker. He even played a tour with Gene Vincent in 1971. Together with his band Matchbox, he released a number of well-known hits in the late 70s, such as ‘Rockabilly Rebel’, ‘Buzz Buzz A Diddle It’, ‘Love's Made A Fool Of You’ and ‘Midnight Dynamos’. Fenton is one of the last true legends of rock & roll. He has never bowed down to commercialism and is an embodiment of uncompromising rock attitude – the real deal all the way. We are very proud to have him perform at Savoy Theatre for the very first time.</p><p>Darrell Higham is another musician who needs no introduction. A rocker through and through who has been involved in defining the genre since the 80s with his handsome looks, dazzling Gretch sound and thrillingly raw singing chops. He has also worked with many other artists, such as Jeff Beck and Imelda May, who he was married to some years ago. Higham is also known as a fan of the late great Gene Vincent, and classics such as ‘C'mon Everbody’ and ‘Summertime Blues’ will be sure to have the Savoy audience rocking on this special night..</p><p>The show will mark the very first time these members of rock and roll royalty perform together to put on a performance that will blow everyone’s socks off. Both Darrell Higham and Graham Fenton want the experience to be something very special for the Finnish fans. The artists will be performing their own hits and songs often linked to them, along with some surprise numbers. This will be a one-off show specifically designed for Savoy, so we strongly recommend those interested to attend. The unforgettable night will be something to see for yourself to truly experience the power of two legendary rockers who are still at the top of their game.</p><p>Duration approx. 2½ h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59534/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61116",
            "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:29/?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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5327,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T12:02:45.025331Z",
                    "last_modified_time": "2023-10-10T12:02:45.025353Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737928.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T12:02:44.855403Z",
            "last_modified_time": "2023-11-14T06:13:27.151614Z",
            "date_published": null,
            "start_time": "2023-10-21T15: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,
            "name": {
                "fi": "Dumb Money (S) – Kino Helios",
                "en": "Dumb Money (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Dumb Money perustuu järjettömään tositarinaan tavallisista ihmisistä, jotka käänsivät Wall Streetin päälaelleen ja rikastuivat tekemällä GameStopista, ostoskeskuksen videopelikaupasta, maailman kuumimman yrityksen.",
                "en": "Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F198FDB81EDE0EFB2789D5C08A5C7D8B/Dumb_Money_S_",
                "en": "http://www.malmitalo.fi/en/events/event/F198FDB81EDE0EFB2789D5C08A5C7D8B/Dumb_Money_S_"
            },
            "description": {
                "fi": "<p>Dumb Money perustuu järjettömään tositarinaan tavallisista ihmisistä, jotka käänsivät Wall Streetin päälaelleen ja rikastuivat tekemällä GameStopista, ostoskeskuksen videopelikaupasta, maailman kuumimman yrityksen.</p><p>Elokuva on varsinainen Daavid vastaan Goljat -kertomus. Kaiken keskellä on tavallinen tyyppi Keith Gill (Paul Dano), joka aloittaa koko tapahtumasarjan upottamalla säästönsä osakkeisiin ja julkaisemalla siitä postauksen sosiaalisessa mediassa. Kun hänen postauksensa alkavat räjähtää käsiin, mullistuu myös Keithin ja kaikkien hänen seuraajiensa elämä. Osakevinkistä kasvaa ilmiö ja kaikki rikastuvat – kunnes miljardöörit alkavat taistella vastaan, ja molempien osapuolten maailmat kääntyvät ylösalaisin.</p><p>Dumb Moneyn muissa rooleissa nähdään muun muassa Pete Davidson, Vincent D’Onofrio, America Ferrera, Nick Offerman, Anthony Ramos, Sebastian Stan, Shailene Woodley ja Seth Rogen. Elokuvan on ohjannut Craig Gillespie ja käsikirjoittaneet Lauren Schuker Blum sekä Rebecca Angelo pohjautuen Ben Mezrichin kirjaan The Antisocial Network.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "en": "<p>Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company.</p><p>In the middle of everything is regular guy Keith Gill (Paul Dano), who starts it all by sinking his life savings into the stock and posting about it. When his social posts start blowing up, so does his life and the lives of everyone following him. As a stock tip becomes a movement, everyone gets rich – until the billionaires fight back, and both sides find their worlds turned upside down.</p><p>Dumb Money also stars Pete Davidson, Vincent D’Onofrio, America Ferrera, Nick Offerman, Anthony Ramos, Sebastian Stan, Shailene Woodley and Seth Rogen. Directed by Craig Gillespie, written by Lauren Schuker Blum & Rebecca Angelo, based on the book “The Antisocial Network” by Ben Mezrich.</p><p>The programme at Kino Helios includes the latest premieres for adults and the whole family. As usual, the screenings at Kino Helios will take place in the small hall of Malmitalo on Wednesdays, Fridays and Saturdays at 15:00 and 18:00 (weekly changes possible). The autumn season starts on Saturday, 2 September. Kino Helios’ programme will be finalised in August.</p><p>Tickets from €8, on sale two weeks before the screening at the latest at <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61116/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60540",
            "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:31/?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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4443,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:58.566426Z",
                    "last_modified_time": "2023-09-07T14:24:58.566458Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732132.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4443/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:24:58.408591Z",
            "last_modified_time": "2023-11-14T06:13:27.079600Z",
            "date_published": null,
            "start_time": "2023-10-21T15: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,
            "name": {
                "fi": "Madboiali – PERUTTU",
                "sv": "Madboiali – INSTÄLLD",
                "en": "Madboiali – CANCELLED"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Helsinkiläinen Madboiali eli Alioune Dia on tulevaisuuden tähti.",
                "sv": "Madboiali alias Alioune Dia från Helsingfors är framtidens stjärna.",
                "en": "Madboiali, or Alioune Dia from Helsinki, is a star of the future."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/541431E729538440FF2753C0D1EB6C56/Madboiali_PERUTTU",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/541431E729538440FF2753C0D1EB6C56/Madboiali_INSTALLD",
                "en": "http://www.vuotalo.fi/en/events/event/541431E729538440FF2753C0D1EB6C56/Madboiali_CANCELLED"
            },
            "description": {
                "fi": "<p>Helsinkiläinen Madboiali eli Alioune Dia on tulevaisuuden tähti.</p><p>Hänen musiikissaan yhdistyvät koukuttavat melodiat, ajankohtaisimmat soundit ja tyylikäs toteutus.</p><p><b>Madboiali</b> on karismaattinen ja rento lavaesiintyjä eikä takuulla unohda ottaa yleisöä haltuun. Drilliä, hiphopia, afropoppia ja r&b:tä yhdistelevä Madboiali lukeutuu tämän hetken mielenkiintoisimpiin artistitulokkaisiin.</p><p>Kahdeksan kappaletta sisältävä debyyttialbumi <i>Mielentila</i> julkaistiin itsenäisesti 11. syyskuuta 2020. Albumin tuotannosta vastasi nuori porvoolaistuottaja IGF, jonka kanssa Madboiali on työskennellyt alusta asti. Hän on tuottanut kaikki Madboialin tähänastiset kappaleet.</p><p>Kesto: 50 min (ei väliaikaa)<br>Kieli: englanti</p><p><b>Vapaa pääsy.</b></p>",
                "sv": "<p>Madboiali alias Alioune Dia från Helsingfors är framtidens stjärna.</p><p>I hans musik kombineras lockande melodier, högaktuella sound och stiligt genomförande.</p><p>Madboiali är karismatisk och avslappnad på scen och glömmer garanterat inte att äga publiken.</p><p>Längd: 50 min<br>Språk: engelska</p><p>Fritt inträde.</p>",
                "en": "<p>Madboiali, or Alioune Dia from Helsinki, is a star of the future.</p><p>The artist’s music combines addictive melodies, cutting-edge sounds and stylish execution.</p><p>Madboiali is a charismatic and relaxed stage performer and will definitely not forget to capture the audience.</p><p>Duration: 50 min <br>Language: English</p><p>Free entry.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60540/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60061",
            "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: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: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/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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4442,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:58.157721Z",
                    "last_modified_time": "2023-09-07T14:24:58.157744Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732399.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4442/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:57.260762Z",
            "last_modified_time": "2023-11-14T06:13:26.992070Z",
            "date_published": null,
            "start_time": "2023-10-21T14:00:00Z",
            "end_time": "2023-10-21T15: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,
            "name": {
                "fi": "Keskustelu: Laulu ottaa kantaa – Chile50-teemaisia tapahtumia Caisassa",
                "sv": "Samtal: Sången tar ställning – Evenemang med Chile50-tema i Caisa",
                "en": "Discussion: Song Takes a Stand – Chile50 themed events at Caisa"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Otteita Chile-solidaarisuusliikkeen musiikilliselta taipaleelta.",
                "sv": "Axplock från Chile-solidaritetsrörelsens musikaliska historia.",
                "en": "Excerpts from the musical journey of the Chilean solidarity movement."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/9016DC5B69901DF6D4BFFC885295195B/Keskustelu_Laulu_ottaa_kantaa",
                "sv": "http://www.caisa.fi/sv/evenemang/event/9016DC5B69901DF6D4BFFC885295195B/Samtal_Sangen_tar_stallning",
                "en": "http://www.caisa.fi/en/events/event/9016DC5B69901DF6D4BFFC885295195B/Discussion_Song_Takes_a_Stand"
            },
            "description": {
                "fi": "<p>Otteita Chile-solidaarisuusliikkeen musiikilliselta taipaleelta.</p><p>Suomalaisilla muusikoilla oli yhteyksiä Chileen jo ennen vuoden 1973 vallankaappausta. Uutiset vallankaappauksesta ja sen jälkeisestä väkivallasta tulivat heille suurena järkytyksenä. Yhteistyö chileläisten kanssa jatkui kuitenkin entistä kiinteämpänä vallankaappauksen jälkeen ja se toi omat vaikutteensa suomalaisiin lauluntekijöihin.</p><p>Keskustelijoina <b>Eero Ojanen</b>, <b>Monna Kamu</b> ja <b>Ossi Peura</b>. Juontaja: <b>Telle Virtanen</b>.</p><p>Kesto: 1,5 h<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi<br>Vapaa pääsy</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>",
                "sv": "<p>Axplock från Chile-solidaritetsrörelsens musikaliska historia.</p><p>Finländska musiker hade kontakter med Chile redan innan militärkuppen 1973. Nyheterna om militärkuppen och det efterföljande våldet kom som en stor chock för dem.</p><p><b>Talare</b>: Eero Ojanen, Monna Kamu, Sinikka Sokka</b>. <b>Programledare</b>: Telle Virtanen.</p><p>Längd: 1,5 t<br>Åldersrekommendation: för alla åldrar<br>Språk: finska<br>Fritt inträde</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>",
                "en": "<p>Excerpts from the musical journey of the Chilean solidarity movement.</p><p>Finnish musicians had links with Chile even before the 1973 coup d’état. The news of the coup d’état and the ensuing violence came as a great shock to them.</p><p><b>Speakers</b>: Eero Ojanen, Monna Kamu, Sinikka Sokka</b>  <b>Host</b>: Telle Virtanen.</p><p>Duration: 1,5 h<br>Age recommendation: for all ages<br>Language: Finnish<br>Free entry</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme. </i></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60061/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60530",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-malmitalo-16635655/",
                        "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-malmitalo-16635655/",
                        "en": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-malmitalo-16635655/"
                    },
                    "description": null,
                    "price": {
                        "fi": "18,50 €",
                        "sv": "18,50 €",
                        "en": "18,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4441,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:56.330553Z",
                    "last_modified_time": "2023-09-07T14:24:56.330579Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731324.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4441/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:24:55.458118Z",
            "last_modified_time": "2023-11-14T06:13:26.919650Z",
            "date_published": null,
            "start_time": "2023-10-21T12: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,
            "name": {
                "fi": "Jokeri Pokeri Box DeLuxe SHOW",
                "sv": "Jokeri Pokeri Box DeLuxe SHOW",
                "en": "Jokeri Pokeri Box DeLuxe SHOW"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Uudessa iloisessa showssa on ihmeteltävää koko perheelle, kun Simo Aalto tarjoilee maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashowlla.",
                "sv": "Barns och vuxnas stående favorit, tv-kändisen och den legendariska världsmästartrollkarlen Simo Aalto firar i år sin 45-åriga karriär som scenkonstnär.",
                "en": "Simo Aalto, the legendary favourite for children and adults and the world champion magician from TV, is celebrating 45 years as a performing artist this year."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CA3F2C26DF93F4C6B0EBCAF3C390787A/Jokeri_Pokeri_Box_DeLuxe_SHOW",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CA3F2C26DF93F4C6B0EBCAF3C390787A/Jokeri_Pokeri_Box_DeLuxe_SHOW",
                "en": "http://www.malmitalo.fi/en/events/event/CA3F2C26DF93F4C6B0EBCAF3C390787A/Jokeri_Pokeri_Box_DeLuxe_SHOW"
            },
            "description": {
                "fi": "<p>Uudessa iloisessa showssa on ihmeteltävää koko perheelle, kun Simo Aalto tarjoilee maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashowlla.</p><p>Lasten ja aikuisten legendaarinen kestosuosikki ja TV:stä tuttu maailmanmestaritaikuri <b>Simo Aalto</b> juhlii kuluvana vuonna 45-vuotista uraansa esiintyvänä taiteilijana. Simo ja hänen avustaja-vaimonsa <b>Kirsti</b> juhlivat merkkipaalua syksyllä 2023 alkavalla mittavalla kuudentoista paikkakunnan <i>Jokeri Pokeri Box DeLuxe</i> -kiertueella.</p><p>Tällä kiertueella on ensimmäistä kertaa koskaan mukana Special Guest Star, vatsastapuhuja <b>Sari Aalto</b>. Sari muistetaan vuoden 2017 Talent Suomi -ohjelman kakkossijastaan sekä lukemattomista videoistaan TikTok -palveluun ja Youtubeen. TikTokissa ja YouTubessa Sarilla on yli 5 miljoonaa seuraajaa ja videoita on katsottu yli 100 miljoonaa kertaa ympäri maailman. Esityksen jälkeen Sari on tavattavissa Meet&Greet -tapahtumassa aulatiloissa.</p><p>Kolmikon mukaansatempaava esiintyminen takaa, että taikapölyn vaikutus säilyy pitkään, mieli virkistyy ja arjen pyöritys unohtuu. Sanalla sanoen luvassa on laadukasta estradiviihdettä!</p><p>Esitys sopii koko perheelle.</p>",
                "sv": "<p>Barns och vuxnas stående favorit, tv-kändisen och den legendariska världsmästartrollkarlen Simo Aalto firar i år sin 45-åriga karriär som scenkonstnär.</p><p>Special Guest Star: Sari Aalto</p>",
                "en": "<p>Simo Aalto, the legendary favourite for children and adults and the world champion magician from TV, is celebrating 45 years as a performing artist this year.</p><p>Special Guest Star: Sari Aalto</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60530/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60910",
            "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:32/?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: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"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4440,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:55.035394Z",
                    "last_modified_time": "2023-09-07T14:24:55.035418Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736553.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4440/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:24:54.837566Z",
            "last_modified_time": "2023-11-14T06:13:26.848061Z",
            "date_published": null,
            "start_time": "2023-10-21T11: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,
            "name": {
                "fi": "DanceAbility: Lasten inklusiivinen tanssitunti",
                "en": "DanceAbility: Children's inclusive dance class"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9B7CE263F448F32677A0D4D23C76A1CC/DanceAbility_Lasten_inklusiivinen_tanssitunti_",
                "en": "http://www.annantalo.fi/en/events/event/9B7CE263F448F32677A0D4D23C76A1CC/DanceAbility_Children_s_inclusive_dance_class"
            },
            "description": {
                "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>",
                "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60910/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59925",
            "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: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: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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://forms.gle/eLVwQjytM6XcgD538",
                        "sv": "https://forms.gle/eLVwQjytM6XcgD538",
                        "en": "https://forms.gle/eLVwQjytM6XcgD538"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:54.611387Z",
                    "last_modified_time": "2023-09-07T14:24:54.611410Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730718.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:24:54.450148Z",
            "last_modified_time": "2023-11-14T06:13:26.771927Z",
            "date_published": null,
            "start_time": "2023-10-21T11: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,
            "name": {
                "fi": "Kekäläinen & Company: Avoin tila",
                "sv": "Kekäläinen & Company: Öppet utrymme",
                "en": "Kekäläinen & Company: Shared Space"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Avoin tila on filosofinen tanssiteos kouluikäisille ja heidän aikuisilleen, joka etsii ratkaisua meidän aikamme kohtalonkysymykseen.",
                "sv": "Öppet utrymme är ett filosofiskt dansverk för barn i skolåldern och deras vuxna, som söker en lösning på vår tids ödesfråga.",
                "en": "Shared Space is a philosophical dance piece for school-aged children and their parents, which looks for answers for the questions of fate of our time."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4043E2DC8D317B4980CCA8103D2D08D7/Kekalainen_Company_Avoin_tila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/4043E2DC8D317B4980CCA8103D2D08D7/Kekalainen_Company_Oppet_utrymme",
                "en": "http://www.annantalo.fi/en/events/event/4043E2DC8D317B4980CCA8103D2D08D7/Kekalainen_Company_Shared_Space"
            },
            "description": {
                "fi": "<p>Avoin tila on filosofinen tanssiteos kouluikäisille ja heidän aikuisilleen, joka etsii ratkaisua meidän aikamme kohtalonkysymykseen.</p><p>Jokaisella ajalla on oma kohtalonkysymyksensä. Meidän aikanamme tämä kysymys syntyy ilmastokriisistä, massasukupuutosta ja aikaamme leimaavasta väkivallasta.</p><p>Tähän eräänlaiseksi vastaukseksi <i>Avoin tila</i> ehdottaa jakamista ja vieraanvaraisuutta. Jaettua tilaa, materiaaleja, niiden eloperäisyyttä ja niiden hoivaamista. Tila ja kokemus on jaettu samalla tavoin kuin maailma on jaettu ja yhteinen.</p><p>Esitys käyttää kuvataiteilijapari <i>nabbteerin</i> esinemaailmaa. Taiteilijapari <b>Janne Nabb</b> ja <b>Maria Teeri</b> havainnoivat taiteessaan monilajisia kulttuureja ja pyrkivät rakentamaan yhteisöjä ja jakamaan yhteistä tilaa. Avoin tila -teoksessa nähdään <i>nabbteerin</i> erilaisia materiaaleja ja tekstuureja kokeilevaa taidetta yhdessä <b>Sanna Kekäläisen</b> tanssitaiteen kanssa. <br>AVOIN TILA on nuorelle yleisölle suunnattu versio 27.9. ensi-iltansa saaneesta Kekäläinen & Companyn teoksesta Shared Spaces And Things We Need.<br>Teoksen kanta-esitys on saanut hyvän vastaanoton ja mm. Helsingin Sanomissa Maria Säkö kuvaa teosta näin:<br>\"Esitys kysyy: mitä on vieraanvaraisuus ja jakaminen? Esiintyjien eleiden tarkkuus ja herkkyys ovat aivan omaa luokkaansa, ja ne tarttuvat katsojaankin.</p><p>Aivan kuin tanssiteos kykenisi palauttamaan katsojien ruumiisiin tietoa hoivasuhteiden välttämättömyydestä kovassa, väkivaltaisessa, lajikadon ja ilmastokatastrofin keskellä elävässä maailmassa.\"</p><p>Käsikirjoitus, ohjaus ja koreografia, tila: Sanna Kekäläinen<br>Esiintyjät ja yhteistyö: Sanna Kekäläinen, Leila Kourkia, Lara Müller<br>Esinemaailma (paitsi pressut ja kassit): nabbteeri & Riikka Keränen <br>Äänisuunnittelu: Jaakko Kulomaa<br>Valosuunnittelu: Lauri Sirén</p><p>Esityksen kesto: noin 1 tunti<br>Esityksen kieli: sanaton<br>Ikäsuositus: 7+</p><p>Liput 15 €<br></i>Lippuvaraukset linkistä: https://forms.gle/eLVwQjytM6XcgD538</p>",
                "sv": "<p>Öppet utrymme är ett filosofiskt dansverk för barn i skolåldern och deras vuxna, som söker en lösning på vår tids ödesfråga.</p><p>Varje tid har sin ödesfråga. Vår tids fråga är klimatkrisen, massutrotningen och våldet som präglar vår tid.</p><p>Som ett slags svar på detta föreslår Öppet utrymme att vi delar med oss och visar varandra gästfrihet. Ett delat utrymme, delade material, deras organiska härkomst och att ta hand om dem. Vi delar utrymmet och upplevelsen på samma sätt som vi delar vår gemensamma värld.</p><p>Längd: ca. 1 t<br>Språk: ordlöss<br>Åldersrekommedation: 7+</p><p>Biljettär 15 €, https://forms.gle/eLVwQjytM6XcgD538</p>",
                "en": "<p>Shared Space is a philosophical dance piece for school-aged children and their parents, which looks for answers for the questions of fate of our time.</p><p>Each era has its own fateful question. In our time this question arises from the climate crisis, mass extinction and the violence that characterizes our age.</p><p><i>Shared Space</i> suggests sharing and hospitality as kind of an answer to this question. Shared materials, their organocenic quality and taking care of them. The space and experience are shared just as the world is shared between all.</p><p>Script, direction and coreography, space: Sanna Kekäläinen<br>Performers and co-operation: Sanna Kekäläinen, Leila Kourkia, Lara Müller, Johanna Rantanen<br>Objects (excepts bags and tarpaulins): nabbteeri & Riikka Keränen<br>Sound design: Jaakko Kulomaa<br>Light design: Lauri Sirén</p><p>Tickets €15: https://forms.gle/eLVwQjytM6XcgD538</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59925/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61108",
            "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:105/?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: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/yso:p16327/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5187,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:51.404819Z",
                    "last_modified_time": "2023-10-09T13:30:51.404838Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737458.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5187/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:30:50.623202Z",
            "last_modified_time": "2023-11-14T06:13:26.689498Z",
            "date_published": null,
            "start_time": "2023-10-21T10: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,
            "name": {
                "fi": "Leijonakuningas (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Disneyn eeppinen seikkailu seuraa Simbaa, sisukasta leijonanpentua, joka ei malttaisi odottaa kuninkaaksi tulemista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2020654676145F7987EC866EAAEA84ED/Leijonakuningas_7_"
            },
            "description": {
                "fi": "<p>Disneyn eeppinen seikkailu seuraa Simbaa, sisukasta leijonanpentua, joka ei malttaisi odottaa kuninkaaksi tulemista.</p><p>Hänen kunnianhimoinen setänsä Scar johtaa häntä harhaan, mutta Simba omaksuu hulvattomien seuralaistensa Timonin ja Pumban huolettoman elämäntyylin ja unohtaa kuninkaalliset velvollisuutensa.</p><p>Kohtalo kuitenkin kutsuu, ja hänen täytyy päättää, milloin on oikea aika palata Jylhämaahan ottamaan paikkansa elämän kiertokulussa.<br> <br>Ikäraja: 7<br>Kesto 88 min<br>Puhuttu suomeksi</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61108/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59919",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:54.219253Z",
                    "last_modified_time": "2023-09-07T14:24:54.219273Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731280.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4438/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:24:54.062202Z",
            "last_modified_time": "2023-11-14T06:13:26.613439Z",
            "date_published": null,
            "start_time": "2023-10-21",
            "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,
            "name": {
                "fi": "Shumicon",
                "sv": "Shumicon",
                "en": "Shumicon"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Shumicon on uusi con-tapahtuma, jonka pääpainona on cosplayharrastus.",
                "sv": "Shumicon är ett nytt con-evenemang där huvudvikten ligger på cosplay!",
                "en": "Shumicon is a new con event focusing on cosplay!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D1425306A8249D1328132E69159D3E56/Shumicon",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D1425306A8249D1328132E69159D3E56/Shumicon",
                "en": "http://www.stoa.fi/en/events/event/D1425306A8249D1328132E69159D3E56/Shumicon"
            },
            "description": {
                "fi": "<p>Shumicon on uusi con-tapahtuma, jonka pääpainona on cosplayharrastus.</p><p>Shumicon järjestetään koululaisten syyslomaviikolla 21.–22.10.2023.</p><p>Toivotamme tervetulleeksi myös anime-, manga-, videopeli- ja roolipeliharrastajat, sekä muusta japanilaisesta populaarikulttuurista kiinnostuneet kävijät. Tapahtuma on ikärajaton ja kohdennettu paikallisille helsinkiläisille nuorille, mutta tapahtumaan ovat tervetulleita kaikki aihepiiristä kiinnostuneet. <br> <br>Shumiconissa on maksullista ja maksutonta ohjelmaa. Työväenopiston tiloihin ja Stoan teatterisalin ohjelmaan vaaditaan sisäänpääsyranneke, mutta vapaata ohjelmaa on myös Stoan ja kirjaston tiloissa. Tapahtumarannekkeen hinta on 10 €. Rannekkeita tulee myyntiin rajallinen määrä.<br> <br>Tapahtuman tarkempi sisältö tarkentuu myöhemmin.</p><p>Tapahtuman järjestää Pääkaupunkiseudun Cosplay Ry. <br>https://shumicon.fi/tietoa-tapahtumasta/</p>",
                "sv": "<p>Shumicon är ett nytt con-evenemang där huvudvikten ligger på cosplay!</p><p>Vi välkomnar också besökare som är intresserade av anime, manga, videospel och rollspel och av andra japanska populärkulturella fenomen. Evenemanget har ingen åldersgräns och det vänder sig till lokala ungdomar från Helsingfors, men alla som intresserar sig för ämnet är välkomna.</p><p>På Shumicon finns både avgiftsbelagt och kostnadsfritt program. Evenemangsarmbandet kostar 10 €. Ett begränsat antal armband kommer till försäljning.</p>",
                "en": "<p>Shumicon is a new con event focusing on cosplay!</p><p>Vi välkomnar också besökare som är intresserade av anime, manga, videospel och rollspel och av andra japanska populärkulturella fenomen. Evenemanget har ingen åldersgräns och det vänder sig till lokala ungdomar från Helsingfors, men alla som intresserar sig för ämnet är välkomna.</p><p>På Shumicon finns både avgiftsbelagt och kostnadsfritt program. Evenemangsarmbandet kostar 10 €. Ett begränsat antal armband kommer till försäljning.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59919/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60840",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/katri-ylander-trio-malmitalo-17516316/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:52.940904Z",
                    "last_modified_time": "2023-09-07T14:24:52.940935Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728233.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:52.071657Z",
            "last_modified_time": "2023-11-14T06:13:26.537593Z",
            "date_published": null,
            "start_time": "2023-10-20T16: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,
            "name": {
                "fi": "Katri Ylander: Syksy akustisesti"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Valovoimaista Katri Ylanderia kuullaan tänä syksynä akustisella kiertueellaan ympäri Suomen konserttisalien."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1EBC6AFB27A698646D9D250D93200CD/Katri_Ylander_Syksy_akustisesti_"
            },
            "description": {
                "fi": "<p>Valovoimaista Katri Ylanderia kuullaan tänä syksynä akustisella kiertueellaan ympäri Suomen konserttisalien.</p><p>Valtavista hiteistään ja upeasta äänestään tunnettua artistia säestää sellisti <b>Elias Kahila</b> ja kitaristi <b>Markus Venehsalo</b>.</p><p>Erikoiskiertue sai ideansa vuosi sitten syksyllä soitetusta keikasta, jossa säestys oli samanlainen. \"Pimeät illat, sellon syvä sointi ja virtuositeettinen kitaransoitto sopivat täydellisesti syysiltaan. Olen jo vuosia haaveillut tällaisen kokoonpanon kanssa keikkojen tekemisestä ja nyt siihen avautui mahdollisuus. Lämpimästi tervetuloa! \" Katri iloitsee.</p><p>Jyväskyläläinen Elias Kahila on innovatiivinen pop/rock-sellisti, joka on soolokiertueidensa lisäksi keikkaillut mm. Antony Parviaisen, Antti Railion, Costello Hautamäen sekä JP Leppäluodon kanssa Kahila on kehittänyt sellolle uutta blues-pohjaista sellotekniikkaa. Katrin kiertueella hän laulaa lisäksi taustoja ja hyödyntää looppipedaaleita.</p><p>Markus Venehsalo on nilsiäläislähtöinen kitaravirtuoosi, joka on vaikuttanut vuosia mm. Katrin bändikokoonpanossa sekä säveltää ja tuottaa musiikkia bändilleen Mavon Safialle.</p><p>Katri Ylander tuli koko kansan tuntemaksi vuonna 2005 Idolsin toiselta tuotantokaudelta sijoittuen upeasti toiseksi. Kahdesti Emma-ehdokkaana ollut artisti on tunnettu mm. kappaleistaan <i>Sano mulle jotain kaunista</i>, <i>Välitunnilla</i>, <i>Onko vielä aikaa?</i> ja <i>Mansikkamäki</i>.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60840/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60038",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/global-club-nights-3424014/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/global-club-nights-3424014/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/global-club-nights-3424014/"
                    },
                    "description": null,
                    "price": {
                        "fi": "10 € / 6 €",
                        "sv": "10 € / 6 €",
                        "en": "10 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4436,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:51.331832Z",
                    "last_modified_time": "2023-09-07T14:24:51.331855Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732300.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4436/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:51.012993Z",
            "last_modified_time": "2023-11-14T06:13:26.456482Z",
            "date_published": null,
            "start_time": "2023-10-20T16: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,
            "name": {
                "fi": "Global Club Nights: Zemiene | Helsinki Cèilidh Band",
                "sv": "Global Club Nights: Zemiene | Helsinki Cèilidh Band",
                "en": "Global Club Nights: Zemiene | Helsinki Cèilidh Band"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.",
                "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6F80C5092A08F662E67A7D5A51F8D4BB/Global_Club_Nights_Zemiene_Helsinki_C_ilidh_Band",
                "sv": "http://www.caisa.fi/sv/evenemang/event/6F80C5092A08F662E67A7D5A51F8D4BB/Global_Club_Nights_Zemiene_Helsinki_C_ilidh_Band",
                "en": "http://www.caisa.fi/en/events/event/6F80C5092A08F662E67A7D5A51F8D4BB/Global_Club_Nights_Zemiene_Helsinki_C_ilidh_Band"
            },
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p><b>Zemiene</b><br>Zemiene on ryhmä lahjakkaita muusikoita Sibelius-Akatemian kansainvälisen musiikin osastolta Helsingistä. Kvartetti yhdistelee balkanilaisia, persialaisia, balttilaisia ja pohjoismaisia temperamentteja, tarinoita, kansanlauluja ja muita musiikillisia elementtejä.</p><p><b>Helsinki Cèilidh Band</b><br>Helsinki Cèilidh Band on Suomen hienoin skotlantilaista, irlantilaista ja englantilaista cèili-tanssimusiikkia soittava yhtye. Se opastaa yleisöä asiantuntevasti askelissa ja innostaa kaikki mukaan tanssilattialle.</p><p>Kesto: 3,5 h (sis. 15 min väliaika)<br>Ikäsuositus: sopii kaikille<br>Kieli: englanti, suomi, portugali ja espanja<br>Liput: 10/6 €, lippu.fi</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper. Global Club Nights (GCN) anordnas i samarbete med Globala musikinstitutionen vid Sibeliusakademin och Kulturcentret Caisa.</p><p><b>Zemiene</b><br>Zemiene är en grupp begåvade musiker som kommer från Sibeliusakademins avdelning för Global Music i Helsingfors, Finland. Kvartetten kombinerar balkanska, persiska, baltiska och nordiska temperament, berättelser, folkvisor och andra musikaliska element.</p><p><b>Helsinki Cèilidh Band</b><br>Helsinki Cèilidh band är Finlands finaste Cèilidh-band som erbjuder skotsk, irländsk och engelsk dansmusik. Bandet guidar publiken skickligt igenom dansstegen och lockar upp alla på dansgolvet.</p><p>Längd: 3,5 t med paus<br>Åldersrekommendation: för alla åldrar<br>Språk: engelska, finska, portugisiska och spanska<br>Biljetter 10/6 €, lippu.fi</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment.</p><p>With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights is produced in collaboration with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p><p><b>Global Club Nights 20 October at 7 pm: Zemiene | Helsinki Cèilidh Band</b></p><p><b>Zemiene</b><br>Zemiene is a group of talented musicians hailing from the Sibelius Academy's Global Music Department in Helsinki, Finland. The quartet combines Balkan, Persian, Baltic and Nordic temperaments, stories, folk songs and other musical elements.</p><p>Recently, Zemiene has just recorded their debut EP in a studio in Järvenpää, Ainola. Drawing inspiration from the present happenings, their homeland's folk songs, languages, nature, culture and stories. The band's compositions are a testament to music being a catalyst of bringing people from different cultures together.</p><p>Mehrnoosh Zolfaghari, Iranian composer, santoor, daf and dayereh player, Merve Abdurrahmani, composer, piano player and singer with roots from Kosovo and Finland, Ana Lazar, Slovenian violin player, Vija Moore, Latvian percussionist and singer. <br> <br><b>Helsinki Cèilidh Band</b><br>The Helsinki Cèilidh band are Finland finest Cèilidh catering for Scottish, Irish and English dance music. The band expertly guide the audience through the steps and have everyone up on the dance floor.</p><p>Duration: 3,5 h (inc. intermission 15 min)<br>Age recommendation: for all ages<br>Languages: English, Finnish, Portuguese and Spanish <br>Tickets € 10/6, lippu.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60038/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}