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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). 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&keyword=yso%3Ap4354&page=209
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 7034,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=210",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=208"
    },
    "data": [
        {
            "id": "kulke:61861",
            "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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7083,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:12:59.220552Z",
                    "last_modified_time": "2024-02-06T13:23:16.862800Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736592.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7083/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-10T13:12:59.207075Z",
            "last_modified_time": "2024-04-05T17:13:49.821364Z",
            "date_published": null,
            "start_time": "2024-03-04T08:15:00Z",
            "end_time": "2024-03-04T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4EAF56CA336A4118AE1A980570157724/Tanssi_ja_leikki_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4EAF56CA336A4118AE1A980570157724/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/4EAF56CA336A4118AE1A980570157724/The_dance_and_play"
            },
            "provider": null,
            "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ä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b></p><p>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.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</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.<br>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>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</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</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 instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation</b></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>Languages: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "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 inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61861/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61860",
            "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/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7082,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:12:59.138048Z",
                    "last_modified_time": "2024-02-06T13:23:16.760381Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736575.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7082/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-10T12:13:04.183614Z",
            "last_modified_time": "2024-04-05T17:13:49.770594Z",
            "date_published": null,
            "start_time": "2024-03-04T07:15:00Z",
            "end_time": "2024-03-04T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/47C35439A5A108EDA81D1CB421B0A92E/Tanssi_ja_leikki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/47C35439A5A108EDA81D1CB421B0A92E/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/47C35439A5A108EDA81D1CB421B0A92E/The_dance_and_play"
            },
            "provider": null,
            "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ä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>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.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></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>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>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.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</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 instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></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>"
            },
            "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 inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61860/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63016",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.teaterkojan.fi/biljetts",
                        "sv": "https://www.teaterkojan.fi/biljetts"
                    },
                    "price": {
                        "fi": "12 € / 15 €",
                        "sv": "12 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7534,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-02T13:13:16.685330Z",
                    "last_modified_time": "2024-02-06T13:23:15.890825Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744524.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7534/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-02T13:13:16.660016Z",
            "last_modified_time": "2024-04-05T17:13:49.240394Z",
            "date_published": null,
            "start_time": "2024-03-02T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/98A764F227AE299ADC6DF7D2CF565350/Teater_Kojan_Keltainenko_Varfor_gul_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/98A764F227AE299ADC6DF7D2CF565350/Teater_Kojan_Varfor_gul_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Miltä maailma näyttäisi, jos sinä saisit päättää? Mitä jos sinun unesi olisivatkin totta? Osaisivatko eläimet puhua? Entä osaisiko ihminen lentää? Olisimmeko kaikki ystäviä? Mitä värejä maailmassa olisi?</p><p>Ihminen on ainut olento, joka pystyy kuvittelemaan sellaisia asioita, joita ei ole. Erityisesti lapsilla on erinomainen kyky kuvitella ja haaveilla maailmoista ja uusista todellisuuksista kaukana täältä. Sieltä, unien ja haaveiden maasta, löytyy myös muutosvoimaa.</p><p>Voimaa, joka voi avata uusia mahdollisuuksia, uusia maailmoja. Voimaa joka auttaa meitä huomaamaan, että unet eivät ehkä aina olekaan vain unga, sillä joskus on vaikea tietää, missä unen ja toden raja menee. Keltainenko? on esitys juuri siitä - toden ja mielikuvituksen välisestä rajasta.</p><p>Esitys yhdistelee sirkusta, teatteria, tanssia ja leikkiä. Se on yhteinen tutkimusmatka sinne, missä toinen asia päättyy ja toinen alkaa.</p><p>Esitysaika: 35 min</p><p>Ikäsuositus: 2–6 v</p><p>Esitys on kaksikielinen (suomi, ruotsi)</p><p>Liput ennakkoon 12 €, ovelta 15 €: https://www.teaterkojan.fi/biljetts</p>",
                "sv": "<p>Hur skulle värden se ut om du fick bestämma? Om din dröm väcktes till liv? Kunde djuren prata? Kunde människan flyga? Skulle vi alla vara vänner? Vilka färger skulle de finnas?</p><p>Vi människor är den enda varelsen som kan föreställa oss det som inte är.</p><p>Barn har en skicklig förmåga att drömma om världar och verkligheter bortom. Där, i drömmarnas värld finns en förändringskraft. En kraft som kan öppna nya möjligheter, nya världar och kanske får  oss att inse att drömmen inte bara är en dröm, för ibland är det vara svårt att veta var gränsen går.<br> <br>Varför gul är en föreställning om gränsen mellan fakta och fantasi.<br> <br>Pjäsen blandar teater och cirkus, scen och salong, talspråk och teckenspråk, och tillsammans undersöker vi; var slutar det ena och börjar det andra.<br> <br> <br>Längd: cirka 35 minuter</p><p>Rekommenderas för barn i åldern 2-6</p><p>Biljetter: https://www.teaterkojan.fi/biljetts</p><p>Förhandsbokade biljetter 12 € vid dörren 15 €</p>"
            },
            "short_description": {
                "fi": "Miltä maailma näyttäisi, jos sinä saisit päättää? Mitä jos sinun unesi olisivatkin totta? Osaisivatko eläimet puhua? Entä osaisiko ihminen lentää? Olisimmeko kaikki ystäviä? Mitä värejä maailmassa olisi?",
                "sv": "Hur skulle värden se ut om du fick bestämma? Om din dröm väcktes till liv? Kunde djuren prata? Kunde människan flyga? Skulle vi alla vara vänner? Vilka färger skulle de finnas?"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Teater Kojan: Keltainenko? Varför gul?",
                "sv": "Teater Kojan: Varför gul?"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63016/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61196",
            "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:46/?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: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:668/?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:p1377/?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:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6169,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:41.180584Z",
                    "last_modified_time": "2024-02-06T13:23:15.698126Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738805.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6169/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T11:13:41.155673Z",
            "last_modified_time": "2024-04-05T17:13:49.116021Z",
            "date_published": null,
            "start_time": "2024-03-02",
            "end_time": "2024-04-20",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6A9EDBC379CC11D92D7CAAC90D8BCE36/Pehmeaan_kohtaan",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6A9EDBC379CC11D92D7CAAC90D8BCE36/Mjuka_punkter",
                "en": "http://www.annantalo.fi/en/events/event/6A9EDBC379CC11D92D7CAAC90D8BCE36/Tender_Point"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kuitua, haituvaa, pehmeää, painuvaa – Pehmeään kohtaan on näyttely pehmeistä materiaaleista.</p><p>Pehmeään kohtaan on Aalto-yliopiston taiteiden ja suunnittelun korkeakoulun Taiteen ja median laitoksen Pehmeät materiaalit nykytaiteessa -kurssin näyttely. Valinnaisiin opintoihin kuuluva kurssi, jonka lempinimi on Pehmikset, on ollut opinto-ohjelmassa vuodesta 2011 alkaen. Opiskelijat ovat tutustuneet tekstiilimateriaalien ja -tekniikoiden käyttöön nykytaiteessa luentojen, taiteilijavierailujen ja oman taiteellisen työskentelyn avulla. Näyttelyn teokset ja teema syntyvät opiskelijaryhmän ideoiden pohjalta. <br> <br>Näyttelyn ovat ideoineet ja toteuttaneet <b>Annika Hellsten, Annika Ihatsu, Oona Kaitera, Marlo Kuisma, Charlotta Liljeberg, Kerttuli Nera, Samu Pitkänen, Simone St Clair Stevenson, Henna Tuhkanen, El Vanhanen, Minni Klasila</b> ja <b>Valo Rastas</b>.<br> <br>Kurssin opettajana on toiminut Virpi Vesanen-Laukkanen.</p>",
                "sv": "<p>Fiber, dun, mjukt, tryckande – Mjuksaker är en utställning av mjuka material.</p><p>Mjuka punkter är en utställning för kursen Mjuka material i samtidskonsten vid Aalto universitetets högskola för konst, design och arkitektur. Den valbara kursen, som ordnas av institutionen för konst och medier, har funnits med i studieprogrammet sedan 2011. De studerande har bekantat sig med textilmaterial och tekniker genom föreläsningar, konstnärsbesök och eget konstnärligt arbete. Konstverken och idéen för utställningen är skapade av de studerande.</p><p>Utställningen är förverkligad av <b>Annika Hellsten, Annika Ihatsu, Oona Kaitera, Marlo Kuisma, Charlotta Liljeberg, Kerttuli Nera, Samu Pitkänen, Simone St Clair Stevenson, Henna Tuhkanen, El Vanhanen, Minni Klasila</b> ja <b>Valo Rastas</b>. <br> <br>Virpi Vesanen-Laukkanen har fungerat som kursens lärare.</p>",
                "en": "<p>Fibre, fluff, soft, sinking – Softies is an exhibition about soft materials.</p><p>Tender Point is an exhibition of the course Soft Materials in Contemporary Art at the Department of Art and Media, Aalto University School of Arts and Design. The elective course, nicknamed ‘Softies’, has been part of the curriculum since 2011. Through lectures, artist visits and their own artistic work, students have explored the use of textile materials and techniques in contemporary art.</p><p>The exhibition is designed and produced by students <b>Annika Hellsten, Annika Ihatsu, Oona Kaitera, Marlo Kuisma, Charlotta Liljeberg, Kerttuli Nera, Samu Pitkänen, Simone St Clair Stevenson, Henna Tuhkanen, El Vanhanen, Minni Klasila</b> and <b>Valo Rastas</b>.</p><p>The course was taught by Virpi Vesanen-Laukkanen.</p>"
            },
            "short_description": {
                "fi": "Kuitua, haituvaa, pehmeää, painuvaa – Pehmeään kohtaan on näyttely pehmeistä materiaaleista.",
                "sv": "Fiber, dun, mjukt, tryckande – Mjuksaker är en utställning av mjuka material.",
                "en": "Fibre, fluff, soft, sinking – Softies is an exhibition about soft materials."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pehmeään kohtaan – Pehmeät materiaalit nykytaiteessa",
                "sv": "Mjuka punkter – Mjuka material i modern konst",
                "en": "Tender Point – Soft materials in contemporary art"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61196/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61503",
            "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: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-7/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6349,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T12:13:45.461268Z",
                    "last_modified_time": "2024-02-06T13:23:15.009534Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736505.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6349/?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-11-30T12:13:45.440507Z",
            "last_modified_time": "2024-04-05T17:13:48.659795Z",
            "date_published": null,
            "start_time": "2024-02-29T08:00:00Z",
            "end_time": "2024-02-29T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/704F74A730EF1109311E26DE357360FC/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/704F74A730EF1109311E26DE357360FC/Konst_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/704F74A730EF1109311E26DE357360FC/Open_Art_Studio_for_Toddlers"
            },
            "provider": null,
            "description": {
                "fi": "<p>Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>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ä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta 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ä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen åldrar 1,5–3 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 ages 1.5.–3 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 change 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>"
            },
            "short_description": {
                "fi": "Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille",
                "sv": "Konst för småbarn",
                "en": "Open Art Studio for Toddlers"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61503/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61823",
            "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:351/?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:51/?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:p2625/?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:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6908,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T11:13:02.248581Z",
                    "last_modified_time": "2024-02-06T13:23:14.630494Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742296.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6908/?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-12-29T11:13:02.235307Z",
            "last_modified_time": "2024-04-05T17:13:48.416602Z",
            "date_published": null,
            "start_time": "2024-02-28T08:30:00Z",
            "end_time": "2024-02-28T09:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C18DB70B76C3FD00C221F24A74C820D6/Vauvasirkuksen_jatkokurssi",
                "en": "http://www.stoa.fi/en/events/event/C18DB70B76C3FD00C221F24A74C820D6/Baby_Circus_for_the_Advanced"
            },
            "provider": null,
            "description": {
                "fi": "<p>Vauvasirkuksen jatkokurssilla ke 7.2.-13.3. (5x) klo 10.30-11.15 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.</p><p>Viiden kerran kurssi on suunnattu vauvasirkuskurssin käyneille. Stoan seuraava vauvasirkuksen alkeiskurssi alkaa 20.3.2024. <br> <br>Sirkus on hyvin monialaista, ja kurssilla opitut taidot ja liikkeet tarjoavat perustan paitsi sirkustaidoille, myös arkitaidoille ja myöhemmin myös monille liikuntalajeille.</p><p>Jännittävä ja vuorovaikutteinen tunti auttaa lasta löytämään mielen ja kehon yhteyden varhaisessa ikävaiheessa. Tässä tärkeässä oppimisjaksossa lapsen utelias mieli janoaa uusia kokemuksia ja niihin liittyviä tunteita. Tavoitteena on tarjota ilahduttavia hetkiä leikin äärellä ja mahdollisuuksia syventää vanhempien ja lasten välistä suhdetta.</p><p>Tervetuloa sukeltamaan sirkustaiteiden maailmaan!<br>Ohjaaja: sirkusohjaaja Enrique Salas<br>Vauvasirkusryhmän ikäsuositus: 5kk -1-vuotiaat, ei vielä kävelevät lapset  <br>Paikka: Stoan musiikkisali  <br>Kesto: 5 x 45 min   <br>Kieli: suomi, englanti ja espanja</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.<br> <br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "en": "<p>During this advanced circus course Wed 7.2.-13.3. (5x) at 10.30-11.15 both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course.</p><p>The course is meant for those who have already completed the Baby Circus for Beginners course. Next beginners’ course begins 20 March 2024.</p><p>Circus is very multi-disciplinary which allows for the introduction of many skills and movements that benefit not only circus skills but provide a foundation for many sports and life in general.</p><p>Expect an exciting and interactive class to help your child connect mind and body at an early age helping them enter a crucial learning period, where their curious minds are eager for new experiences and all of the fancy sensations that come with them. Playing and creating deeper bonds between parents and kids is our goal.</p><p>Welcome to play and dive into the circus arts.</p><p>Instructor: circus instructor and performer Enrique Salas</p><p>Info: hanna.westerholm@hel.fi</p>"
            },
            "short_description": {
                "fi": "Vauvasirkuksen jatkokurssilla ke 7.2.-13.3. (5x) klo 10.30-11.15 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.",
                "en": "During this advanced circus course Wed 7.2.-13.3. (5x) at 10.30-11.15 both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vauvasirkuksen jatkokurssi",
                "en": "Baby Circus for the Advanced"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61823/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61613",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6483,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:09.520124Z",
                    "last_modified_time": "2024-02-06T13:23:14.530453Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738486.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6483/?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-12-07T14:14:09.505293Z",
            "last_modified_time": "2024-04-05T17:13:48.363315Z",
            "date_published": null,
            "start_time": "2024-02-28T08:00:00Z",
            "end_time": "2024-02-28T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C0ED251C0090B7C30E892B5621C5CCF4/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/C0ED251C0090B7C30E892B5621C5CCF4/Naperokino",
                "en": "http://www.annantalo.fi/en/events/event/C0ED251C0090B7C30E892B5621C5CCF4/Naperokino"
            },
            "provider": null,
            "description": {
                "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.<br> <br>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.<br> <br>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.<br> <br>Ovella lapsia on tervehtimässä Pikku-Myyrä. Lisäksi ke 17.1., 14.2. ja 24.4. pääset myös tapaamaan ja halaamaan Naperokinossa vierailevaa isoa Myyrää!</p><p>Näytöksillä on joka viikko vaihtuva teema:<br>• Ke 17.1.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 24.1.2024 Naperokino: seikkailu ja matka<br>• Ke 31.1.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 7.2.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 14.2.2024 Naperokino: ystävät ja perhe <br>• Ke 21.2.2024 Naperokino: luovuus ja taiteet <br>• Ke 28.2.2024 Naperokino: luonto ja eläimet <br>• Ke 6.3.2024 Naperokino: mielikuvitus<br>• Ke 13.3.2024 Naperokino: yhteiskunta ja kaupunki<br>• Ke 20.3.2024 Naperokino: seikkailu ja matka<br>• Ke 27.3.2024 Naperokino: huolenpito ja rakkaus<br>• Ke 3.4.2024 Naperokino: rohkeus ja auttaminen<br>• Ke 10.4.2024 Naperokino: ystävät ja perhe<br>• Ke 17.4.2024 Naperokino: luovuus ja taiteet<br>• Ke 24.4.2024 Naperokino: luonto ja eläimet</p><p>Kieli: suomi<br>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa</p>",
                "sv": "<p>De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Under den första halvan av visningen som varar två timmar visas animerade filmer utan tal och under den andra halvan kommer finskspråkiga favoritfilmer med.</p><p>Språk: finska<br>För 0–3 åringar med sina föräldrar</p>",
                "en": "<p>The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue in Finnish.</p><p>For 0–3 year olds with their parents.</p>"
            },
            "short_description": {
                "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "De 0–3-åriga barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "The cinema for 0–3-year-olds, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Naperokino",
                "sv": "Naperokino – Knattebion",
                "en": "Naperokino – Toddler cinema"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61613/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61815",
            "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:351/?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:51/?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:p2625/?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:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6902,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-29T10:14:26.654420Z",
                    "last_modified_time": "2024-02-06T13:23:14.439861Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742291.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6902/?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-12-29T10:14:26.630768Z",
            "last_modified_time": "2024-04-05T17:13:48.289757Z",
            "date_published": null,
            "start_time": "2024-02-28T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D99D786A46F41C62DC3F8B7EA0F857F4/Taaperosirkuksen_jatkokurssi_",
                "en": "http://www.stoa.fi/en/events/event/D99D786A46F41C62DC3F8B7EA0F857F4/Toddler_Circus_for_the_Advanced"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taaperosirkuksen jatkokurssilla ke 7.2.-13.2. (5x) klo 9.15-10 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.</p><p>Viiden kerran mittainen kurssi on suunnattu vauvasirkuskurssin tai taaperojen alkeiskurssin käyneille. Stoan seuraava alkeiskurssi alkaa 20.3.2024. <br> <br>Sirkus on hyvin monialaista, ja kurssilla opitut taidot ja liikkeet tarjoavat perustan paitsi sirkustaidoille, myös arkitaidoille ja myöhemmin myös monille liikuntalajeille.</p><p>Jännittävä ja vuorovaikutteinen tunti auttaa lasta löytämään mielen ja kehon yhteyden varhaisessa ikävaiheessa. Tässä tärkeässä oppimisjaksossa lapsen utelias mieli janoaa uusia kokemuksia ja niihin liittyviä tunteita. Tavoitteena on tarjota ilahduttavia hetkiä leikin äärellä ja mahdollisuuksia syventää vanhempien ja lasten välistä suhdetta.</p><p>Tervetuloa sukeltamaan sirkustaiteiden maailmaan!</p><p>Ohjaaja: sirkusopettaja, sirkustaiteilija Enrique Salas</p><p>Taaperosirkuksen osallistujat: 1–2-vuotiaat, jo kävelevät lapset  <br>Paikka: Stoan musiikkisali  <br> <br>Kesto: 5 x 45 min   <br>Kieli: suomi, englanti ja espanja    <br> <br>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "en": "<p>During this advanced circus course Wed 7.2.-13.2. (5x) at 9.15-10, both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course.</p><p>The course is meant for those who have already completed the Toddler Circus for Beginners course. Next beginners’ course begins 20 March 2024.</p><p>Circus is very multi-disciplinary which allows for the introduction of many skills and movements that benefit not only circus skills but provide a foundation for many sports and life in general.</p><p>Expect an exciting and interactive class to help your child connect mind and body at an early age helping them enter a crucial learning period, where their curious minds are eager for new experiences and all of the fancy sensations that come with them. Playing and creating deeper bonds between parents and kids is our goal.<br> <br>Welcome to play and dive into the circus arts.</p><p>Instructor: circus instructor and performer Enrique Salas</p><p>Language: English, Spanish and Finnish    <br>Age recommendation: 1–2 years old with a parent or grandparent  <br>Duration: 5 x 45 min</p><p>Registration 10.1. at 10 a.m. www.stoa.fi</p><p>Info: hanna.westerholm@hel.fi</p>"
            },
            "short_description": {
                "fi": "Taaperosirkuksen jatkokurssilla ke 7.2.-13.2. (5x) klo 9.15-10 niin lapset kuin heidän aikuisensa pääsevät oppimaan uusia taitoja ja kehittämään alkeiskurssilla opittua.",
                "en": "During this advanced circus course Wed 7.2.-13.2. (5x) at 9.15-10, both child and adult get to learn new skills as well as build on the ones learnt on the beginners’ course."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Taaperosirkuksen jatkokurssi",
                "en": "Toddler Circus for the Advanced"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61815/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61786",
            "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:351/?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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6863,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T10:12:44.628295Z",
                    "last_modified_time": "2024-02-06T13:23:14.341963Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742281.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6863/?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-12-28T10:12:44.616463Z",
            "last_modified_time": "2024-04-05T17:13:48.244285Z",
            "date_published": null,
            "start_time": "2024-02-27T15:30:00Z",
            "end_time": "2024-02-27T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BF7E2A6C9A80612B0D8D9950AEE8430A/Stoan_perhesirkuskurssi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/BF7E2A6C9A80612B0D8D9950AEE8430A/Cirkus_for_familjer_",
                "en": "http://www.stoa.fi/en/events/event/BF7E2A6C9A80612B0D8D9950AEE8430A/Circus_course_for_families_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).</p><p>Sirkus on aina herättänyt uteliaisuutta ja iloa niin isoissa kuin pienissäkin. Tämä lapsen ja aikuisen yhteinen harrastus avaa ovia sirkuksen maailmaan.</p><p>Sirkuskurssilla leikitään ja kokeillaan erilaisia sirkustaitoja kuten tasapainoilua, akrobatiaa ja jongleerausvälineitä. Lapsesi pääsee iloitsemaan kokonaisvaltaisesta aistikokemuksesta, joka edistää luovuutta ja hahmotuskykyä sekä kehittää tärkeitä taitoja, kuten tasapainoa, voimaa ja koordinaatiota. Aikuiset saavat samalla vetreyttää omia taitojaan, pääsevät tutustumaan muihin vanhempiin tai isovanhempiin sekä tietenkin luomaan läheistä suhdetta omaan lapseensa.</p><p>Ohjaaja: Enrique Salas <br>Kesto: 10 x 45 min <br>Max. osallistujamäärä: 12 paria <br>Kielet: englanti, espanja, suomi <br>Maksuton.</p><p>Ennakkoilmoittautuminen 10.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p><p>HUOM! Jos et mahtunut kurssille mukaan, mutta haluat päästä tutustumaan perhesirkustoimintaan, voit tulla paikan päälle ennen kurssin alkua kokeilemaan onneasi. Otamme jokaisella kurssikerralla mukaan max kaksi lapsi-aikuinen-paria kokeilemaan harrastusta kertaluonteisesti, jos tilaa on.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15</p><p>Nu är det dags för skoj och lek i cirkusens magiska värld. Upplevelsen involverar även ditt barns alla sinnen, vilket uppmuntrar till kreativitet, utvecklar rumsuppfattningen och låter det träna på grundläggande färdigheter, såsom balans, styrka, koordination osv. Föräldrar får pröva på cirkuskonst och självklart också knyta an till sitt eget barn.</p><p>Lektioner för barn i åldern 3–6 tillsammans med vuxen.</p><p>Instruktör: cirkusinstruktören och artisten Enrique Salas  <br>Längd: 10 x45 min. <br>Språk: engelska, spanska och finska  <br>Fritt inträde</p><p>Obligatorisk förhandsregistrering fr.o.m. 10.1. kl 10. www.stoa.fi<br>Mera info: hanna.westerholm@hel.fi</p>",
                "en": "<p>The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15</p><p>Now it is time to have fun with your little toddler throughout the magic of circus. It will be a complete sensory experience for your child, encouraging creativity, laterality, developing spatial awareness and building on essential skills like balance, strength, coordination and more. Parents will get a chance to have a go at some circus skills and of course bond with your own little one.</p><p>Classes for children from 3 to 6 years of age accompanied by an adult.</p><p>Instructor: circus instructor and performer Enrique Salas  <br>Duration: 10 x 45 min <br>Languages: English, Spanish, Finnish <br>Free entry</p><p>Pre-registration starting from Jan 10th at 10 a.m. at stoa.fi<br>More info: hanna.westerholm@hel.fi</p>"
            },
            "short_description": {
                "fi": "Stoan notkea sirkusryhmä 3–6-vuotiaille lapsille ja heidän aikuisilleen. Kymmenen opetuskerran kurssi: ti 6.2. -16.4. klo 17.30-18.15 (ei talvilomaviikolla ti 20.2.).",
                "sv": "Cirkus är något som väckt nyfikenhet och glädje i familjer genom tiderna. 6.2. -16.4. kl 17.30-18.15",
                "en": "The circus has awoken curiosity and joy for families during ages. Tue 6.2. -16.4. at 17.30-18.15"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Stoan perhesirkuskurssi",
                "sv": "Cirkus för familjer",
                "en": "Circus course for families"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61786/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61502",
            "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: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-6/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6348,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T12:13:45.334211Z",
                    "last_modified_time": "2024-02-06T13:23:13.945675Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736482.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6348/?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-11-30T12:13:45.312971Z",
            "last_modified_time": "2024-04-05T17:13:48.086045Z",
            "date_published": null,
            "start_time": "2024-02-27T11:30:00Z",
            "end_time": "2024-02-27T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1EF2F451D46718C51944D44E73154433/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1EF2F451D46718C51944D44E73154433/Konst_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/1EF2F451D46718C51944D44E73154433/Open_Art_Studio_for_Toddlers"
            },
            "provider": null,
            "description": {
                "fi": "<p>Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>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ä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta 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ä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen åldrar 1,5–3 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 ages 1.5.–3 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 change 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>"
            },
            "short_description": {
                "fi": "Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille",
                "sv": "Konst för småbarn",
                "en": "Open Art Studio for Toddlers"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61502/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61859",
            "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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7081,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:12:58.394978Z",
                    "last_modified_time": "2024-02-06T13:23:13.848302Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736591.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7081/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-10T13:12:58.381610Z",
            "last_modified_time": "2024-04-05T17:13:47.979698Z",
            "date_published": null,
            "start_time": "2024-02-26T08:15:00Z",
            "end_time": "2024-02-26T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/5DB4FDF2E9BE6AFBA0D2B74A12BD4B7B/Tanssi_ja_leikki_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/5DB4FDF2E9BE6AFBA0D2B74A12BD4B7B/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/5DB4FDF2E9BE6AFBA0D2B74A12BD4B7B/The_dance_and_play"
            },
            "provider": null,
            "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ä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b></p><p>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.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</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.<br>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>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</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</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 instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation</b></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>Languages: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "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 inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61859/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61858",
            "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/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7080,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:12:58.320841Z",
                    "last_modified_time": "2024-02-06T13:23:13.754583Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736574.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7080/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-10T12:13:03.363531Z",
            "last_modified_time": "2024-04-05T17:13:47.928311Z",
            "date_published": null,
            "start_time": "2024-02-26T07:15:00Z",
            "end_time": "2024-02-26T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/33996570A1F78EE500705CCAD423DEF9/Tanssi_ja_leikki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/33996570A1F78EE500705CCAD423DEF9/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/33996570A1F78EE500705CCAD423DEF9/The_dance_and_play"
            },
            "provider": null,
            "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ä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>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.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></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>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>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.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</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 instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></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>"
            },
            "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 inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61858/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61643",
            "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: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:668/?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:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?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: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:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6532,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T14:14:15.272409Z",
                    "last_modified_time": "2024-02-06T13:23:13.556841Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739511.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6532/?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-12-08T14:14:15.246482Z",
            "last_modified_time": "2024-04-05T17:13:47.838858Z",
            "date_published": null,
            "start_time": "2024-02-25T12:00:00Z",
            "end_time": "2024-02-25T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3772BE9D8DD4B0FF07481419C69E3A7F/Tyopaja_Hyrran_pyorteissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3772BE9D8DD4B0FF07481419C69E3A7F/Verkstad_snurran_virvlar",
                "en": "http://www.annantalo.fi/en/events/event/3772BE9D8DD4B0FF07481419C69E3A7F/Workshop_Twirling_like_a_spinning_top"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa valmistamaan oma tanssiva taikahyrrä!</p><p>Mitä silmäni oikein näkevätkään? Omituiset visuaaliset illuusiot saavat epäilemään omia silmiä! Hyrrän pyörteissä -työpajassa tutustutaan optiseen taiteeseen ja valmistetaan omat tanssivat taikahyrrät.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Kyseessä on non-stop työpaja, jossa voit viipyä haluamasi ajan.</p><p>Työpajan ohjaa Annantalon taidekasvattaja Simo Koivunen.<br> <br>Tila: Grafiikan luokka<br>Työskentelykieli: suomi, englanti<br>Ikäsuositus: 6+</p>",
                "sv": "<p>Välkommen att göra din egen dansande magiska snurra!</p><p>Vad är det mina ögon ser? Konstiga visuella illusioner får dig att tvivla på dina egna ögon! I verkstaden Snurran virvlar blir vi bekanta med optisk konst och tillverkar egna dansande magiska snurror.</p><p>Arbetsspråk: finska, engelska<br>Åldersrekommendation: 6+</p>",
                "en": "<p>Come make your own dancing magic spinning top!</p><p>What exactly do my eyes see? Bizarre visual illusions will make you doubt your eyes! In the Twirling like a spinning top workshop, you will get acquainted with optical art and make your own dancing magic spinning tops.</p><p>Working language: Finnish, English<br>Age recommendation: 6+</p>"
            },
            "short_description": {
                "fi": "Tervetuloa valmistamaan oma tanssiva taikahyrrä!",
                "sv": "Välkommen att göra din egen dansande magiska snurra!",
                "en": "Come make your own dancing magic spinning top!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Työpaja: Hyrrän pyörteissä – Tanssiva talviloma",
                "sv": "Verkstad: snurran virvlar – Dansande vinterlov",
                "en": "Workshop: Twirling like a spinning top – Dancing Winter Holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61643/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61469",
            "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: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: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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/tanssiteatteri-raatikko/tanssiteatteri-raatikko-hip-hop-hurraa-3556564/",
                        "sv": "https://www.lippu.fi/artist/tanssiteatteri-raatikko/tanssiteatteri-raatikko-hip-hop-hurraa-3556564/",
                        "en": "https://www.lippu.fi/artist/tanssiteatteri-raatikko/tanssiteatteri-raatikko-hip-hop-hurraa-3556564/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6530,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T14:14:15.054736Z",
                    "last_modified_time": "2024-02-06T13:23:13.466515Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740510.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6530/?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-12-08T14:14:15.038501Z",
            "last_modified_time": "2024-04-05T17:13:47.792501Z",
            "date_published": null,
            "start_time": "2024-02-25T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8652989EB94DBFBDB5A2AEA1416B368B/Tanssiteatteri_Raatikko_Hip_Hop_Hurraa_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8652989EB94DBFBDB5A2AEA1416B368B/Tanssiteatteri_Raatikko_Hip_Hop_Hurraa_",
                "en": "http://www.annantalo.fi/en/events/event/8652989EB94DBFBDB5A2AEA1416B368B/Tanssiteatteri_Raatikko_Hip_Hop_Hurraa_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tanssiteatteri Raatikon kevään 2024 ensi-iltateoksessa Hip Hop Hurraa! heittäydytään katutanssien maailmaan ja annetaan hiphop -rytmien viedä mukanaan.</p><p>Humoristisessa tanssiteoksessa leikitellään liikkeellä ja lauseilla sekä harjoitellaan katu-uskottavuutta pienoiskoossa. Raatikon takuuvarmaan tyyliin yleisöllä on esityksessä aktiivinen rooli. Hip Hop Hurraa! jytkähtää jalan alle ikään katsomatta!<br> <br>Esiintyjät: Ira Wuolle ja Johan Högsten<br>Ohjaus, äänisuunnittelu ja skenografia: Jaakko Toivonen<br>Koreografia: Akim Bakhtaoui yhdessä esiintyjien kanssa<br>Puvustus: Elina Tuomisto</p><p>Kesto: 40 min<br>Ikä: 3+</p>",
                "sv": "<p>Dansteatern Raatikkos premiärverk för våren 2024 Hip Hop Hurraa! kastar sig in i gatudansarnas värld och hiphoppens rytmer.</p><p>Det humoristiska dansverket leker med rörelse och fraser samt övar gatutrovärdighet i miniatyr.</p><p>Skådespelare: Ira Wuolle och Johan Högsten<br>Regi, ljuddesign och scenografi: Jaakko Toivonen<br>Koreografi: Akim Bakhtaoui tillsammans med artisterna<br>Kostymdesign: Elina Tuomisto</p><p>Längd: 40 min<br>Ålder: 3+</p>",
                "en": "<p>In Raatikko dance theatre’s spring 2024 premiere, Hip Hop Hooray!, we will throw ourselves into the world of street dance and let the rhythms of hip hop whisk us away.</p><p>The humorous dance piece plays with movement and sentences while practicing street credibility in miniature.</p><p>Performers: Ira Wuolle and Johan Högsten<br>Direction, sound design and scenography: Jaakko Toivonen<br>Choreography: Akim Bakhtaoui together with the performers<br>Costume design: Elina Tuomisto</p><p>Duration: 40 min<br>Age: 3+</p>"
            },
            "short_description": {
                "fi": "Tanssiteatteri Raatikon kevään 2024 ensi-iltateoksessa Hip Hop Hurraa! heittäydytään katutanssien maailmaan ja annetaan hiphop -rytmien viedä mukanaan.",
                "sv": "Dansteatern Raatikkos premiärverk för våren 2024 Hip Hop Hurraa! kastar sig in i gatudansarnas värld och hiphoppens rytmer.",
                "en": "In Raatikko dance theatre’s spring 2024 premiere, Hip Hop Hooray!, we will throw ourselves into the world of street dance and let the rhythms of hip hop whisk us away."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tanssiteatteri Raatikko: Hip Hop Hurraa – Tanssiva talviloma",
                "sv": "Tanssiteatteri Raatikko: Hip Hop Hurraa – Dansande vinterlov",
                "en": "Tanssiteatteri Raatikko: Hip Hop Hurraa – Dancing Dance Holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61469/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61642",
            "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: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:668/?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:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?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: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:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6528,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T14:14:14.802223Z",
                    "last_modified_time": "2024-02-06T13:23:13.374280Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739510.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6528/?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-12-08T14:14:14.786220Z",
            "last_modified_time": "2024-04-05T17:13:47.740924Z",
            "date_published": null,
            "start_time": "2024-02-25T09:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3A6C0D48D1CCE3D7CCA7C5D2176669F5/Tyopaja_Hyrran_pyorteissa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3A6C0D48D1CCE3D7CCA7C5D2176669F5/Verkstad_snurran_virvlar",
                "en": "http://www.annantalo.fi/en/events/event/3A6C0D48D1CCE3D7CCA7C5D2176669F5/Workshop_Twirling_like_a_spinning_top"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa valmistamaan oma tanssiva taikahyrrä!</p><p>Mitä silmäni oikein näkevätkään? Omituiset visuaaliset illuusiot saavat epäilemään omia silmiä! Hyrrän pyörteissä -työpajassa tutustutaan optiseen taiteeseen ja valmistetaan omat tanssivat taikahyrrät.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Kyseessä on non-stop työpaja, jossa voit viipyä haluamasi ajan.</p><p>Työpajan ohjaa Annantalon taidekasvattaja Simo Koivunen.<br> <br>Tila: Grafiikan luokka<br>Työskentelykieli: suomi, englanti<br>Ikäsuositus: 6+</p>",
                "sv": "<p>Välkommen att göra din egen dansande magiska snurra!</p><p>Vad är det mina ögon ser? Konstiga visuella illusioner får dig att tvivla på dina egna ögon! I verkstaden Snurran virvlar blir vi bekanta med optisk konst och tillverkar egna dansande magiska snurror.</p><p>Arbetsspråk: finska, engelska<br>Åldersrekommendation: 6+</p>",
                "en": "<p>Come make your own dancing magic spinning top!</p><p>What exactly do my eyes see? Bizarre visual illusions will make you doubt your eyes! In the Twirling like a spinning top workshop, you will get acquainted with optical art and make your own dancing magic spinning tops.</p><p>Working language: Finnish, English<br>Age recommendation: 6+</p>"
            },
            "short_description": {
                "fi": "Tervetuloa valmistamaan oma tanssiva taikahyrrä!",
                "sv": "Välkommen att göra din egen dansande magiska snurra!",
                "en": "Come make your own dancing magic spinning top!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Työpaja: Hyrrän pyörteissä – Tanssiva talviloma",
                "sv": "Verkstad: snurran virvlar – Dansande vinterlov",
                "en": "Workshop: Twirling like a spinning top – Dancing Winter Holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61642/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61644",
            "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: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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6529,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T14:14:14.956164Z",
                    "last_modified_time": "2024-02-06T13:23:13.279320Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742075.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6529/?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-12-08T14:14:14.939745Z",
            "last_modified_time": "2024-04-05T17:13:47.695769Z",
            "date_published": null,
            "start_time": "2024-02-25T09:30:00Z",
            "end_time": "2024-02-25T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CA05E7E75CB4DB33828A6E313022FA3E/Janne_Storm_Birth_of_a_Bird",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CA05E7E75CB4DB33828A6E313022FA3E/Janne_Storm_Birth_of_a_Bird",
                "en": "http://www.annantalo.fi/en/events/event/CA05E7E75CB4DB33828A6E313022FA3E/Janne_Storm_Birth_of_a_Bird"
            },
            "provider": null,
            "description": {
                "fi": "<p>Birth of a Bird on interaktiivinen, virtuaalitodellisuuteen toteutettu ääniteos. Vr-lasit päässä pääset kokeilemaan, miltä tuntuu koskettaa ääntä ja ohjata sitä liikkeellä.</p><p>Sinulla ei tarvitse olla aiempaa kokemusta vr-lasien käytöstä.</p><p>Birth of a Bird vie vr-lasien käyttäjän keskelle sävellystä. Kokija kuulee äänten liikkuvan ympärillään. Hän voi koskettaa ääniä, pitää niitä kädessään tai tuoda ne korvansa luo kuullakseen uusia yksityiskohtia. Kokija voi kulkea äänten seassa sekä omalla liikkeellään ohjata teoksen ääniä ja vaikuttaa kuulemansa musiikin luonteeseen.</p><p>Teoksen tekijä, Janne Storm, on paikalla ohjaamassa vr-lasien käytössä ja antamassa ohjeita teoksen kokemiseen.  Janne on äänisuunnittelija, moni-instrumentalisti sekä teatteri-, elokuva- ja vr-kokemuksien säveltäjä.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Kyseessä on non-stop-tilaisuus, johon voit saapua silloin, kun se sinulle parhaiten sopii. Paikalla on useampia vr-laseja, ja jokainen pääsee vuorollaan kokemaan teoksen. Varauduthan odottamaan omaa vuoroasi hetken aikaa.</p><p>Teoksen kesto: 6min <br>Tila: Tanssiluokka<br>Kieli: Sanaton <br>Ikäsuositus: 6+</p>",
                "sv": "<p>Birth of a Bird är ett interaktivt ljudverk som spelas i den virtuella verkligheten. Med VR-glasögon får du uppleva hur det känns att beröra ljudet och styra det med din röst. Du behöver inte ha tidigare erfarenhet av användning av VR-glasögon.</p><p>Birth of a Bird tar användaren av VR-glasögon in i en komposition. Användaren hör hur ljuden rör sig omkring hen. Hen kan beröra ljuden, hålla dem i handen eller föra dem intill örat för att höra nya detaljer. Användaren kan gå bland ljuden samt styra verkets ljud med sina rörelser och påverka naturen av den musik hen hör.</p><p>Verkets skapare, Janne Storm, är på plats och handleder i användning av VR-glasögon och ger anvisningar om hur man kan uppleva verket.  Janne är ljuddesigner, månginstrumentalist samt kompositör för teater-, film- och VR-upplevelser.</p><p>Fritt inträde, ingen förhandsanmälan. Evenemanget pågår nonstop, så du kan komma när det passar för dig bäst. Det finns flera par VR-glasögon, och var och en får på sin tur uppleva verket. Var vänligen beredd att vänta på din tur ett ögonblick.</p><p>Verkets löptid: 6min<br>Lokal: Dansklassrum<br>Språk: Inget språk<br>Åldersrekommendation: 6+</p>",
                "en": "<p>Birth of a Bird is an interactive music experience in virtual reality. With a VR headset, you can experience what it feels like to touch sound and control it with your movements. You don’t need any previous experience with a VR headset.</p><p>Birth of a Bird takes the wearers of VR headsets to the middle of a composition. They will hear the sounds move around them. They can touch the sounds, hold them in their hands or bring them to their ears to hear new details. They can walk among the sounds and control the composition with their movements, influencing the nature of the music they hear.</p><p>The creator, Janne Storm, will be present to instruct visitors in the use of a VR headset and give tips on how to best experience the piece.  Janne is a sound designer, multi-instrumentalist and composer of theatre, film and VR experiences.</p><p>Free admission, no advance registration. This is a non-stop event, so you can arrive at a time that suits you best. There will be several VR headsets, and everyone will get to experience the piece in turn. Please be prepared to wait for your turn for a while.</p><p>Duration of the work: 6 min<br>Venue: Dance classroom<br>Language: Non-verbal<br>Age recommendation: 6+</p>"
            },
            "short_description": {
                "fi": "Birth of a Bird on interaktiivinen, virtuaalitodellisuuteen toteutettu ääniteos. Vr-lasit päässä pääset kokeilemaan, miltä tuntuu koskettaa ääntä ja ohjata sitä liikkeellä.",
                "sv": "Birth of a Bird är ett interaktivt ljudverk som spelas i den virtuella verkligheten. Med VR-glasögon får du uppleva hur det känns att beröra ljudet och styra det med din röst. Du behöver inte ha tidigare erfarenhet av användning av VR-glasögon.",
                "en": "Birth of a Bird is an interactive music experience in virtual reality. With a VR headset, you can experience what it feels like to touch sound and control it with your movements. You don’t need any previous experience with a VR headset."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Janne Storm: Birth of a Bird – Tanssiva talviloma",
                "sv": "Janne Storm: Birth of a Bird – Dansande Sportlovet",
                "en": "Janne Storm: Birth of a Bird – Dancing Winter Holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61644/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61641",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p1235/?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: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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6526,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T14:14:14.403932Z",
                    "last_modified_time": "2024-02-06T13:23:12.438432Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739454.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6526/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-08T14:14:14.386739Z",
            "last_modified_time": "2024-04-05T17:13:47.417642Z",
            "date_published": null,
            "start_time": "2024-02-23T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5F4D3D42EF567CEBE3A756F08964635F/TanssiKino_Sing_2_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5F4D3D42EF567CEBE3A756F08964635F/TanssiKino_Sing_2_7_",
                "en": "http://www.annantalo.fi/en/events/event/5F4D3D42EF567CEBE3A756F08964635F/TanssiKino_Sing_2_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Talvilomalla katsotaan tanssiteemaisia elokuvia TanssiKinossa. Sing 2 (2021) on yhdysvaltalainen animaatioelokuva, joka sisältää tanssia, laulua ja valloittavia eläinhahmoja.</p><p>Buster onnistui tekemään New Moon Theatresta paikallisen menestystarinan. Hänellä on kuitenkin suuremmat tavoitteet: luoda esitys Redshore Cityn glamourin täyttämään Crystal Tower Theatreen. Ilman minkäänlaisia viihdealan kontakteja Busterin ja esiintyjien on keksittävä keinot päästäkseen maailmankuulun Crystal Entertainment -yhtiön päämajaan, joka on ankarasti hallinnassa musiikkimogulisusi Jimmy Crystalin toimesta.<br>  <br>Elokuvan hahmot puhuvat suomea. Leffa on jatko-osa vuoden 2016 elokuvalle Sing.</p><p>Tulethan hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Tilaan mahtuu noin 70 katsojaa.</p><p>Perjantain elokuva näytetään Annantalon 1. kerroksen oleskelutilassa.  <br>  <br>Ikäsuositus: 7+  <br>Paikka: 1. kerroksen oleskelutila / kahvilatila  <br>Kieli: suomi</p>",
                "sv": "<p>På vinterlovet ser man filmer med danstema i DansKino.</p><p>Sing 2 (2021) är en amerikansk animerad film som innehåller dans, sång och förtjusande djurfigurer.</p><p>Gratis inträde<br>Språk: finska</p>",
                "en": "<p>Watch dance-themed movies at TanssiKino during the winter holiday.</p><p>Sing 2 (2021) is an American animated film featuring dancing, singing and charming animal characters.</p><p>Free entry<br>Language: Finnish</p>"
            },
            "short_description": {
                "fi": "Talvilomalla katsotaan tanssiteemaisia elokuvia TanssiKinossa. Sing 2 (2021) on yhdysvaltalainen animaatioelokuva, joka sisältää tanssia, laulua ja valloittavia eläinhahmoja.",
                "sv": "På vinterlovet ser man filmer med danstema i DansKino.",
                "en": "Watch dance-themed movies at TanssiKino during the winter holiday."
            },
            "location_extra_info": null,
            "name": {
                "fi": "TanssiKino: Sing 2 (7) – Tanssiva talviloma",
                "sv": "TanssiKino: Sing 2 (7) – Dansande vinterlov",
                "en": "TanssiKino: Sing 2 (7) – Dancing Winter Holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61641/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61640",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p1235/?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: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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6525,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T14:14:14.142798Z",
                    "last_modified_time": "2024-02-06T13:23:12.160331Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739438.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6525/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-08T14:14:14.094629Z",
            "last_modified_time": "2024-04-05T17:13:47.198754Z",
            "date_published": null,
            "start_time": "2024-02-22T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D9CA9B7B8AB39E9C18E9395BD32C072F/TanssiKino_Billy_Elliot_12_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D9CA9B7B8AB39E9C18E9395BD32C072F/TanssiKino_Billy_Elliot_12_",
                "en": "http://www.annantalo.fi/en/events/event/D9CA9B7B8AB39E9C18E9395BD32C072F/TanssiKino_Billy_Elliot_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Talvilomalla katsotaan tanssiteemaisia elokuvia TanssiKinossa. Klassikkoelokuva Billy Elliot (2000) on suunnattu nuorille katsojille. Se kertoo tarinan 11-vuotiaasta pojasta, jota kiehtoo baletin kauneus.</p><p>Elokuva sijoittuu vuosiin 1984–1985, jolloin Britanniassa oli käynnissä hiilikaivostyöläisten lakko. Elokuvan päähenkilö Billy Elliot ei ole kuin isänsä; hän ei halua nyrkkeillä tai ryhtyä kaivostyöntekijäksi. Hän rakastaa tanssia ja haaveilee balettitanssijan urasta.</p><p>Elokuva on englanninkielinen ja tekstitetty suomeksi.</p><p>Vapaa pääsy, ei ilmoittautumisesta. Tulethan paikalle hyvissä ajoin, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuvaan mahtuu 74 katsojaa.</p><p>Ikäraja: 12. Nuoremmat katsojat harkinnan mukaan yhdessä aikuisen kanssa.<br>Tila: Juhlasali<br>Kieli: suomi, englanti</p>",
                "sv": "<p>å vinterlovet ser man filmer med danstema i DansKino. Den klassiska filmen Billy Elliot (2000) riktar sig till unga tittare. Det handlar om en 11-årig pojke som är fascinerad av balettens skönhet.</p><p>På vinterlovet ser man filmer med danstema i DansKino. Den klassiska filmen Billy Elliot (2000) riktar sig till unga tittare. Det handlar om en 11-årig pojke som är fascinerad av balettens skönhet.</p><p>Åldersgräns: 12 år<br>Språk: finska, engelska</p>",
                "en": "<p>Watch dance-themed movies at TanssiKino during the winter holiday. The classic Billy Elliot (2000) is aimed at young viewers. It tells the story of an 11-year-old boy who is fascinated by the beauty of ballet.</p><p>Watch dance-themed movies at TanssiKino during the winter holiday. The classic Billy Elliot (2000) is aimed at young viewers. It tells the story of an 11-year-old boy who is fascinated by the beauty of ballet.</p><p>Free entry, no registration required.</p><p>Age limit: 12  yrs<br>Language: Finnish, English</p>"
            },
            "short_description": {
                "fi": "Talvilomalla katsotaan tanssiteemaisia elokuvia TanssiKinossa. Klassikkoelokuva Billy Elliot (2000) on suunnattu nuorille katsojille. Se kertoo tarinan 11-vuotiaasta pojasta, jota kiehtoo baletin kauneus.",
                "sv": "å vinterlovet ser man filmer med danstema i DansKino. Den klassiska filmen Billy Elliot (2000) riktar sig till unga tittare. Det handlar om en 11-årig pojke som är fascinerad av balettens skönhet.",
                "en": "Watch dance-themed movies at TanssiKino during the winter holiday. The classic Billy Elliot (2000) is aimed at young viewers. It tells the story of an 11-year-old boy who is fascinated by the beauty of ballet."
            },
            "location_extra_info": null,
            "name": {
                "fi": "TanssiKino: Billy Elliot (12) – Tanssiva talviloma",
                "sv": "TanssiKino: Billy Elliot (12) – Dansande vinterlov",
                "en": "TanssiKino: Billy Elliot (12) – Dancing Winter Holiday"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61640/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61606",
            "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/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:p16327/?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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:09.154985Z",
                    "last_modified_time": "2024-02-06T13:23:12.067691Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739503.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6481/?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-12-07T14:14:09.124243Z",
            "last_modified_time": "2024-04-05T17:13:47.154787Z",
            "date_published": null,
            "start_time": "2024-02-22T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9DB53824D937034B173CE555E024C09C/Talvilomaleffa_Prinsessa_ja_sammakko_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9DB53824D937034B173CE555E024C09C/Vinterlovsfilm_Prinsessan_och_grodan_7_",
                "en": "http://www.malmitalo.fi/en/events/event/9DB53824D937034B173CE555E024C09C/Winter_holiday_movie_The_Princess_and_the_Frog_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Haluatko tietää, mitä todella tapahtui, kun prinsessa suuteli sammakkoa sadussa?</p><p>Vain 197-vuotias voodoo-noita Mama Odie voi perua loitsun...</p><p>Kesto 93 min<br>Ikäraja 7</p>",
                "sv": "<p>Vill du veta vad som verkligen hände när prinsessan kysste en groda i en saga?</p><p>Bara den 197-åriga voodoohäxan Mama Odie kan återkalla trollformeln...</p>",
                "en": "<p>Do you want to know what really happened when the princess kissed the frog in the fairy tale?</p><p>Only 197-year-old voodoo witch Mama Odie can undo the spell...</p>"
            },
            "short_description": {
                "fi": "Haluatko tietää, mitä todella tapahtui, kun prinsessa suuteli sammakkoa sadussa?",
                "sv": "Vill du veta vad som verkligen hände när prinsessan kysste en groda i en saga?",
                "en": "Do you want to know what really happened when the princess kissed the frog in the fairy tale?"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Talvilomaleffa: Prinsessa ja sammakko (7)",
                "sv": "Vinterlovsfilm: Prinsessan och grodan (7)",
                "en": "Winter holiday movie: The Princess and the Frog (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61606/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63023",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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/yso:p1235/?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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7553,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-05T10:13:40.401329Z",
                    "last_modified_time": "2024-02-06T13:23:11.966845Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744394.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7553/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-05T10:13:40.374428Z",
            "last_modified_time": "2024-04-05T17:13:47.101979Z",
            "date_published": null,
            "start_time": "2024-02-22T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/291C11A527605DBB03D141AD02532A19/Peppi_Pitkatossu_karkuteilla_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/291C11A527605DBB03D141AD02532A19/Pippi_pa_rymmen"
            },
            "provider": null,
            "description": {
                "fi": "<p>Vuonna 1941 Astrid Lindgrenin tuolloin 7-vuotias Karin-tytär sairasti keuhkokuumetta. Tytär pyysi äitiään kertomaan Peppi Pitkätossusta!</p><p>Hän keksi nimen sillä nimenomaisella hetkellä. Astrid ei kysynyt häneltä kuka Peppi Pitkätossu on, vaan aloitti kertomuksensa. Tämän tuloksena syntyi tarina epätavallisesta, maailman vahvimmasta tytöstä.</p><p>Peppi Pitkätossusta on vuosien varrella tullut maailmanlaajuinen menestys, ja monen muun asian lisäksi tehtiin kaksi Olle Hellbomin ohjaamaa elokuvaa.</p><p>Ikäsuositus S</p><p>Puhumme ruotsia, tekstitys suomeksi</p><p>Kesto noin 94 min.</p><p>Julkaisuvuosi 2014 (uusin painos)</p>",
                "sv": "<p>Starkare än Tarzan. Roligare än en födelsedag, och med strumpor så långa som dagen före julafton.</p><p>Astrid Lindgrens fantastiska historier om den rödhåriga, spralliga Pippi Långstrump och hennes vänner är lästa och älskade över hela världen. De har glatt flera generationers barn och det här är originalfilmatiseringarna av Pippi, Tommy och Annikas medryckande äventyr i Villa Villekulla och resten av världen i regi av Olle Hellbom. Remastrad.</p><p>Tommy och Annika är trötta på mammas evinnerliga tjat, så de beslutar sig för att rymma hemifrån. Men att rymma utan Pippi är inte roligt, så Pippi får följa med! Hon vet hur man upplever skojiga äventyr. Hon kan cykla utan hjul och hon kan köra bil med fötterna. Inte är hon rädd för någonting heller. Varken att åka tunna utför ett vattenfall eller möta en ilsken tjur. Och när Pippi är riktigt i form, då går hon på lina mellan två hus. Rakt över gatan, medan halva stan tittar på med hjärtat i halsgropen!</p><p>Svenskt tal, finsk text</p><p>Längd 94 min.</p><p>Barntillåten</p><p>Fritt inträde</p>"
            },
            "short_description": {
                "fi": "Vuonna 1941 Astrid Lindgrenin tuolloin 7-vuotias Karin-tytär sairasti keuhkokuumetta. Tytär pyysi äitiään kertomaan Peppi Pitkätossusta!",
                "sv": "Starkare än Tarzan. Roligare än en födelsedag, och med strumpor så långa som dagen före julafton."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Peppi Pitkätossu karkuteillä – Talvilomaelokuva",
                "sv": "Pippi på rymmen – Sportlovsbio"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63023/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}