Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 26990,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=237&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=235&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:65342",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153604,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:12.207260Z",
                    "last_modified_time": "2024-12-31T13:14:12.207275Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758513.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153604/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:12.182430Z",
            "last_modified_time": "2025-02-26T12:14:47.515428Z",
            "date_published": null,
            "start_time": "2025-03-20T08:00:00Z",
            "end_time": "2025-03-20T10: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D0B8D98CB1F476C201B89FE8139BF6AF/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D0B8D98CB1F476C201B89FE8139BF6AF/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/D0B8D98CB1F476C201B89FE8139BF6AF/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65342/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65341",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153603,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:11.900275Z",
                    "last_modified_time": "2024-12-31T13:14:11.900290Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758493.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153603/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:11.875331Z",
            "last_modified_time": "2025-02-26T12:14:46.694520Z",
            "date_published": null,
            "start_time": "2025-03-18T11:30:00Z",
            "end_time": "2025-03-18T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/FB386F824F2F35525ADF7B24D1163D3E/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/FB386F824F2F35525ADF7B24D1163D3E/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/FB386F824F2F35525ADF7B24D1163D3E/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65341/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65318",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-19588568/",
                        "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-19588568/",
                        "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-19588568/"
                    },
                    "description": null,
                    "price": {
                        "fi": "11 € / 6 €",
                        "sv": "11 € / 6 €",
                        "en": "11 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153570,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-30T15:14:04.143500Z",
                    "last_modified_time": "2024-12-30T15:14:04.143515Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760731.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153570/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-30T15:14:04.104502Z",
            "last_modified_time": "2025-02-26T12:14:45.337901Z",
            "date_published": null,
            "start_time": "2025-03-14T17:00:00Z",
            "end_time": "2025-03-14T20: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Baraka Issabu – African Child | Skatterheads Ltd. – Global Club Nights",
                "sv": "Baraka Issabu – African Child | Skatterheads Ltd. – Global Club Nights",
                "en": "Baraka Issabu – African Child | Skatterheads Ltd. – Global Club Nights"
            },
            "provider": null,
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p><b>Illan aikataulu</b><br>klo 18.50 Sisäänpääsy<br>klo 19.00 Tervetulosanat ja ekan bändin esittely<br>klo 19.05 Eka esitys<br>klo 20.25 Väliaika (20 min)<br>klo 20.20 Toisen bändin esittely<br>Klo 20.25 Toinen esitys</p><p><b>Baraka Issabu – African Child</b><br>Baraka Issabu on visionäärinen pianisti, musiikinopettaja, tutkija, säveltäjä, sovittaja ja tuottaja. Hänen syvä yhteytensä musiikin maailmaan on vienyt hänet Tansanian musiikkikentän kärkeen, jossa hänen intohimonsa virtaa jokaiseen esitykseen luoden lumoavia melodioita, jotka vangitsevat yleisön.</p><p>Issabu jatkaa musiikillisen ilmaisun rajojen rikkomista kutoen rikasta äänimaisemaa, joka ylittää rajat ja kulttuurit. Tällä hetkellä hän työskentelee odotetun debyyttialbuminsa parissa, joka on hänen taiteellisen visionsa ja luovien prosessiensa huipentuma. Tämä tuleva albumi lupaa esitellä Issabun ainutlaatuista tyylien sekoitusta ja vakiinnuttaa hänen paikkansa tyylinsä pioneerina.</p><p><b>Skatterheads Ltd.</b><br>Skatterheads Ltd. on elinvoimainen ensimmäisen aallon ska-yhtye, joka on omistautunut elvyttämään genren alkulähteiden energiset ja nopeatempoiset rytmit. Tuotantomme tavoitteena on tuoda skan ajaton soundi nykypäivän yleisöille sekoittamalla klassisia vaikutteita moderneihin vivahteisiin. Juhlistamme genren juuria, jotka ovat 1960-luvun Jamaikalla, ja yhdistämme musiikkiin erilaisia kulttuurielementtejä ja nykyvaikutteita.</p><p>Osallisuus ja monimuotoisuus ovat tuotantomme ytimessä. Bändimme jäsenet ovat kotoisin Mosambikista, Suomesta, Kreikasta, Brasiliasta, Yhdysvalloista, Nigeriasta ja Tansaniasta, mikä heijastaa erilaisten kulttuurivaikutteiden rikasta kirjoa. Tämä monimuotoisuus ei ainoastaan rikastuta musiikillista tyyliämme, vaan myös edistää yhteistyöhön perustuvaa ilmapiiriä, jossa erilaisia näkökulmia arvostetaan ja otetaan huomioon. Pyrimme aktiivisesti luomaan osallistavan tilan yleisöllemme ja yhteistyökumppaneillemme, jotta musiikki vastaisi monenlaisten kuulijoiden tarpeisiin ja edistäisi elinvoimaista, monikulttuurista musiikkimaisemaa.</p><p><b>Global Club Nights</b><br>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p><b>Baraka Issabu</b><br>Baraka Issabu är en visionär pianist, musiklärare, forskare, kompositör, arrangör och producent.</p><p>Hans djupa koppling till musikens värld har tagit honom till spetsen av Tanzanias musikscen, där hans passion flödar in i varje framträdande och skapar förtrollande melodier som fängslar publiken.</p><p>Issabu fortsätter att tänja på gränserna för det musikaliska uttrycket och väver ett rikt ljudlandskap som överskrider gränser och kulturer. Han arbetar för närvarande med sitt efterlängtade debutalbum, som är kulmen på hans konstnärliga vision och kreativa processer. Detta kommande album lovar att visa upp Issabus unika blandning av stilar och etablera hans plats som en pionjär inom sin stil.</p><p><b>Skatterheads Ltd.</b><br>Skatterheads Ltd. är ett livfullt första vågens skaband med målet att återuppliva de energiska och glättiga rytmerna från genrens ursprung. Med vår produktion vill vi ta det tidlösa soundet av ska till den samtida publiken och blanda klassiska influenser med moderna inslag. Vi hyllar genrens rötter i 1960-talets Jamaica samtidigt som vi låter vår musik genomsyras av olika kulturella element och samtida influenser.</p><p>Inkludering och mångfald är kärnan i vår produktion. Våra bandmedlemmar kommer från Moçambique, Finland, Grekland, Brasilien, USA, Nigeria och Tanzania, vilket skapar en rik väv av kulturella influenser. Mångfalden berikar inte bara vår musikaliska stil, utan främjar också en samarbetsmiljö där olika perspektiv värdesätts och integreras. Vi arbetar aktivt för att skapa ett inkluderande utrymme för vår publik och våra samarbetspartner för att säkerställa att vår musik får gehör hos ett brett utbud av lyssnare och bidrar till ett livfullt, mångkulturellt musikaliskt landskap.</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who work in music and love it come together to celebrate music together.</p><p><b>Baraka Issabu – African Child</b></p><p>Issabu, a visionary pianist, music educator, Researcher, composer, arranger, and producer. His profound connection to the world of music has catapulted him to the forefront of Tanzania's music scene, where his passion pours into every performance, crafting mesmerizing melodies that leave audiences spellbound.</p><p>Issabu continues to push the boundaries of musical expression, weaving a rich tapestry of sound that transcends borders and cultures. Currently, he is working on his highly anticipated debut album, a culmination of his artistic vision and creative processes. This forthcoming album promises to showcase Issabu's unique blend of styles and cementing his position as pioneer of the style. Issabu's artis and the tic work release of his album attempts to be a testament to the power of music to unite, inspire, and uplift.</p><p><b>Skatterheads Ltd.</b><br> Skatterheads Ltd. is a vibrant first wave ska band dedicated to reviving the energetic and upbeat rhythms of the genre's origins. Our production aims to bring the timeless sounds of ska to contemporary audiences, blending classic influences with modern twists. We celebrate the genre's roots in 1960s Jamaica while infusing our music with diverse cultural elements and contemporary influences.</p><p>Inclusion and diversity are at the core of our production. Our band members hail from Mozambique, Finland, Greece, Brazil, USA, Nigeria, and Tanzania, reflecting a rich tapestry of cultural influences. This diversity not only enriches our musical style but also fosters a collaborative environment where different perspectives are valued and integrated. We actively seek to create an inclusive space for our audience and collaborators, ensuring our music resonates with a wide range of listeners and contributes to a vibrant, multicultural musical landscape.</p><p><b>Global Club Nights</b><br>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment. With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) closely collaborates with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p><p>Duration: 3,5 hrs</p>"
            },
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.",
                "en": "Global Club Nights (GCN) is a club series where people who work in music and love it come together to celebrate music together."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/3262BF4EC2951B0E35510030B8C60998/Baraka_Issabu_African_Child_Skatterheads_Ltd_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/3262BF4EC2951B0E35510030B8C60998/Baraka_Issabu_African_Child_Skatterheads_Ltd_",
                "en": "http://www.caisa.fi/en/events/event/3262BF4EC2951B0E35510030B8C60998/Baraka_Issabu_African_Child_Skatterheads_Ltd_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65318/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65340",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153602,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:11.180770Z",
                    "last_modified_time": "2024-12-31T13:14:11.180787Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758512.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153602/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:11.144658Z",
            "last_modified_time": "2025-02-26T12:14:44.888876Z",
            "date_published": null,
            "start_time": "2025-03-13T08:00:00Z",
            "end_time": "2025-03-13T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C9DB25900A99C04068BBD6B5C8493307/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C9DB25900A99C04068BBD6B5C8493307/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/C9DB25900A99C04068BBD6B5C8493307/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65340/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65339",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153601,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:10.719017Z",
                    "last_modified_time": "2024-12-31T13:14:10.719031Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758492.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153601/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:10.693938Z",
            "last_modified_time": "2025-02-26T12:14:44.113838Z",
            "date_published": null,
            "start_time": "2025-03-11T11:30:00Z",
            "end_time": "2025-03-11T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/FFE60C62B8C2FF7311F80A1799AEADD8/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/FFE60C62B8C2FF7311F80A1799AEADD8/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/FFE60C62B8C2FF7311F80A1799AEADD8/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65339/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65338",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153600,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:09.996149Z",
                    "last_modified_time": "2024-12-31T13:14:09.996165Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758511.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153600/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:09.971826Z",
            "last_modified_time": "2025-02-26T12:14:42.465035Z",
            "date_published": null,
            "start_time": "2025-03-06T08:00:00Z",
            "end_time": "2025-03-06T10: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/64AEC6972AF67D51C2C68E00DFC7C9DB/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/64AEC6972AF67D51C2C68E00DFC7C9DB/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/64AEC6972AF67D51C2C68E00DFC7C9DB/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65338/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65332",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153590,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T10:14:03.606365Z",
                    "last_modified_time": "2024-12-31T10:14:03.606380Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758510.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153590/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T10:14:03.580872Z",
            "last_modified_time": "2025-02-26T12:14:39.750147Z",
            "date_published": null,
            "start_time": "2025-02-27T08:00:00Z",
            "end_time": "2025-02-27T10: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D6D5E718CC013EE244A4F66B2711662F/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D6D5E718CC013EE244A4F66B2711662F/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/D6D5E718CC013EE244A4F66B2711662F/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65332/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65331",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153581,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T09:15:32.097124Z",
                    "last_modified_time": "2024-12-31T09:15:32.097151Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758490.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153581/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T09:15:32.058863Z",
            "last_modified_time": "2025-02-26T12:14:38.874781Z",
            "date_published": null,
            "start_time": "2025-02-25T11:30:00Z",
            "end_time": "2025-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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/775C77E0AE47431EE4C738C319D8FA7E/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/775C77E0AE47431EE4C738C319D8FA7E/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/775C77E0AE47431EE4C738C319D8FA7E/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65331/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65330",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153589,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T10:14:01.867082Z",
                    "last_modified_time": "2024-12-31T10:14:01.867100Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758509.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153589/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T10:14:01.823758Z",
            "last_modified_time": "2025-02-26T12:14:34.636029Z",
            "date_published": null,
            "start_time": "2025-02-13T08:00:00Z",
            "end_time": "2025-02-13T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D7FEE10665345EE38B00500E751A16D0/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D7FEE10665345EE38B00500E751A16D0/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/D7FEE10665345EE38B00500E751A16D0/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65330/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65329",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153580,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T09:15:29.706872Z",
                    "last_modified_time": "2024-12-31T09:15:29.706896Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758489.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153580/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T09:15:29.679393Z",
            "last_modified_time": "2025-02-26T12:14:33.546426Z",
            "date_published": null,
            "start_time": "2025-02-11T11:30:00Z",
            "end_time": "2025-02-11T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/F3FDF5F4A0CA623BC9006893FE8ADC91/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/F3FDF5F4A0CA623BC9006893FE8ADC91/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/F3FDF5F4A0CA623BC9006893FE8ADC91/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65329/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65328",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153588,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T10:13:59.657942Z",
                    "last_modified_time": "2024-12-31T10:13:59.657966Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758508.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153588/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T10:13:59.632408Z",
            "last_modified_time": "2025-02-26T12:14:31.744571Z",
            "date_published": null,
            "start_time": "2025-02-06T08:00:00Z",
            "end_time": "2025-02-06T10: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/44FF00BC0A1255703F5F177D4632CBD7/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/44FF00BC0A1255703F5F177D4632CBD7/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/44FF00BC0A1255703F5F177D4632CBD7/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65328/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65327",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153579,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T09:15:27.089728Z",
                    "last_modified_time": "2024-12-31T09:15:27.089752Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758488.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153579/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T09:15:27.043022Z",
            "last_modified_time": "2025-02-26T12:14:30.568643Z",
            "date_published": null,
            "start_time": "2025-02-04T11:30:00Z",
            "end_time": "2025-02-04T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/398B78D328585AECC3B7569CD7C7F84B/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/398B78D328585AECC3B7569CD7C7F84B/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/398B78D328585AECC3B7569CD7C7F84B/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65327/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65326",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153587,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T10:13:57.924495Z",
                    "last_modified_time": "2024-12-31T10:13:57.924511Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758507.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153587/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T10:13:57.900199Z",
            "last_modified_time": "2025-02-26T12:14:29.396517Z",
            "date_published": null,
            "start_time": "2025-01-30T08:00:00Z",
            "end_time": "2025-01-30T10: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EE5104A92C23FF057204151C3C0FF81B/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EE5104A92C23FF057204151C3C0FF81B/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/EE5104A92C23FF057204151C3C0FF81B/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65326/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65325",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153578,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T09:15:25.465446Z",
                    "last_modified_time": "2024-12-31T09:15:25.465464Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758487.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153578/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T09:15:25.421340Z",
            "last_modified_time": "2025-02-26T12:14:28.689812Z",
            "date_published": null,
            "start_time": "2025-01-28T11:30:00Z",
            "end_time": "2025-01-28T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/353E4BCF59750B48BAE4633F6E33D07A/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/353E4BCF59750B48BAE4633F6E33D07A/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/353E4BCF59750B48BAE4633F6E33D07A/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65325/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65324",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153586,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T10:13:55.825702Z",
                    "last_modified_time": "2024-12-31T10:13:55.825717Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758506.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153586/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T10:13:55.797955Z",
            "last_modified_time": "2025-02-26T12:14:26.838618Z",
            "date_published": null,
            "start_time": "2025-01-23T08:00:00Z",
            "end_time": "2025-01-23T10: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8C7D242C8F76D19A7E8E92A190396D5D/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8C7D242C8F76D19A7E8E92A190396D5D/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/8C7D242C8F76D19A7E8E92A190396D5D/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65323",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153577,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T09:15:22.977740Z",
                    "last_modified_time": "2024-12-31T09:15:22.977757Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758486.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153577/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T09:15:22.937252Z",
            "last_modified_time": "2025-02-26T12:14:25.959843Z",
            "date_published": null,
            "start_time": "2025-01-21T11:30:00Z",
            "end_time": "2025-01-21T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1FB3AD5D6B24AFC1B4ACBFEDA5F1EFA2/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1FB3AD5D6B24AFC1B4ACBFEDA5F1EFA2/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/1FB3AD5D6B24AFC1B4ACBFEDA5F1EFA2/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65323/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65322",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153585,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T10:13:54.131015Z",
                    "last_modified_time": "2024-12-31T10:13:54.131031Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758505.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153585/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T10:13:54.083635Z",
            "last_modified_time": "2025-02-26T12:14:24.881134Z",
            "date_published": null,
            "start_time": "2025-01-16T08:00:00Z",
            "end_time": "2025-01-16T10: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A79E2D58CF94493FDD0B19F68D508D29/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A79E2D58CF94493FDD0B19F68D508D29/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/A79E2D58CF94493FDD0B19F68D508D29/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65322/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65321",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153576,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T09:15:21.191405Z",
                    "last_modified_time": "2024-12-31T09:15:21.191423Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758485.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153576/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T09:15:21.132217Z",
            "last_modified_time": "2025-02-26T12:14:24.322021Z",
            "date_published": null,
            "start_time": "2025-01-14T11:30:00Z",
            "end_time": "2025-01-14T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "provider": null,
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa 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 aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan 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 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</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. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D983B56670D8AF909C1F9D556E3AAB9E/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D983B56670D8AF909C1F9D556E3AAB9E/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/D983B56670D8AF909C1F9D556E3AAB9E/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65321/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64973",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kanneltalo-starman-kanneltalo-19528454/",
                        "sv": "https://www.lippu.fi/event/kanneltalo-starman-kanneltalo-19528454/",
                        "en": "https://www.lippu.fi/event/kanneltalo-starman-kanneltalo-19528454/"
                    },
                    "description": null,
                    "price": {
                        "fi": "25 € / 20 €",
                        "sv": "25 € / 20 €",
                        "en": "25 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153396,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T09:14:31.406224Z",
                    "last_modified_time": "2024-12-12T09:14:31.406245Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763183.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153396/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T09:14:31.379115Z",
            "last_modified_time": "2025-02-26T08:14:27.944329Z",
            "date_published": null,
            "start_time": "2025-04-10T15: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Starman",
                "sv": "SLUTSÅLD Starman",
                "en": "SOLD OUT Starman"
            },
            "provider": null,
            "description": {
                "fi": "<p>Uusi kotimainen monologinäytelmä, jonka tähtenä Martti Suosalo!</p><p>Starman on kirjailija <b>Juha Kauppisen</b> kirjoittama inhimillinen monologinäytelmä luonnon ja ihmisen suhteesta sekä epäinhimillisistä voimista, jotka ovat vääjäämättä tuhoamassa luontoa.<br> <br>Avaruudesta saapuva Starman <b>(Martti Suosalo)</b> tunkeutuu lupaa kysymättä suomalaiseen sirkustelttaan mellastamaan kesken monologiesityksen. Frogstimulantin voimalla hän alkaa muuttamaan esityksen kulkua, muuttamaan ihmistä ja vaikuttamaan siihen, kuinka ihminen toimii maapallolla.</p><p>Monikasvoinen näytelmä tuo lavalle sarjan muitakin mielikuvituksellisia hahmoja: jotkin erikoisia, toiset täysin arkipäiväisiä, jotkut ehkä molempia samaan aikaan. Hahmot haluavat sitä mitä kaikki muutkin: läheistensä hyvinvointia, luonnon pelastumista ja parempaa tulevaisuutta maapallolle. Mutta kuinka se tapahtuu? Ehkä pontevat palopuheet ja torikokous ovat hyvä alku?</p><p>Starman kuvaa surullisia aikoja ja epätoivoisia hetkiä, mutta kuitenkin jostain kohoaa esille naurua. Esitys osoittaa, että kun puhumme luonnon kuihtumisesta ja ihmisen osallisuudesta siihen, ainoa sallittu tyylilaji ei olekaan syyllistävä saarna.</p><p><b>Raila Leppäkosken</b> ohjauksessa synkeän ajankohtainen aihe taipuu hillittömäksi karnevaaliksi, jossa näyttelijä Suosalon virtuoosimaiset näyttelijäntaidot pääsevät oikeuksiinsa.</p><p>Näytelmä nauraa kaikille ja kaikelle, ja onkii samalla salakavalasti esille vakavia kysymyksiä maailmojen ja ihmisen syvyyksistä. Jos nämä kysymykset haluaa kohdata, on oltava valmis sietämään muutaman Richterin vavahtelua.</p><p>Starman sai ensi-iltansa Alli Tryggin puistossa 16. elokuuta Helsingin Juhlaviikoilla.</p><p><b>TYÖRYHMÄ</b><br>Rooleissa: Martti Suosalo<br>Ohjaus: Raila Leppäkoski<br>Teksti: Juha Kauppinen<br>Valosuunnittelu: Max Wikström<br>Musiikki ja äänisuunnittelu: Jussi Kärkkäinen<br>Puvustuksen suunnittelu ja toteutus: Kirsi Hyvärinen<br>Lavastus ja rekvisiitta: työryhmä<br>Graafinen suunnittelu: Hermanni Suppanen, Kirsi Hyvärinen<br>Tuotanto: Teatteri Sirkus Suosalo</p><p>Kesto: 2 tuntia (sis. väliaika)<br>Ikäsuositus: Sallittu kaikenikäisille</p>",
                "sv": "<p>En ny inhemsk monologföreställning med Martti Suosalo som stjärna!</p><p>Starman är en mänsklig monologföreställning av författaren <b>Juha Kauppinen</b> om förhållandet mellan naturen och människan samt om omänskliga krafter som obönhörligt håller på att förstöra naturen:</p><p>Starman <b>(Martti Suosalo)</b> kommer från rymden och tränger sig oinbjuden in i ett finländskt cirkustält för att leva bus mitt under en monologföreställning. Med hjälp av en frogstimulant börjar han ändra föreställningens gång, ändra människor och påverka hur människan agerar på jordklotet.</p><p>Den mångfasetterade föreställningen hämtar även en serie andra fantasifulla figurer till scenen: vissa speciella, andra helt vardagliga, ibland båda på samma gång. Figurerna önskar detsamma som alla andra: välbefinnande för sina nära och kära, att rädda naturen och en bättre framtid för jordklotet. Men hur ska det gå till? Kanske kraftfulla brandtal och ett torgmöte är en bra början?</p><p>Starman beskriver sorgliga tider och hopplösa stunder, men ändå <br>väller skrattet fram. Föreställningen visar att när vi pratar om naturens förtvinande och människornas delaktighet i det, är skuldbeläggande predikan inte den enda tillåtna stilarten. I regi av <b>Raila Leppäkoski</b> blir det dystra aktuella ämnet till en sprudlande karneval, där skådespelaren Suosalos virtuosa skådespelartalanger kommer till sin rätt.</p><p>Pjäsen skrattar åt alla och allt, och metar samtidigt listigt fram allvarliga frågor ur världarnas och människornas djup. Om man vill möta dessa frågor, bör man vara beredd att tåla ett skalv på några Richter.</p><p>Starman fick sin premiär i Alli Tryggs park 16 augusti under Helsingfors festpel.</p><p><b>ARBETSGRUPP</b><br>I rollerna: Martti Suosalo<br>Regi: Raila Leppäkoski<br>Text: Juha Kauppinen<br>Ljusdesign: Max Wikström<br>Musik och ljuddesign: Jussi Kärkkäinen<br>Design och genomförande av kostymer: Kirsi Hyvärinen<br>Scenografi och rekvisita: arbetsgrupp<br>Grafisk design: Hermanni Suppanen, Kirsi Hyvärinen<br>Produktion: Teatteri Sirkus Suosalo</p><p>Längd: 2 h (inklusive paus)<br>Åldersrekommendation: Tillåten för alla åldrar</p>",
                "en": "<p>A new domestic monologue play starring Martti Suosalo!</p><p>Starman is a monologue play written by author <b>Juha Kauppinen</b> that explores human themes about the relationship between humanity and nature and the inhuman forces that are inevitably destroying nature:</p><p>Starman <b>(Martti Suosalo)</b> arrives from outer space and, without asking for permission, intrudes into a Finnish circus tent in the middle of a monologue show. With the power of Frogstimulant, he begins to change the course of the show, change human beings and influence how humans behave on Earth.</p><p>The multi-faceted play brings a series of other imaginary characters to the stage: some extraordinary, some completely ordinary, and some perhaps both at the same time. The characters want what everyone else wants: the well-being of their loved ones, to save nature and a better future for the planet. But how does this happen? Perhaps fiery speeches and market-square meetings are a good start?</p><p>Starman depicts sad times and moments of despair, yet from somewhere, laughter emerges. The performance shows that when we talk about the decline of the natural world and human involvement in this process, the only acceptable medium is not a guilt-inducing sermon. Under the direction of <b>Raila Leppäkoski</b>, this dark and timely subject is transformed into a hilarious carnival, where Suosalo’s virtuosic acting skills come into their own.</p><p>The play laughs at everyone and everything while insidiously raising serious questions about the depths of worlds and humanity. If you want to face these questions, you have to be prepared to put up with being shaken up a couple of magnitudes on the Richter scale.</p><p>Starman premiered in Alli Trygg Park on 16 August at the Helsinki Festival.</p><p>WORKING GROUP<br>Cast: Martti Suosalo<br>Director: Raila Leppäkoski<br>Text: Juha Kauppinen<br>Lighting design: Max Wikström<br>Video and audio design: Jussi Kärkkäinen<br>Costume design and production: Kirsi Hyvärinen<br>Set design and props: working group<br>Graphic design: Hermanni Suppanen, Kirsi Hyvärinen<br>Production: Teatteri Sirkus Suosalo</p><p>Duration: 2 h (incl. intermission)<br>Age recommendation: Suitable for all ages</p>"
            },
            "short_description": {
                "fi": "Uusi kotimainen monologinäytelmä, jonka tähtenä Martti Suosalo!",
                "sv": "En ny inhemsk monologföreställning med Martti Suosalo som stjärna!",
                "en": "A new domestic monologue play starring Martti Suosalo!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/66CEB839A8B05C620FD765416E7EC496/LOPPUUNMYYTY_Starman",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/66CEB839A8B05C620FD765416E7EC496/SLUTSALD_Starman",
                "en": "http://www.kanneltalo.fi/en/events/event/66CEB839A8B05C620FD765416E7EC496/SOLD_OUT_Starman"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64973/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64972",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kanneltalo-starman-kanneltalo-19528454/",
                        "sv": "https://www.lippu.fi/event/kanneltalo-starman-kanneltalo-19528454/",
                        "en": "https://www.lippu.fi/event/kanneltalo-starman-kanneltalo-19528454/"
                    },
                    "description": null,
                    "price": {
                        "fi": "25 € / 20 €",
                        "sv": "25 € / 20 €",
                        "en": "25 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153395,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T09:14:31.173604Z",
                    "last_modified_time": "2024-12-12T09:14:31.173621Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763181.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153395/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T09:14:31.147033Z",
            "last_modified_time": "2025-02-26T08:14:27.792397Z",
            "date_published": null,
            "start_time": "2025-04-10T11: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,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Starman",
                "sv": "SLUTSÅLD Starman",
                "en": "SOLD OUT Starman"
            },
            "provider": null,
            "description": {
                "fi": "<p>Uusi kotimainen monologinäytelmä, jonka tähtenä Martti Suosalo!</p><p>Starman on kirjailija <b>Juha Kauppisen</b> kirjoittama inhimillinen monologinäytelmä luonnon ja ihmisen suhteesta sekä epäinhimillisistä voimista, jotka ovat vääjäämättä tuhoamassa luontoa.<br> <br>Avaruudesta saapuva Starman <b>(Martti Suosalo)</b> tunkeutuu lupaa kysymättä suomalaiseen sirkustelttaan mellastamaan kesken monologiesityksen. Frogstimulantin voimalla hän alkaa muuttamaan esityksen kulkua, muuttamaan ihmistä ja vaikuttamaan siihen, kuinka ihminen toimii maapallolla.</p><p>Monikasvoinen näytelmä tuo lavalle sarjan muitakin mielikuvituksellisia hahmoja: jotkin erikoisia, toiset täysin arkipäiväisiä, jotkut ehkä molempia samaan aikaan. Hahmot haluavat sitä mitä kaikki muutkin: läheistensä hyvinvointia, luonnon pelastumista ja parempaa tulevaisuutta maapallolle. Mutta kuinka se tapahtuu? Ehkä pontevat palopuheet ja torikokous ovat hyvä alku?</p><p>Starman kuvaa surullisia aikoja ja epätoivoisia hetkiä, mutta kuitenkin jostain kohoaa esille naurua. Esitys osoittaa, että kun puhumme luonnon kuihtumisesta ja ihmisen osallisuudesta siihen, ainoa sallittu tyylilaji ei olekaan syyllistävä saarna.</p><p><b>Raila Leppäkosken</b> ohjauksessa synkeän ajankohtainen aihe taipuu hillittömäksi karnevaaliksi, jossa näyttelijä Suosalon virtuoosimaiset näyttelijäntaidot pääsevät oikeuksiinsa.</p><p>Näytelmä nauraa kaikille ja kaikelle, ja onkii samalla salakavalasti esille vakavia kysymyksiä maailmojen ja ihmisen syvyyksistä. Jos nämä kysymykset haluaa kohdata, on oltava valmis sietämään muutaman Richterin vavahtelua.</p><p>Starman sai ensi-iltansa Alli Tryggin puistossa 16. elokuuta Helsingin Juhlaviikoilla.</p><p><b>TYÖRYHMÄ</b><br>Rooleissa: Martti Suosalo<br>Ohjaus: Raila Leppäkoski<br>Teksti: Juha Kauppinen<br>Valosuunnittelu: Max Wikström<br>Musiikki ja äänisuunnittelu: Jussi Kärkkäinen<br>Puvustuksen suunnittelu ja toteutus: Kirsi Hyvärinen<br>Lavastus ja rekvisiitta: työryhmä<br>Graafinen suunnittelu: Hermanni Suppanen, Kirsi Hyvärinen<br>Tuotanto: Teatteri Sirkus Suosalo</p><p>Kesto: 2 tuntia (sis. väliaika)<br>Ikäsuositus: Sallittu kaikenikäisille</p>",
                "sv": "<p>En ny inhemsk monologföreställning med Martti Suosalo som stjärna!</p><p>Starman är en mänsklig monologföreställning av författaren <b>Juha Kauppinen</b> om förhållandet mellan naturen och människan samt om omänskliga krafter som obönhörligt håller på att förstöra naturen:</p><p>Starman <b>(Martti Suosalo)</b> kommer från rymden och tränger sig oinbjuden in i ett finländskt cirkustält för att leva bus mitt under en monologföreställning. Med hjälp av en frogstimulant börjar han ändra föreställningens gång, ändra människor och påverka hur människan agerar på jordklotet.</p><p>Den mångfasetterade föreställningen hämtar även en serie andra fantasifulla figurer till scenen: vissa speciella, andra helt vardagliga, ibland båda på samma gång. Figurerna önskar detsamma som alla andra: välbefinnande för sina nära och kära, att rädda naturen och en bättre framtid för jordklotet. Men hur ska det gå till? Kanske kraftfulla brandtal och ett torgmöte är en bra början?</p><p>Starman beskriver sorgliga tider och hopplösa stunder, men ändå <br>väller skrattet fram. Föreställningen visar att när vi pratar om naturens förtvinande och människornas delaktighet i det, är skuldbeläggande predikan inte den enda tillåtna stilarten. I regi av <b>Raila Leppäkoski</b> blir det dystra aktuella ämnet till en sprudlande karneval, där skådespelaren Suosalos virtuosa skådespelartalanger kommer till sin rätt.</p><p>Pjäsen skrattar åt alla och allt, och metar samtidigt listigt fram allvarliga frågor ur världarnas och människornas djup. Om man vill möta dessa frågor, bör man vara beredd att tåla ett skalv på några Richter.</p><p>Starman fick sin premiär i Alli Tryggs park 16 augusti under Helsingfors festpel.</p><p><b>ARBETSGRUPP</b><br>I rollerna: Martti Suosalo<br>Regi: Raila Leppäkoski<br>Text: Juha Kauppinen<br>Ljusdesign: Max Wikström<br>Musik och ljuddesign: Jussi Kärkkäinen<br>Design och genomförande av kostymer: Kirsi Hyvärinen<br>Scenografi och rekvisita: arbetsgrupp<br>Grafisk design: Hermanni Suppanen, Kirsi Hyvärinen<br>Produktion: Teatteri Sirkus Suosalo</p><p>Längd: 2 h (inklusive paus)<br>Åldersrekommendation: Tillåten för alla åldrar</p>",
                "en": "<p>A new domestic monologue play starring Martti Suosalo!</p><p>Starman is a monologue play written by author <b>Juha Kauppinen</b> that explores human themes about the relationship between humanity and nature and the inhuman forces that are inevitably destroying nature:</p><p>Starman <b>(Martti Suosalo)</b> arrives from outer space and, without asking for permission, intrudes into a Finnish circus tent in the middle of a monologue show. With the power of Frogstimulant, he begins to change the course of the show, change human beings and influence how humans behave on Earth.</p><p>The multi-faceted play brings a series of other imaginary characters to the stage: some extraordinary, some completely ordinary, and some perhaps both at the same time. The characters want what everyone else wants: the well-being of their loved ones, to save nature and a better future for the planet. But how does this happen? Perhaps fiery speeches and market-square meetings are a good start?</p><p>Starman depicts sad times and moments of despair, yet from somewhere, laughter emerges. The performance shows that when we talk about the decline of the natural world and human involvement in this process, the only acceptable medium is not a guilt-inducing sermon. Under the direction of <b>Raila Leppäkoski</b>, this dark and timely subject is transformed into a hilarious carnival, where Suosalo’s virtuosic acting skills come into their own.</p><p>The play laughs at everyone and everything while insidiously raising serious questions about the depths of worlds and humanity. If you want to face these questions, you have to be prepared to put up with being shaken up a couple of magnitudes on the Richter scale.</p><p>Starman premiered in Alli Trygg Park on 16 August at the Helsinki Festival.</p><p>WORKING GROUP<br>Cast: Martti Suosalo<br>Director: Raila Leppäkoski<br>Text: Juha Kauppinen<br>Lighting design: Max Wikström<br>Video and audio design: Jussi Kärkkäinen<br>Costume design and production: Kirsi Hyvärinen<br>Set design and props: working group<br>Graphic design: Hermanni Suppanen, Kirsi Hyvärinen<br>Production: Teatteri Sirkus Suosalo</p><p>Duration: 2 h (incl. intermission)<br>Age recommendation: Suitable for all ages</p>"
            },
            "short_description": {
                "fi": "Uusi kotimainen monologinäytelmä, jonka tähtenä Martti Suosalo!",
                "sv": "En ny inhemsk monologföreställning med Martti Suosalo som stjärna!",
                "en": "A new domestic monologue play starring Martti Suosalo!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/339A8D7076E2CE12CBB03354ED0D0D00/LOPPUUNMYYTY_Starman",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/339A8D7076E2CE12CBB03354ED0D0D00/SLUTSALD_Starman",
                "en": "http://www.kanneltalo.fi/en/events/event/339A8D7076E2CE12CBB03354ED0D0D00/SOLD_OUT_Starman"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64972/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}