Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&keyword=yso%3Ap4354&page=200
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 7045,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=201",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=199"
    },
    "data": [
        {
            "id": "kulke:64161",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151612,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-02T13:13:11.885666Z",
                    "last_modified_time": "2024-07-02T13:13:11.885677Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751208.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151612/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-02T13:13:11.876287Z",
            "last_modified_time": "2024-07-02T13:13:11.928142Z",
            "date_published": null,
            "start_time": "2024-09-18T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/59EF70A91071E5CD871120D1E60BE070/Jussi_Ollilan_metsasatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/59EF70A91071E5CD871120D1E60BE070/Skogssagostunder_med_Jussi_Ollila",
                "en": "http://www.vuotalo.fi/en/events/event/59EF70A91071E5CD871120D1E60BE070/Jussi_Ollila_s_forest_fairy_tales"
            },
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>",
                "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille",
                "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer",
                "en": "Jussi Ollila's forest fairy tales – For day-care groups and families"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64161/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64160",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151611,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-02T13:13:11.808746Z",
                    "last_modified_time": "2024-07-02T13:13:11.808758Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751207.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151611/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-02T13:13:11.799165Z",
            "last_modified_time": "2024-07-02T13:13:11.847368Z",
            "date_published": null,
            "start_time": "2024-09-18T06:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E079BD77FC734C3E73574D745BDAC6AA/Jussi_Ollilan_metsasatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E079BD77FC734C3E73574D745BDAC6AA/Skogssagostunder_med_Jussi_Ollila",
                "en": "http://www.vuotalo.fi/en/events/event/E079BD77FC734C3E73574D745BDAC6AA/Jussi_Ollila_s_forest_fairy_tales"
            },
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>",
                "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille",
                "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer",
                "en": "Jussi Ollila's forest fairy tales – For day-care groups and families"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64160/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64159",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151608,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-02T13:13:10.725746Z",
                    "last_modified_time": "2024-07-02T13:13:10.725760Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751205.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151608/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-02T13:13:10.711695Z",
            "last_modified_time": "2024-07-02T13:13:10.778192Z",
            "date_published": null,
            "start_time": "2024-09-04T07:30:00Z",
            "end_time": "2024-09-04T08:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Jussi_Ollilan_metsasatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Skogssagostunder_med_Jussi_Ollila",
                "en": "http://www.vuotalo.fi/en/events/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Jussi_Ollila_s_forest_fairy_tales"
            },
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>",
                "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille",
                "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer",
                "en": "Jussi Ollila's forest fairy tales – For day-care groups and families"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64159/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64158",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151607,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-02T13:13:10.609988Z",
                    "last_modified_time": "2024-07-02T13:13:10.610002Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751204.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151607/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-02T13:13:10.596120Z",
            "last_modified_time": "2024-07-02T13:13:10.676004Z",
            "date_published": null,
            "start_time": "2024-09-04T06:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5C64E131AED705E49E55E9A91BD10F54/Jussi_Ollilan_metsasatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5C64E131AED705E49E55E9A91BD10F54/Skogssagostunder_med_Jussi_Ollila",
                "en": "http://www.vuotalo.fi/en/events/event/5C64E131AED705E49E55E9A91BD10F54/Jussi_Ollila_s_forest_fairy_tales"
            },
            "provider": null,
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>",
                "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>"
            },
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille",
                "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer",
                "en": "Jussi Ollila's forest fairy tales – For day-care groups and families"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64158/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64067",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151590,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-01T12:13:00.959945Z",
                    "last_modified_time": "2024-07-01T12:13:00.959959Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755464.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151590/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-01T12:13:00.948251Z",
            "last_modified_time": "2024-07-01T12:13:01.002995Z",
            "date_published": null,
            "start_time": "2024-09-06T10:00:00Z",
            "end_time": "2024-09-06T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/19DA44610D740B773FB9869F1A81E663/Metsaan_laskeutumiset_koululaisille"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta.</p><p>Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 21.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu<br>Paikka: Karhukallion metsä Roihupellossa<br>Ikäsuositus: 4–8-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy.</p><p>Pakolliset ennakkoilmoittautumiset: kultus.fi, 12.8. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>"
            },
            "short_description": {
                "fi": "Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Metsään laskeutumiset koululaisille – Esityksellinen rentoutumishetki koululaisille Karhukallion metsässä"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64066",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151589,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-01T12:13:00.867706Z",
                    "last_modified_time": "2024-07-01T12:13:00.867722Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755440.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151589/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-01T12:13:00.855846Z",
            "last_modified_time": "2024-07-01T12:13:00.911020Z",
            "date_published": null,
            "start_time": "2024-09-06T09:00:00Z",
            "end_time": "2024-09-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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D82B1173A11A475B8C153A8371C91843/Metsaan_laskeutumiset_paivakotiryhmille"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta.</p><p>Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 21.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu<br>Paikka: Karhukallion metsä Roihupellossa<br>Ikäsuositus: 4–8-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy.</p><p>Pakolliset ennakkoilmoittautumiset: kultus.fi, 12.8. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>"
            },
            "short_description": {
                "fi": "Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Metsään laskeutumiset päiväkotiryhmille – Esityksellinen rentoutumishetki päiväkotiryhmille Karhukallion metsässä"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64066/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64086",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151585,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-01T12:12:58.785628Z",
                    "last_modified_time": "2024-07-01T12:12:58.785645Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755637.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151585/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-01T12:12:58.747999Z",
            "last_modified_time": "2024-07-01T12:12:58.853082Z",
            "date_published": null,
            "start_time": "2024-08-28T06:15:00Z",
            "end_time": "2024-09-25T07:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9171ECFC9B036864145AD9C3D2253DD5/Luonnos_-taide-_ja_luontokurssi"
            },
            "provider": null,
            "description": {
                "fi": "<p>Luonnos! -kursseilla mennään metsään, herkistetään aisteja ja tutkitaan luontoa taiteen avulla ja ympäristökasvatuksellisin menetelmin.</p><p>Lähimetsä toimii kurssilla oppimisympäristönä ja taiteellisen tekemisen lähtökohtana. Tavoitteena on vahvistaa koululaisten luontoyhteyttä ja ympäristökansalaisuutta sekä tarjota opettajille työkaluja ympäristöön liittyvien aiheiden käsittelyyn.</p><p>Viiden kerran kurssikokonaisuus tapahtuu pääosin ulkoluokassa. Kurssin aikana tutkitaan monimuotoista luontoa ja omaa suhdettamme siihen, tehdään yksi pidempi luontoretki ja lopuksi järjestetään metsäiset näyttelyn avajaiset. Siispä luupit ja taidetarvikkeet mukaan, ja mars syksyiseen metsään!</p><p>Kurssien teemat ja vierailukohteet vaihtelevat kausittain.</p><p>Opetuspaikkoina ovat Matokallion metsä, Stoa ja Mustavuorien metsä.</p><p>Kurssikerrat:<br>ke 28.8. klo 9.30–11<br>ke 4.9. klo 9.30–11<br>ke 11.9. klo 9.30–11<br>ke 18.9. klo 9.30–11<br>ke 25.9. klo 9.30–11</p><p>Taideopettajat: kuvataiteilijat Greta Salonen ja Juho Hellsten<br>Luonto-opettajat: yhteistyössä Vantaan luontokoulu</p><p>Ikäsuositus: 3.–4.-luokkalaiset<br>Kesto: 5x90 min<br>Kieli: suomi</p><p>Vapaa pääsy</p><p>Ilmoittautuminen ja lisätiedot: hanna.westerholm@hel.fi</p>"
            },
            "short_description": {
                "fi": "Luonnos! -kursseilla mennään metsään, herkistetään aisteja ja tutkitaan luontoa taiteen avulla ja ympäristökasvatuksellisin menetelmin."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Luonnos! -taide- ja luontokurssi – 3.–4.-luokkalaisille ja valmistaville alakoululuokille"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64086/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agiawvgywi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgyy4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-12T06:57:14.614674Z",
            "last_modified_time": "2024-06-20T11:26:21.353381Z",
            "date_published": null,
            "start_time": "2024-07-01T10:00:00Z",
            "end_time": "2024-07-01T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Millaisista kuvakirjoista sinä pidät? Mikä kuvakirjoissa on parasta? Tule keskustelemaan kuvakirjoista ja niiden tarinoista Making Worlds-työpajaan. Making Worlds on kolmesta kerrasta koostuva työpajasarja (1.7., 8.7., 15.7. klo 13-14.30), jossa tutkitaan yhdessä lasten kanssa kuvakirjojen kirjoittamista ja kuvittamista.<br><br><br>Työpaja on suunnattu 7-vuotiaille ja sitä vanhemmille lapsille. Paja on tarkoitettu kaikille kirjoittamisen ja kuvituksen tutkimisesta kiinnostuneille riippumatta siitä, onko heillä aiempaa kokemusta tarinoiden laatimisesta tai kuvataiteen tekemisestä.<br><br><br>Kullakin kerralla keskitytään tiettyyn aiheeseen, kuten esimerkiksi keskustellaan kuvakirjoista: sanoista/kuvista ja siitä, miltä ne saavat meidät tuntemaan, tutkitaan runoutta ja kokeellisen kirjoittamisen tekniikoita omien tarinoiden luomiseksi ja tehdään piirustusharjoituksia kuvituksen luomiseksi. Lapset voivat osallistua työpajaan yksin tai aikuisen kanssa.&nbsp;<br><br><br>Ensimmäisen työpajan aikana osallistujat pääsevät tutustumaan erilaisiin kuvakirjoihin. Työpajaan voi tuoda myös oman kirjansa kotoa.<br><br><br>Työpaja on englanniksi.&nbsp;<br><br><br>Kuva: Dahlia El Broul&nbsp;<br></p>",
                "sv": "<p>Vilken typ av bilderböcker tycker du om? Vad är det bästa med bilderböcker? Kom och diskutera bilderböcker och deras berättelser på workshopen Making Worlds. Making Worlds är en serie om tre workshops (1 juli, 8 juli, 15 juli, kl. 13-14.30) som utforskar hur man skriver och illustrerar bilderböcker med barn.<br><br><br>Workshopen vänder sig till barn från 7 år och uppåt. Workshopen är öppen för alla som är intresserade av att utforska skrivande och illustration, oavsett om de har tidigare erfarenhet av att skriva berättelser eller skapa visuell konst.&nbsp;<br><br><br>Varje session kommer att fokusera på ett specifikt ämne, till exempel att diskutera bilderböcker: ord/bilder och hur de får oss att känna, utforska poesi och experimentella skrivtekniker för att skapa egna berättelser och teckningsövningar för att skapa illustrationer. Barnen kan delta i workshopen ensamma eller tillsammans med en vuxen.&nbsp;<br><br><br>Under den första workshopen får deltagarna bekanta sig med en rad olika bilderböcker. De kan också ta med sig en egen bok hemifrån.<br><br><br>Workshopen kommer att vara på engelska.&nbsp;<br><br><br>Foto: Dahlia El Broul<br></p>",
                "en": "<p>What picture books do you like? What is it you want to get from a picture book, and what kinds of art and stories do you relate to? Do you see your own experiences reflected in these same books? Making Worlds is a workshop series consisting of 3 sessions (on 1.7., 8.7., 15.7. at 13-14.30) that explore the art of writing and illustrating children's picturebooks through personal experiences.&nbsp;&nbsp;<br><br><br>This workshop is open to children 7 years old and up. It is for anyone interested in exploring experimental writing and illustration, regardless of their prior experience in crafting stories or creating visual art. Each session will centre around a specific topic, such as discussing picturebooks: words/images and how they make us feel, exploring poetry and experimental writing techniques to identify missing elements and create our own stories, utilising found and archival material and drawing exercises to create illustrations. Children are encouraged to visit the workshop by themselves or with an adult.<br>&nbsp;<br>During the first workshop, participants will have access to a variety of books to examine (in the library and ones that I will supply), and they are also welcome to bring books in any language from home.&nbsp;<br><br><br>Picture by: Dahlia El Broul&nbsp;<br></p>"
            },
            "short_description": {
                "fi": "Millaisista kuvakirjoista sinä pidät? Mikä kuvakirjoissa on parasta? Tule keskustelemaan kuvakirjoista ja niiden tarinoista Making Worlds-työpajaan. ",
                "sv": "Vilken typ av bilderböcker tycker du om? Vad är det bästa med bilderböcker? Kom och diskutera bilderböcker och deras berättelser på workshopen Making Worlds. ",
                "en": "Making Worlds is a workshop series that explore the art of writing and illustrating children's picturebooks through personal experiences.  "
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Makerspace room Paja"
            },
            "name": {
                "fi": "Making Worlds- englanninkielinen kirjoitus- ja kuvitustyöpaja lapsille",
                "sv": "Making Worlds - engelsk skriv- och illustrationsverkstad för barn",
                "en": "Making Worlds - writing and illustration workshop for kids"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgywi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agiawvgyue",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgyy4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-12T06:57:14.479569Z",
            "last_modified_time": "2024-06-20T11:26:21.153057Z",
            "date_published": null,
            "start_time": "2024-07-15T10:00:00Z",
            "end_time": "2024-07-15T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Millaisista kuvakirjoista sinä pidät? Mikä kuvakirjoissa on parasta? Tule keskustelemaan kuvakirjoista ja niiden tarinoista Making Worlds-työpajaan. Making Worlds on kolmesta kerrasta koostuva työpajasarja (1.7., 8.7., 15.7. klo 13-14.30), jossa tutkitaan yhdessä lasten kanssa kuvakirjojen kirjoittamista ja kuvittamista.<br><br><br>Työpaja on suunnattu 7-vuotiaille ja sitä vanhemmille lapsille. Paja on tarkoitettu kaikille kirjoittamisen ja kuvituksen tutkimisesta kiinnostuneille riippumatta siitä, onko heillä aiempaa kokemusta tarinoiden laatimisesta tai kuvataiteen tekemisestä.<br><br><br>Kullakin kerralla keskitytään tiettyyn aiheeseen, kuten esimerkiksi keskustellaan kuvakirjoista: sanoista/kuvista ja siitä, miltä ne saavat meidät tuntemaan, tutkitaan runoutta ja kokeellisen kirjoittamisen tekniikoita omien tarinoiden luomiseksi ja tehdään piirustusharjoituksia kuvituksen luomiseksi. Lapset voivat osallistua työpajaan yksin tai aikuisen kanssa.&nbsp;<br><br><br>Ensimmäisen työpajan aikana osallistujat pääsevät tutustumaan erilaisiin kuvakirjoihin. Työpajaan voi tuoda myös oman kirjansa kotoa.<br><br><br>Työpaja on englanniksi.&nbsp;<br><br><br>Kuva: Dahlia El Broul&nbsp;<br></p>",
                "sv": "<p>Vilken typ av bilderböcker tycker du om? Vad är det bästa med bilderböcker? Kom och diskutera bilderböcker och deras berättelser på workshopen Making Worlds. Making Worlds är en serie om tre workshops (1 juli, 8 juli, 15 juli, kl. 13-14.30) som utforskar hur man skriver och illustrerar bilderböcker med barn.<br><br><br>Workshopen vänder sig till barn från 7 år och uppåt. Workshopen är öppen för alla som är intresserade av att utforska skrivande och illustration, oavsett om de har tidigare erfarenhet av att skriva berättelser eller skapa visuell konst.&nbsp;<br><br><br>Varje session kommer att fokusera på ett specifikt ämne, till exempel att diskutera bilderböcker: ord/bilder och hur de får oss att känna, utforska poesi och experimentella skrivtekniker för att skapa egna berättelser och teckningsövningar för att skapa illustrationer. Barnen kan delta i workshopen ensamma eller tillsammans med en vuxen.&nbsp;<br><br><br>Under den första workshopen får deltagarna bekanta sig med en rad olika bilderböcker. De kan också ta med sig en egen bok hemifrån.<br><br><br>Workshopen kommer att vara på engelska.&nbsp;<br><br><br>Foto: Dahlia El Broul<br></p>",
                "en": "<p>What picture books do you like? What is it you want to get from a picture book, and what kinds of art and stories do you relate to? Do you see your own experiences reflected in these same books? Making Worlds is a workshop series consisting of 3 sessions (on 1.7., 8.7., 15.7. at 13-14.30) that explore the art of writing and illustrating children's picturebooks through personal experiences.&nbsp;&nbsp;<br><br><br>This workshop is open to children 7 years old and up. It is for anyone interested in exploring experimental writing and illustration, regardless of their prior experience in crafting stories or creating visual art. Each session will centre around a specific topic, such as discussing picturebooks: words/images and how they make us feel, exploring poetry and experimental writing techniques to identify missing elements and create our own stories, utilising found and archival material and drawing exercises to create illustrations. Children are encouraged to visit the workshop by themselves or with an adult.<br>&nbsp;<br>During the first workshop, participants will have access to a variety of books to examine (in the library and ones that I will supply), and they are also welcome to bring books in any language from home.&nbsp;<br><br><br>Picture by: Dahlia El Broul&nbsp;<br></p>"
            },
            "short_description": {
                "fi": "Millaisista kuvakirjoista sinä pidät? Mikä kuvakirjoissa on parasta? Tule keskustelemaan kuvakirjoista ja niiden tarinoista Making Worlds-työpajaan. ",
                "sv": "Vilken typ av bilderböcker tycker du om? Vad är det bästa med bilderböcker? Kom och diskutera bilderböcker och deras berättelser på workshopen Making Worlds. ",
                "en": "Making Worlds is a workshop series that explore the art of writing and illustrating children's picturebooks through personal experiences.  "
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Makerspace room Paja"
            },
            "name": {
                "fi": "Making Worlds- englanninkielinen kirjoitus- ja kuvitustyöpaja lapsille",
                "sv": "Making Worlds - engelsk skriv- och illustrationsverkstad för barn",
                "en": "Making Worlds - writing and illustration workshop for kids"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgyue/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agiawvgyq4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgyy4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-12T06:57:14.360222Z",
            "last_modified_time": "2024-06-20T11:26:20.893301Z",
            "date_published": null,
            "start_time": "2024-07-08T10:00:00Z",
            "end_time": "2024-07-08T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Millaisista kuvakirjoista sinä pidät? Mikä kuvakirjoissa on parasta? Tule keskustelemaan kuvakirjoista ja niiden tarinoista Making Worlds-työpajaan. Making Worlds on kolmesta kerrasta koostuva työpajasarja (1.7., 8.7., 15.7. klo 13-14.30), jossa tutkitaan yhdessä lasten kanssa kuvakirjojen kirjoittamista ja kuvittamista.<br><br><br>Työpaja on suunnattu 7-vuotiaille ja sitä vanhemmille lapsille. Paja on tarkoitettu kaikille kirjoittamisen ja kuvituksen tutkimisesta kiinnostuneille riippumatta siitä, onko heillä aiempaa kokemusta tarinoiden laatimisesta tai kuvataiteen tekemisestä.<br><br><br>Kullakin kerralla keskitytään tiettyyn aiheeseen, kuten esimerkiksi keskustellaan kuvakirjoista: sanoista/kuvista ja siitä, miltä ne saavat meidät tuntemaan, tutkitaan runoutta ja kokeellisen kirjoittamisen tekniikoita omien tarinoiden luomiseksi ja tehdään piirustusharjoituksia kuvituksen luomiseksi. Lapset voivat osallistua työpajaan yksin tai aikuisen kanssa.&nbsp;<br><br><br>Ensimmäisen työpajan aikana osallistujat pääsevät tutustumaan erilaisiin kuvakirjoihin. Työpajaan voi tuoda myös oman kirjansa kotoa.<br><br><br>Työpaja on englanniksi.&nbsp;<br><br><br>Kuva: Dahlia El Broul&nbsp;<br></p>",
                "sv": "<p>Vilken typ av bilderböcker tycker du om? Vad är det bästa med bilderböcker? Kom och diskutera bilderböcker och deras berättelser på workshopen Making Worlds. Making Worlds är en serie om tre workshops (1 juli, 8 juli, 15 juli, kl. 13-14.30) som utforskar hur man skriver och illustrerar bilderböcker med barn.<br><br><br>Workshopen vänder sig till barn från 7 år och uppåt. Workshopen är öppen för alla som är intresserade av att utforska skrivande och illustration, oavsett om de har tidigare erfarenhet av att skriva berättelser eller skapa visuell konst.&nbsp;<br><br><br>Varje session kommer att fokusera på ett specifikt ämne, till exempel att diskutera bilderböcker: ord/bilder och hur de får oss att känna, utforska poesi och experimentella skrivtekniker för att skapa egna berättelser och teckningsövningar för att skapa illustrationer. Barnen kan delta i workshopen ensamma eller tillsammans med en vuxen.&nbsp;<br><br><br>Under den första workshopen får deltagarna bekanta sig med en rad olika bilderböcker. De kan också ta med sig en egen bok hemifrån.<br><br><br>Workshopen kommer att vara på engelska.&nbsp;<br><br><br>Foto: Dahlia El Broul<br></p>",
                "en": "<p>What picture books do you like? What is it you want to get from a picture book, and what kinds of art and stories do you relate to? Do you see your own experiences reflected in these same books? Making Worlds is a workshop series consisting of 3 sessions (on 1.7., 8.7., 15.7. at 13-14.30) that explore the art of writing and illustrating children's picturebooks through personal experiences.&nbsp;&nbsp;<br><br><br>This workshop is open to children 7 years old and up. It is for anyone interested in exploring experimental writing and illustration, regardless of their prior experience in crafting stories or creating visual art. Each session will centre around a specific topic, such as discussing picturebooks: words/images and how they make us feel, exploring poetry and experimental writing techniques to identify missing elements and create our own stories, utilising found and archival material and drawing exercises to create illustrations. Children are encouraged to visit the workshop by themselves or with an adult.<br>&nbsp;<br>During the first workshop, participants will have access to a variety of books to examine (in the library and ones that I will supply), and they are also welcome to bring books in any language from home.&nbsp;<br><br><br>Picture by: Dahlia El Broul&nbsp;<br></p>"
            },
            "short_description": {
                "fi": "Millaisista kuvakirjoista sinä pidät? Mikä kuvakirjoissa on parasta? Tule keskustelemaan kuvakirjoista ja niiden tarinoista Making Worlds-työpajaan. ",
                "sv": "Vilken typ av bilderböcker tycker du om? Vad är det bästa med bilderböcker? Kom och diskutera bilderböcker och deras berättelser på workshopen Making Worlds. ",
                "en": "Making Worlds is a workshop series that explore the art of writing and illustrating children's picturebooks through personal experiences.  "
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Makerspace room Paja"
            },
            "name": {
                "fi": "Making Worlds- englanninkielinen kirjoitus- ja kuvitustyöpaja lapsille",
                "sv": "Making Worlds - engelsk skriv- och illustrationsverkstad för barn",
                "en": "Making Worlds - writing and illustration workshop for kids"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgyq4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agiawvgyy4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgyq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgyue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgywi/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-12T06:57:13.585237Z",
            "last_modified_time": "2024-06-20T11:26:19.785957Z",
            "date_published": null,
            "start_time": "2024-07-01T10:00:00Z",
            "end_time": "2024-07-15T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Millaisista kuvakirjoista sinä pidät? Mikä kuvakirjoissa on parasta? Tule keskustelemaan kuvakirjoista ja niiden tarinoista Making Worlds-työpajaan. Making Worlds on kolmesta kerrasta koostuva työpajasarja (1.7., 8.7., 15.7. klo 13-14.30), jossa tutkitaan yhdessä lasten kanssa kuvakirjojen kirjoittamista ja kuvittamista.<br><br><br>Työpaja on suunnattu 7-vuotiaille ja sitä vanhemmille lapsille. Paja on tarkoitettu kaikille kirjoittamisen ja kuvituksen tutkimisesta kiinnostuneille riippumatta siitä, onko heillä aiempaa kokemusta tarinoiden laatimisesta tai kuvataiteen tekemisestä.<br><br><br>Kullakin kerralla keskitytään tiettyyn aiheeseen, kuten esimerkiksi keskustellaan kuvakirjoista: sanoista/kuvista ja siitä, miltä ne saavat meidät tuntemaan, tutkitaan runoutta ja kokeellisen kirjoittamisen tekniikoita omien tarinoiden luomiseksi ja tehdään piirustusharjoituksia kuvituksen luomiseksi. Lapset voivat osallistua työpajaan yksin tai aikuisen kanssa.&nbsp;<br><br><br>Ensimmäisen työpajan aikana osallistujat pääsevät tutustumaan erilaisiin kuvakirjoihin. Työpajaan voi tuoda myös oman kirjansa kotoa.<br><br><br>Työpaja on englanniksi.&nbsp;<br><br><br>Kuva: Dahlia El Broul&nbsp;<br></p>",
                "sv": "<p>Vilken typ av bilderböcker tycker du om? Vad är det bästa med bilderböcker? Kom och diskutera bilderböcker och deras berättelser på workshopen Making Worlds. Making Worlds är en serie om tre workshops (1 juli, 8 juli, 15 juli, kl. 13-14.30) som utforskar hur man skriver och illustrerar bilderböcker med barn.<br><br><br>Workshopen vänder sig till barn från 7 år och uppåt. Workshopen är öppen för alla som är intresserade av att utforska skrivande och illustration, oavsett om de har tidigare erfarenhet av att skriva berättelser eller skapa visuell konst.&nbsp;<br><br><br>Varje session kommer att fokusera på ett specifikt ämne, till exempel att diskutera bilderböcker: ord/bilder och hur de får oss att känna, utforska poesi och experimentella skrivtekniker för att skapa egna berättelser och teckningsövningar för att skapa illustrationer. Barnen kan delta i workshopen ensamma eller tillsammans med en vuxen.&nbsp;<br><br><br>Under den första workshopen får deltagarna bekanta sig med en rad olika bilderböcker. De kan också ta med sig en egen bok hemifrån.<br><br><br>Workshopen kommer att vara på engelska.&nbsp;<br><br><br>Foto: Dahlia El Broul<br></p>",
                "en": "<p>What picture books do you like? What is it you want to get from a picture book, and what kinds of art and stories do you relate to? Do you see your own experiences reflected in these same books? Making Worlds is a workshop series consisting of 3 sessions (on 1.7., 8.7., 15.7. at 13-14.30) that explore the art of writing and illustrating children's picturebooks through personal experiences.&nbsp;&nbsp;<br><br><br>This workshop is open to children 7 years old and up. It is for anyone interested in exploring experimental writing and illustration, regardless of their prior experience in crafting stories or creating visual art. Each session will centre around a specific topic, such as discussing picturebooks: words/images and how they make us feel, exploring poetry and experimental writing techniques to identify missing elements and create our own stories, utilising found and archival material and drawing exercises to create illustrations. Children are encouraged to visit the workshop by themselves or with an adult.<br>&nbsp;<br>During the first workshop, participants will have access to a variety of books to examine (in the library and ones that I will supply), and they are also welcome to bring books in any language from home.&nbsp;<br><br><br>Picture by: Dahlia El Broul&nbsp;<br></p>"
            },
            "short_description": {
                "fi": "Millaisista kuvakirjoista sinä pidät? Mikä kuvakirjoissa on parasta? Tule keskustelemaan kuvakirjoista ja niiden tarinoista Making Worlds-työpajaan. ",
                "sv": "Vilken typ av bilderböcker tycker du om? Vad är det bästa med bilderböcker? Kom och diskutera bilderböcker och deras berättelser på workshopen Making Worlds. ",
                "en": "Making Worlds is a workshop series that explore the art of writing and illustrating children's picturebooks through personal experiences.  "
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Makerspace room Paja"
            },
            "name": {
                "fi": "Making Worlds- englanninkielinen kirjoitus- ja kuvitustyöpaja lapsille",
                "sv": "Making Worlds - engelsk skriv- och illustrationsverkstad för barn",
                "en": "Making Worlds - writing and illustration workshop for kids"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiawvgyy4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63476",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-74/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150832,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-25T13:14:34.787365Z",
                    "last_modified_time": "2024-04-25T13:14:34.787384Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744878.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150832/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-25T13:14:34.747453Z",
            "last_modified_time": "2024-06-19T12:13:26.301986Z",
            "date_published": null,
            "start_time": "2024-06-01",
            "end_time": "2024-08-24",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C030E0E33553D0D03FF27C36E9BBF64B/Malmin_tapahtumakesa_2024",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C030E0E33553D0D03FF27C36E9BBF64B/Malms_evenemangssommar_2024_",
                "en": "http://www.malmitalo.fi/en/events/event/C030E0E33553D0D03FF27C36E9BBF64B/Malmi_Summer_of_Events_2024"
            },
            "provider": null,
            "description": {
                "fi": "<p>Malmin oma kaupunkifestivaali täyttää Ala-Malmin puiston konserteilla, sirkuksella, työpajoilla, puistojumpalla, kaupunkitansseilla, kirpputoreilla ja piknikeillä!</p><p>Malmin tapahtumakesä tarjoaa helposti saavutettavaa, laadukasta ja monipuolista tapahtumaa ja tekemistä kesäkauden ajan. Vietä siis unohtumaton kesä Malmilla!</p><p>Tapahtumiin on vapaa pääsy.</p><p>Sateen sattuessa tapahtumat siirtyvät sisätiloihin Malmitaloon.</p><p><b>Malmin tapahtumakesän 2024 ohjelma</b></p><p><b>Elokuu 2024</b><br><b>To 15.8. Taiteiden yö: Grande Mahogany, MODEM ja Pikku Papun orkesteri</b><br>11–12.30 Rauhallinen muistelukävely Malmilla<br>15–18 Malmimarkkinat<br>15–18 Taito ry: Päristin non-stop -työpaja<br>16–20 Elävän mallin non-stop-työpaja<br>16–18.30 Taivuttele ja kieputtele rautalangasta<br>16.30–19 30 vuotta pimiötyötä Malmitalolla – Fotogrammityöpajat<br>16–19 Pienperheyhdistys: Pimeässä hohtavat kivet -työpaja<br>16–17 Pikku Papun Orkesteri<br>17.30–18.30 Kesän muistoja - Taiteiden yön yhteislaulut<br>18–19 MODEM<br>20–21 Grande Mahogany<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/26F618D65FBC444E06DBDB708491D79E/Taiteiden_y___Grande_Mahogany__MODEM___Pikku_Papun_Orkesteri\">Katso päivän ohjelma</a></u></p><p><b>Pe 16.8. Rosa Coste ja Pimeä Hedelmä</b><br>16–17 Kierrätysnahkainen korttikotelo ja kengät kuntoon -työpaja<br>17–18 <u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/E68F97AD5D9ABA8E8A5EF94A744D1A37/Rosa_Coste\">Rosa Coste</a></u><br>19–20 <u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/79E0771D970E6BF988A5AD44222EA412/Pime__Hedelm_\">Pimeä Hedelmä</a></u><br>12–14.30 Malmin vaiheita pyöräillen</p><p><b>La 17.8. Perhe-piknik: Päistikka</b><br>12–14.30 Malmin vaiheita pyöräillen<br>12–17 Pomppulinna<br>12–13.15 ja 13.45–15 Pukinmäen Taidekoulut: Sirkustyöpajat<br>12–15 Varustamo: Temppu-/liikuntarata ja kivimaalausta<br>12, 13, 14 ja 16 Murkens-satutyöpajat<br>13–15 Ala-Ollin Alpakkatilan alpakat ja kanit<br>13–13.30, 14.30–15 ja 16.30–17 Fillaripianisti<br>15–16 Päistikka<br>16–17 Helsingin Tanssiopiston perhetanssituokio<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/462A75911F5004328E7F9E0CCC78DCF8/Perhep_iv___P_istikka_ja_muuta_koko_perheen_ohjelmaa\">Katso päivän ohjelma</a></u></p><p><b>Ti 20.8. Rebekka Holi</b><br>13–14.30 Rauhallinen muistelukävely Malmilla<br>15–16 Kehonhuolto<br>18–19 <u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/7F7BB3EE04F138AC3449ED137B07C62B/Rebekka_Holi\">Rebekka Holi</a></u></p><p><b>Ke 21.8. Maria Ylipää ja Marzi Nyman</b><br>16–17 Yhteislaulut<br>17.30–18.15 Tsuumin kaupunkitanssit<br>19–20 <u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/DC6777CABCA03BC74FE79020F0DD7F2C/Maria_Ylip_____Marzi_Nyman\">Maria Ylipää & Marzi Nyman</a></u></p><p><b>To 22.8. Punk-päivä: Terveet Kädet</b><br>17–18 Puistojumppa<br>18–19.30 Malmikierrokset / Ala-Malmi<br>18–18.30 <u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/32F292DD0B56DFBF0DFE88153AFFE6B1/Kyhiskessu\">Kyhiskessu</a></u><br>19–20 <u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/88EA088339483A86EA0C8823D18BC89E/Terveet_K_det\">Terveet Kädet</a></u></p><p><b>Pe 23.8. Malmitalo 30 vuotta: Arppa & Good Boys</b><br>16–19 Malmi Vice -yhteisötaideteos ja työpaja<br>16–19 Katumaalaus-työpaja<br>17–18 Good Boys<br>19–20 Arppa<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/B449B536CCD1A17A0F548CC91BC87F5F/Malmitalo_30v__Arppa___good_boys\">Katso päivän ohjelma</a></u></p><p><b>La 24.8. Malmitalo 30 vuotta: Faso Kan, Honey B & T-Bones ja kaiken maailman kulttuuria</b><br>12–13.30 Kävelykierros / Ylä-Malmi<br>12–14.15 Kuviskoulun Kuviot ja kuosit! -työpaja<br>13–16 Kupla Kopla<br>14–15 Faso Kan<br>15–16 Faso Kan rumpu- & tanssityöpaja<br>16–16.30 Tanssiesitys Ay romale<br>17–18 Honey B & T-Bones<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/F3D55D7062E61237C85726AEC8B7BE6D/Malmitalo_30v__Faso_Kan__Honey_B___T-bones_ja_kaiken_maailman_kulttuuria\">Katso päivän ohjelma</a></u></p><p><b>Kesäkuu 6.6.–15.6.2024</b></p><p>Kiitokset kesäkuun tapahtumakesän osuudesta! Menneiden ja yksittäisten ohjelmien tiedot löydät <u><a href=\"https://malmitalo.fi/fi/tapahtumat/\">tapahtuma-osiosta</a></u>.</p>",
                "sv": "<p>Malms evenemangssommar fyller parken med konserter, cirkus, workshoppar, parkgymnastik, stadsdans, loppis och picknickar.</p><p>Malms evenemangssommar är en programhelhet som erbjuder lättillgängliga, högkvalitativa och mångsidiga evenemang och aktiviteter under hela sommarsäsongen för både områdets invånare och andra stadsbor och besökare.</p><p><b>Malms evenemangssommar 2024 program</b></p><p>To 15.8. Konstens natt: Grande Mahogany, MODEM och Pikku Papun Orkesteri<br>Fre 16.8. Rosa Coste & Pimeä Hedelmä<br>Lör 17.8. Familjedag: Päistikka<br>Ti 20.8. Rebekka Holi<br>Ons 21.8. Maria Ylipää & Marzi Nyman<br>To 22.8. Terveet Kädet<br>Fre 23.8. Malmitalo 30 år: Arppa & Good Boys<br>Lör 24.8. Malmitalo 30 år: Faso Kan, Honey B & T-bones och alla möjliga kulturer</p><p>To 6.6. Malmi Youth: TUPE.<br>Fre 7.6. Nostalgidag: Freeman & Hilpeät Hipit Hesoissa<br>Lör 8.6. Familjepicknick: Orffit<br>Ti 11.6. Jiri Nikkinen trio<br>Ons 12.6. Helsingforsdag: Stig, Mimmit och annat härligt sommarprogram<br>To 13.6. Titta ja Vera Wall<br>Fre 14.6. Stuart, Spence & Shebish (USA), Trio Tetris ja Pink Chameleons<br>Lör 15.6. Sepikka ja Pambikallio</p><p>Välkommen att bekanta dig, uppleva och bli inspirerad!</p><p>Inträdet till parkevenemangen är fritt!</p>",
                "en": "<p>Malmi Summer of Events fills the Ala-Malmi park with concerts, circus performances, workshops, outdoor fitness classes, urban dancing, flea markets, and picnics.</p><p>The Malmi Summer of Events is a program series that offers easily accessible, high-quality, and diverse events and activities for both local residents and other city dwellers and visitors throughout the summer season.</p><p><b>Malmi Summer of Events 2024 program</b></p><p><b>August 2024</b><br>Thu 15.8. Night of the Arts: Grande Mahogany, MODEM and Pikku Papun Orkesteri<br>Fri 16.8. Rosa Coste and Pimeä Hedelmä<br>Sat 17.8. Family Day: Päistikka<br>Tue 20.8. Rebekka Holi<br>Wed 21.8. Maria Ylipää & Marzi Nyman<br>Thu 22.8. Terveet Kädet<br>Fri 23.8. Malmitalo 30 Years: Arppa & Good Boys<br>Sat 24.8. Malmitalo 30 Years: Faso Kan, Honey B & T-bones and all kinds of cultures</p><p><b>June 2024</b><br>Thu 6.6. Malmi Youth: TUPE.<br>Fri 7.6. Nostalgia Day: Freeman & Hilpeät Hipit Hesoissa<br>Sat 8.6. Family Picnic: Orffit<br>Tue 11.6. Jiri Nikkinen trio<br>Wed 12.6. Helsinki Day: Stig, Mimmit and so much more<br>Thu 13.6. Titta and Vera Wall<br>Fri 14.6. Stuart, Spence & Shebish (USA), Trio Tetris and Pink Chameleons<br>Sat 15.6. Sepikka and Pambikallio</p><p>Welcome to explore, experience, and get inspired!</p><p>Free entry!</p>"
            },
            "short_description": {
                "fi": "Malmin oma kaupunkifestivaali täyttää Ala-Malmin puiston konserteilla, sirkuksella, työpajoilla, puistojumpalla, kaupunkitansseilla, kirpputoreilla ja piknikeillä!",
                "sv": "Malms evenemangssommar fyller parken med konserter, cirkus, workshoppar, parkgymnastik, stadsdans, loppis och picknickar.",
                "en": "Malmi Summer of Events fills the Ala-Malmi park with concerts, circus performances, workshops, outdoor fitness classes, urban dancing, flea markets, and picnics."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Malmin tapahtumakesä 2024",
                "sv": "Malms evenemangssommar 2024",
                "en": "Malmi Summer of Events 2024"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63476/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghzl4rbnm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-05-20T11:54:36.525968Z",
            "last_modified_time": "2024-06-19T05:14:21.088102Z",
            "date_published": "2024-05-20T11:36:00Z",
            "start_time": "2024-07-01T07:00:00Z",
            "end_time": "2024-08-02T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Elämysauto Välkky",
                "sv": "Allaktivitetsbuss Välkky",
                "en": "Activity Bus Välkky"
            },
            "description": {
                "fi": "<p>Elämysauto Välkky kiertää kesällä Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!<br>ma 1.7.<br>10-12 Perkkaan asukaspuisto<br>13-14:30 Leppävaaran Angry Birds-puisto<br><br><br>ke 3.7.<br>10-12 Hiirisuon asukaspuisto<br>13-15 Rinnekodintien asumisyksiköt<br><br><br>pe 5.7.<br>10-12 Suvelan asukaspuisto<br>13-15 Oittaan Angry Birds-puisto<br><br><br>ma 8.7.<br>10-12 Latokasken asukaspuisto<br>13-14:30 Kylätalo Palttinan aukio<br><br><br>ke 10.7.<br>12-14 Westendin uimaranta<br>15-17 Klobbenin uimaranta<br><br><br>pe 12.7.<br>10-12 Tapiolan asukaspuisto<br>13-15 Pattisten puisto<br><br><br>ma 15.7.<br>10-12 Perkkaan asukaspuisto<br>13-14:30 Leppävaaran Angry Birds-puisto<br><br><br>ke 17.7.<br>12-14 Westendin uimaranta<br>15-17 Klobbenin uimaranta<br><br><br>pe 19.7.<br>10-12 Suvelan asukaspuisto<br>13-15 Oittaan Angry Birds-puisto<br><br><br>ma 22.7.<br>10-12 Latokasken asukaspuisto<br>13-14:30 Kylätalo Palttinan aukio<br><br><br>ke 24.7.<br>12-14 Westendin uimaranta<br>15-17 Klobbenin uimaranta<br><br><br>pe 26.7.<br>10-12 Matinkylän asukaspuisto<br>13-15 Nokkalan majakka<br><br><br>ma 29.7.<br>10-12 Perkkaan asukaspuisto<br>13-14:30 Leppävaaran Angry Birds-puisto<br><br><br>ke 31.7.<br>10-12 Hiirisuon asukaspuisto<br>13-15 Rinnekodintien asumisyksiköt<br><br><br>pe 2.8.<br>10-12 Suvelan asukaspuisto<br>13-15 Oittaan Angry Birds-puisto<br><br><br>Jos bongaat välkyn, kerro siitä somessa #kesädösä !<br></p>",
                "sv": "<p>Esbobibliotekens allaktivitetsbuss Välkky turnerar i Esbo under sommaren. Med finns alltid böcker för alla åldrar och roliga aktiviteter för barnfamiljer!<br><br><br>mån 1.7.<br>kl 10-12 Bergans invånarpark<br>kl 13-14:30 Albergas Angry Birds -parken<br><br><br>ke 3.7.<br>kl 10-12 Mösskärrs invånarpark<br>kl 13-15 Rinnehemsvägen 10<br><br><br>pe 5.7.<br>kl 10-12 Södriks invånarpark<br>kl 13-15 Oittaas Angry Birds -parken<br><br><br>ma 8.7.<br>kl 10-12 Ladusveds invånarpark<br>kl 13-14:30 Byhuset Palttina<br><br><br>ke 10.7.<br>kl 12-14 Westends badstrand<br>kl 15-17 Klobbens badstrand<br><br><br>pe 12.7.<br>kl 10-12 Hagalunds invånarpark<br>kl 13-15 Battisåkern<br><br><br>ma 15.7.<br>kl 10-12 Bergans invånarpark<br>kl 13-14:30 Albergas Angry Birds -parken<br><br><br>ke 17.7.<br>kl 12-14 Westends badstrand<br>kl 15-17 Klobbens badstrand<br><br><br>pe 19.7.<br>kl 10-12 Södriks invånarpark<br>kl 13-15 Oittaas Angry Birds -parken<br><br><br>ma 22.7.<br>kl 10-12 Ladusveds invånarpark<br>kl 13-14:30 Byhuset Palttina<br><br><br>ke 24.7.<br>kl 12-14 Westends badstrand<br>kl 15-17 Klobbens badstrand<br><br><br>pe 26.7.<br>kl 10-12 Mattby invånarpark<br>kl 13-15 Nokkalan majakka<br><br><br>ma 29.7.<br>kl 10-12 Bergans invånarpark<br>kl 13-14:30 Albergas Angry Birds -parken<br><br><br>ke 31.7.<br>kl 10-12 Mösskärrs invånarpark<br>kl 13-15 Rinnehemsvägen 10<br><br><br>pe 2.8.<br>kl 10-12 Södriks invånarpark<br>kl 13-15 Oittaas Angry Birds -parken<br><br><br>Om du ser Välkky i sommar, ta en bild och tagga #kesädösä !<br></p>",
                "en": "<p>Espoo Libraries' activity bus Välkky is touring Espoo in the summer. There are always books for all ages and fun activites for families with children!&nbsp;<br><br><br>ma 1.7.<br>10-12 Perkkaa&nbsp;residents' park<br>13-14:30 Leppävaara Angry Birds park<br><br><br>ke 3.7.<br>10-12 Hiirisuo&nbsp;residents' park<br>13-15 Rinnekodintien asumisyksiköt<br><br><br>pe 5.7.<br>10-12 Suvela&nbsp;residents' park<br>13-15 Oittaa Angry Birds park<br><br><br>ma 8.7.<br>10-12 Latokasken asukaspuisto<br>13-14:30 Kylätalo Palttina&nbsp;residents' park<br><br><br>ke 10.7.<br>12-14 Westend beach<br>15-17 Klobben beach<br><br><br>pe 12.7.<br>10-12 Tapiola residents' park<br>13-15 Pattisten puisto<br><br><br>ma 15.7.<br>10-12 Perkkaa&nbsp;residents' park<br>13-14:30 Leppävaara Angry Birds park<br><br><br>ke 17.7.<br>12-14 Westend beach<br>15-17 Klobben beach<br><br><br>pe 19.7.<br>10-12 Suvela&nbsp;residents' park<br>13-15 Oittaa Angry Birds park<br><br><br>ma 22.7.<br>10-12 Latokaski residents' park<br>13-14:30 Kylätalo Palttina&nbsp;residents' park<br><br><br>ke 24.7.<br>12-14 Westend beach<br>15-17 Klobben beach<br><br><br>pe 26.7.<br>10-12 Matinkylä residents' park<br>13-15 Nokkalan majakka<br><br><br>ma 29.7.<br>10-12 Perkkaa&nbsp;residents' park<br>13-14:30 Leppävaara Angry Birds park<br><br><br>ke 31.7.<br>10-12 Hiirisuo&nbsp;residents' park<br>13-15 Rinnekodintie 10<br><br><br>pe 2.8.<br>10-12 Suvela&nbsp;residents' park<br>13-15 Oittaa Angry Birds park<br><br><br>If you see Välkky in the summer, take a picture and tag #kesädösä !<br></p>"
            },
            "short_description": {
                "fi": "Elämysauto Välkky kiertää kesällä Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens allaktivitetsbuss Välkky turnerar i Esbo under sommaren. Med finns alltid böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' activity bus Välkky is touring Espoo in the summer. There are always books for all ages and fun activites for families with children! "
            },
            "location_extra_info": {
                "fi": "Katso kuvauksesta tarkka aikataulu",
                "sv": "Se den detaljerade tidtabellen i beskrivningen",
                "en": "See the detailed schedule in the description"
            },
            "name": {
                "fi": "Kesädösä Välkky",
                "sv": "Kesädösä Välkky",
                "en": "Kesädösä Välkky"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzl4rbnm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agibbmw55a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T07:20:23.785879Z",
            "last_modified_time": "2024-06-13T07:20:23.785914Z",
            "date_published": "2024-06-13T07:30:13.536000Z",
            "start_time": "2024-06-17T10:00:00Z",
            "end_time": "2024-06-17T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Työpajalla tutustutaan stop-motion animaation alkeisiin: nuken liikuttamiseen, kameran asetteluun ja tarinankaaren pohdintaan.<br>Animaatiota päästään kokeilemaan nukeilla sekä muovailuvahalla.<br></p>",
                "sv": "<p>I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.<br>Vi får prova på animering med dockor och lera.<br></p>",
                "en": "<p>In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc.<br>We will get to try animation with puppets and clay.<br></p>"
            },
            "short_description": {
                "fi": "Työpajalla tutustutaan stop-motion animaation alkeisiin",
                "sv": "I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.",
                "en": "In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc."
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "name": {
                "fi": " Animaatiopaja: Ankka",
                "sv": " Animationsverkstad: Anka",
                "en": "Animation Workshop: Duck"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibbmw55a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghvewrtzq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-07T08:46:18.989721Z",
            "last_modified_time": "2024-06-13T05:27:51.526389Z",
            "date_published": "2024-05-07T07:57:00Z",
            "start_time": "2024-06-01T05:00:00Z",
            "end_time": "2024-06-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Espoon kaupunginkirjasto järjestää lukuisia Pride-tapahtumia kesäkuun aikana!<br><br><br>Entressen kirjastossa<br>Sateenkaarisatuhetket<br>Maanantaisin klo 17-18:00 10.6., 17.6. ja 24.6.2024.<br>Tervetuloa mukaan pride-kuukauden kunniaksi järjestettäviin sateenkarisatuhetkiin.<br><br><br>PrideDisco<br>Torstaina 13.6. klo 15-17:00<br>Tervetuloa juhlimaan Pride kuukautta discon merkeissä!<br>PrideDiscossa katsotaan pätkiä seksuaali- ja sukupuolivähemmistöjen historiasta kertovasta dokumentista, minkä jälkeen tanssitaan ja juhlitaan discon hengessä.<br><br><br><br><br>Lippulaivan kirjastossa<br>Pride 101-näyttely<br>10.-30.6.2024<br>Faktaa, taidetta ja historiaa kaapin perukoilta Stonewallista Lady Gagaan.<br><br><br>Sateenkaarisatuhetket<br>Torstaisin klo 17.30 -18:00 6.6., 13.6., 20.6. ja 27.6.2024.&nbsp;<br>Tervetuloa mukaan pride-kuukauden kunniaksi järjestettäviin sateenkarisatuhetkiin.<br><br><br>Sateenkaariklubi<br>Kesäkuun joka tiistai klo 16-18:00 4.6., 11.6., 18.6. ja 25.6.2024.<br>Kaikille nuorille seksuaali- ja sukupuolivähemmistöille tarkoitettu klubi.<br><br><br>Sateenkaariseniorit kirjastoon kylään<br>Perjantaina 14.6.2024 klo 11-12:00.<br>Sateenkaariseniorit ry vierailevat Espoon kirjastoissa. Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin.<br><br><br>Väriloistoa kukista<br>Perjantaina 28.6.2024 klo 13-16:00<br>Juhlitaan Pride-viikkoa yhdessä! Tervetuloa nappaamaan iloa kesän värikkäistä kukista!<br><br><br><br><br>Sellon kirjastossa<br>Sateenkaarihistoriasuunnistus<br>Koko kesäkuun ajan.<br>Itsenäisesti suoritettava 10 rastin suunnistus kirjastossa, joka johdattelee seksuaali- ja sukupuolivähemmistöjä koskevan lähihistorian äärelle. Matkan varrelta voi löytää monipuolisesti erilaista aiheeseen liittyvää kirjallisuutta lainattavaksi!<br><br><br>Itsenäisiä tehtäviä ja sanastotärppejä<br>Koko kesäkuun ajan.<br>Itsenäisiä tehtäviä sateenkaariteemalla Lastenmaassa ja Pointissa.<br><br><br>Sateenkaarikirjavinkkaus<br>Torstaina 6.6. klo 17:30-19:00.<br>Tervetuloa juhlistamaan Pride-kuukautta sateenkaarevan kirjavinkkauksen merkeissä! Kirjaston henkilökunta vinkkaa aihepiiriin sopivaa kauno- ja tietokirjallisuutta aikuisille. Tapahtuma on suomeksi, mutta vinkkaamme suomen-, ruotsin- ja englanninkielistä aineistoa.<br><br><br>Sateenkaariperhekahvila<br>Torstaina 13.6.2024 klo 10-12:00<br>Sateenkaariperhekahvila kaikenlaisille sateenkaariperheille. Kahvilassa voit kohdata muita sateenkaariperheitä rennon kahvittelun, keskustelun ja kirjallisuuden merkeissä.<br><br><br>Sateenkaariseniorit kirjastoon kylään<br>Keskiviikkona 19.6.2024 klo 11-12:00.<br>Pride kuukauden aikana Sateenkaariseniorit ry vierailevat Espoon kirjastoissa. Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin.<br><br><br><br><br>Tapiolan kirjastossa<br>Sateenkaariseniorit kirjastoon kylään<br>Keskiviikkona 5.6.2024 klo 11-12:00.<br>Pride kuukauden aikana Sateenkaariseniorit ry vierailevat Espoon kirjastoissa. Tapahtuma on rento kahvitteluhetki, joka on kaikille avoin.<br><br><br>Sateenkaarikirjavinkkaus<br>Tiistaina 11.6. klo 18-19:00<br>Tervetuloa juhlistamaan Pride-kuukautta sateenkaarevan kirjavinkkauksen merkeissä! Kirjaston henkilökunta vinkkaa aihepiiriin sopivaa kauno- ja tietokirjallisuutta aikuisille. Tapahtuma on suomeksi, mutta vinkkaamme suomen-, ruotsin- ja englanninkielistä aineistoa.<br><br><br>Kirjailijavieraana Dess Terentjeva<br>maanantaina 24.6. klo 18:00<br>Pride-viikon kunniaksi Tapiolan kirjastoon saapuu haastateltavaksi sateenkaarikirjoistaan tunnettu Dess Terentjeva. Haastattelun kautta pääset syventymään Terentjevan monipuoliseen tuotantoon, joka käsittelee sekä klassisia että ajankohtaisia teemoja. Kirjat kertovat mm. toiseudesta, monikulttuurisuudesta, rakkaudesta ja ihmisten tavoista lokeroida itseään ja toisiaan.<br><br><br>Sateenkaarisatuhetket<br>Perjantaisin klo 10-10:30 7.6. ja 28.6.2024.<br>Tervetuloa mukaan pride-kuukauden kunniaksi järjestettäviin sateenkarisatuhetkiin.<br><br><br>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.<br></p>",
                "sv": "<p>Esbo stadsbibliotek anordnar många Pride-evenemang under juni månad!<br>Evenemang på Entresse bibliotek<br>Pride sagostund<br>Under Pride månaden på Entresse bibliotek ordnas tre pride sagostunder på måndagar 10.6, 17.6, 24.6 i barnavdelningen kl. 17-18. På finska.<br>PrideDisco<br>Tors 13.6.2024 15.00–17.00<br>På PrideDisco visas klipp från en dokumentär om sexuella minoriteters och könsminoriteters historia, följt av dans och fest för att hedra Pride-månaden.<br><br><br>***<br>Evenemang på Lippulaiva bibliotek<br>Pride 101-utställning<br>10.-30.6.2024<br>Fakta, konst och historia från skåpets gömmor, från Stonewall till Lady Gaga.<br>Pride sagostund<br>Tors 17.30–18.00 6.6., 13.6., 20.6. ja 27.6.2024.<br>Under Pride-månaden ordnar biblioteket pride-sagostunder. Sagostunden är på finska.<br>Regnbågsklubben<br>Varje tisdag i juni kl 16-18:00 4.6, 11.6, 18.6 och 25.6.2024.<br>En klubb för alla HBTQIA+ minoriteter.<br>Regnbågsseniorerna på besök till biblioteket<br>Fre 14.6.2024 11.00–12.00<br>Under Pride månaden besöker Sateenkaariseniorit ry Esbo bibliotek. Evenemanget är en för alla öppen avslappnad kaffestund.<br>Färgglada blommor<br>Fredagen 28.6.2024 kl. 13-16<br>Vi firar Pride veckan tillsammans! Välkommen att delta i glädjen av sommarens färgglada blommor!<br>***<br>Evenemang på Sello Bibliotek<br>Regnbågshistoriaorientering<br>1.6.2024–30.6.2024<br>Orientering som vägleder till närhistorian om sexuella minoriteter och könsminoriteter, som utförs självständigt med 10 punkter i biblioteket. Under resan kan du mångsidigt hitta litteratur om temat att låna!<br>Regnbågsuppgifter<br>1.6.2024–30.6.2024<br>Självständiga uppgifter med regnbågstema på Barnavdelningen och i Pointti.<br>Regnbågsbokprat<br>Tors 6.6.2024 17.30–19.00<br>Välkommen att göra Pride-månaden festlig genom regnbågsbokprat! Bibliotekets personal bokpratar om för temat lämplig skön- och facklitteratur åt vuxna. Evenemanget är på finska, men vi bokpratar om material som är på finska, svenska och engelska.<br>Regnbågsfamilj-café<br>Tors 13.6.2024 10.00–12.00<br>Regnbågsfamilj-café för alla slags regnbågsfamiljer.<br>Regnbågsseniorerna på besök till biblioteket<br>Ons 19.6.2024 11.00–12.00<br>Under Pride månaden besöker Sateenkaariseniorit ry Esbo bibliotek. Evenemanget är en för alla öppen avslappnad kaffestund.<br>***<br>Evenemang på Hagalund bibliotek<br>Regnbågsseniorerna på besök till biblioteket<br>Ons 5.6.2024 11.00–12.00<br>Under Pride månaden besöker Sateenkaariseniorit ry Esbo bibliotek. Evenemanget är en för alla öppen avslappnad kaffestund. Där kan du bekanta dig med regnbågslitteratur och njuta av gott sällskap.<br>Regnbågsbokprat<br>Tis 11.6.2024 17.30–19.00<br>Välkommen att göra Pride-månaden festlig genom regnbågsbokprat! Bibliotekets personal bokpratar om för temat lämplig skön- och facklitteratur åt vuxna. Evenemanget är på finska, men vi bokpratar om material som är på finska, svenska och engelska.<br>Pride-författargäst: Dess Terentjeva<br>Mån 24.6.2024 18.00–19.00<br>I samband med Pride-veckan kommer Dess Terentjeva, känd för sina regnbågsböcker, till Tapiola biblioteket för en intervju. Genom intervjun får du fördjupa dig i Terentjevas mångsidiga produktion, som behandlar både klassiska och aktuella teman. Böckerna handlar bland annat om identitet, mångkulturalism, kärlek och människors sätt att kategorisera sig själva och andra. På finska.<br>Pride sagostunder<br>Fre 7.6.2024 och fre 28.6.2024 kl. 10:00-10:30<br>Under Pride-månaden ordnar biblioteket pride-sagostunder. Sagostunderna är på finska.<br>Esbo stad är Working with Pride-partner med Helsinki Pride 2024.<br></p>",
                "en": "<p>The Espoo City Library organizes numerous Pride events during June!<br>At Entresse Library<br>Pride Story Hour<br>For Pride month, Entresse library will host three pride story hours on mondays 10.6., 17.6. and 24.6. in the children's section from 5pm to 6pm. Story hour is in Finnish.<br>PrideDisco<br>Thu 13.6.2024 15.00–17.00<br>PrideDisco will host a watch party where we watch documentary clips about LGBTQIA history and after that we dance and celebrate in the spirit of Pride Month.<br><br><br>***<br>At Lippulaiva library<br>Pride 101 exhibition<br>10.-30.6.2024<br>Facts, art, and history from Stonewall to Lady Gaga<br>Pride Story Hour<br>Thu 17.30–18.00 6.6., 13.6., 20.6. ja 27.6.2024.<br>For Pride month, the library will host pride story hours. Story hour is in Finnish.<br>Rainbow club<br>Every Tuesday in June at 16-18:00 4.6., 11.6., 18.6. och 25.6.2024.<br>A club for all LGBTQIA+ minorities. The club is a place to hang out, chat, do arts and crafts and lots of other fun things.<br>LGBTQIA+ seniors visit the library<br>Fri 14.6.2024 11.00–12.00<br>During the Pride month, Sateenkaariseniorit ry association will visit Espoo libraries. The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company.<br>Väriloistoa kukista<br>Fri 28.6.2024 13.00–16.00<br>Join us to create flower decorations and bouquets! The delightful flower buffet offers colorful cut flowers, summer greenery, and a touch of glitter.<br>***<br>At Sello library<br>LGBTQIA+ history orienteering<br>1.6.2024–30.6.2024<br>A self-guided orienteering with 10 checkpoints in the library, leading you through the recent history of sexual and gender minorities. Along the way you can find a variety of literature to borrow on the subjects!<br>LGBTQIA+ activities<br>1.6.2024–30.6.2024<br>Independent activities with LGBTQIA+ theme in Lastenmaa and Pointti.<br>LGBTQIA+ reading tips<br>Torstaina 6.6. klo 17:30-19:00.<br>Library staff will be giving out tips for fiction and non-fiction for adults. The event is in finnish, but we will be giving tips for finnish, swedish and english books.<br>LGBTQIA+ family café<br>Thu 13.6.2024 10.00–12.00<br>For all kinds of LGBTQIA+ families. At the café you can meet other families for a relaxed coffee, conversation, and literature.<br>LGBTQIA+ seniors visit the library<br>Wed 19.6.2024 11.00–12.00<br>During the Pride month, Sateenkaariseniorit ry association will visit Espoo libraries. The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company.<br>***<br>At Tapiola Library<br>LGBTQIA+ seniors visit the library<br>Wed 5.6.2024 11.00–12.00<br>During the Pride month, Sateenkaariseniorit ry association will visit Espoo libraries. The event is a relaxed coffee hour open to all. There, you can learn about LGBTQIA+ literature and enjoy the good company.<br>LGBTQIA+ reading tips<br>Tue 11.6.2024 17.30–19.00<br>Library staff will be giving out tips for fiction and non-fiction for adults. The event is in finnish, but we will be giving tips for finnish, swedish and english books.<br>Pride Author Guest: Dess Terentjeva<br>Mon 24.6.2024 18.00–19.00<br>In honor of Pride Week, Tapiola Library welcomes Dess Terentjeva, known for their rainbow-themed books, for an interview. Through the interview, you'll have the opportunity to delve into Terentjeva's diverse body of work, which addresses both classic and contemporary themes. The books cover topics such as identity, multiculturalism, love, and people's ways of categorizing themselves and others.<br>Pride Story Hours<br>Fri 7.6.2024 and Fri 28.6.2024 10.00–10.30<br>For Pride month, the library will host pride story hours. Story hour is in Finnish.<br><br><br>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2024.<br></p>"
            },
            "short_description": {
                "fi": "Espoon kaupunginkirjasto järjestää lukuisia Pride-tapahtumia kesäkuun aikana!",
                "sv": "Esbo stadsbibliotek arrangerar flera Pride-evenemang under juni! ",
                "en": "Espoo City Library is organizing several Pride events during June! "
            },
            "location_extra_info": {
                "fi": "Espoon kirjastot"
            },
            "name": {
                "fi": "Pride-tapahtumia Espoon kirjastoissa",
                "sv": "Pride-evenemang på Esbo bibliotek!",
                "en": "Pride events at Espoo Libraries! "
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvewrtzq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63683",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151106,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-13T11:12:49.911011Z",
                    "last_modified_time": "2024-05-13T11:12:49.911023Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744898.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151106/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-13T11:12:49.896624Z",
            "last_modified_time": "2024-06-12T07:12:51.667548Z",
            "date_published": null,
            "start_time": "2024-06-12T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3DB948DFC4767A685228EDD203332F41/Mimmit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3DB948DFC4767A685228EDD203332F41/Mimmit",
                "en": "http://www.malmitalo.fi/en/events/event/3DB948DFC4767A685228EDD203332F41/Mimmit"
            },
            "provider": null,
            "description": {
                "fi": "<p>Vaikka kesällä sataisi, Mimmit tuovat auringon mukanaan! Mimmien iloa ja riemua pursuavat kappaleet saavat lapset ja aikuiset kesäiseen tunnelmaan.</p><p>Koko perheen suosikkiyhtyeen Mimmien kanssa kesästä ei tule tylsää, pääset mukaan laulamaan, tanssimaan, leikkimään ja viittomaan. Aurinkoo-konsertissa kuullaan ihan uusia luonnosta kertovia Mimmit-lauluja sekä vanhoja Mimmit-hittibiisejä, tanssittavia rytmejä unohtamatta.</p><p>Interaktiivinen ja vauhdikas Aurinkoo-konsertti saa yleisön poistumaan paikalta hymyssä suin.</p><p>Konsertissa kuultavat vanhat Mimmit-laulut ovat keränneet YouTubessa jo yli 6 miljoonaa katselukertaa, joten on helppo laulaa mukana! Myös monet aikuiset fanittavat Mimmejä ja ihan jokaisella keikalla myös aikuiset laulavat mukana.</p><p>Palkittu Mimmit-yhtye on yli 15 vuoden aikana luonut ainutlaatuisen uran suomalaisessa lastenkulttuurissa; 1000 konserttia, 15 miljoonaa YouTube-katselua, TV-sarjoja, levyjä, kirjoja sekä faneja ympäri maailmaa.</p>",
                "sv": "<p>Även om det regnar på sommaren, har Mimmit solen med sig! Mimmits glada och fröjdefulla stycken skapar en somrig stämning hos såväl barn som vuxna.</p><p>Med hela familjens favoritband Mimmit blir sommaren inte tråkig. Du får sjunga, dansa, leka och teckna med. I konserten Aurinkoo hör man helt nya Mimmitlåter om naturen samt gamla Mimmithitter, för att inte glömma bort dansrytmerna.</p>",
                "en": "<p>Even in the case of summer rains, Mimmit will brighten up the day! Mimmit play joyful songs bursting with energy that get children and adults to feel the summer.</p><p>Family favourite band Mimmit makes sure that your summer won’t be boring – sign, dance, play and sign along! Their Aurinkoo concert features all-new Mimmit songs about nature and classic Mimmit favourites with all the familiar groove.</p>"
            },
            "short_description": {
                "fi": "Vaikka kesällä sataisi, Mimmit tuovat auringon mukanaan! Mimmien iloa ja riemua pursuavat kappaleet saavat lapset ja aikuiset kesäiseen tunnelmaan.",
                "sv": "Även om det regnar på sommaren, har Mimmit solen med sig! Mimmits glada och fröjdefulla stycken skapar en somrig stämning hos såväl barn som vuxna.",
                "en": "Even in the case of summer rains, Mimmit will brighten up the day! Mimmit play joyful songs bursting with energy that get children and adults to feel the summer."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Mimmit – Malmin tapahtumakesä",
                "sv": "Mimmit – Malms evenemangssommar",
                "en": "Mimmit – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63683/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63609",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151035,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-08T11:12:48.590053Z",
                    "last_modified_time": "2024-05-08T11:12:48.590067Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746117.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151035/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-08T11:12:48.573430Z",
            "last_modified_time": "2024-06-12T07:12:51.331963Z",
            "date_published": null,
            "start_time": "2024-06-12T11:00:00Z",
            "end_time": "2024-06-12T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7BB66D8A41F7A33F48184918CD8690F3/Kupla_Kopla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7BB66D8A41F7A33F48184918CD8690F3/Kupla_Kopla",
                "en": "http://www.malmitalo.fi/en/events/event/7BB66D8A41F7A33F48184918CD8690F3/Kupla_Kopla"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tehdään yhdessä pieniä ja suuria saippuakuplia! Kuplakopla luo maagista ja leikkisää tunnelmaa sekä lapsille että aikuisille.</p><p>Kupla Kopla on performanssiryhmä, joka koostuu ammattiesiintyjistä ja tanssijoista eri puolilta Suomea.</p><p>Kupla Koplan ensisijainen tarkoitus on tuoda ihmisille iloa sekä jättimäisten ja runsautta henkivien saippuakuplien, että värikkäiden asujen ja kohdattavien hahmojen kautta.</p><p>Kuplakopla luo osallistavaa ja yhteisöllistä tunnelmaa missä tahansa liikkuukin ja antaa mahdollisuuden kokeilla saippuakuplien ja jättikuplien tekemistä.</p>",
                "sv": "<p>Tillsammans gör vi små och stora såpbubblor! Bubbelgänget skapar en magisk och lekfull stämning för såväl barn som vuxna.</p><p>Kupla Kopla är en performansdansgrupp som består av yrkesartister och dansörer från olika håll i Finland.</p><p>Kupla Koplas huvudsakliga mål är att skapa glädje för människor genom såväl enorma, rikliga såpbubblor som genom färgglada kostymer och tillmötesgående figurer.</p><p>Kupla Kopla skapar en engagerande och gemenskaplig stämning var som helst den uppträder och ger möjlighet att pröva på att göra såpbubblor och jättebubblor.</p>",
                "en": "<p>Let’s make soap bubbles of all sizes together! Kupla Kopla creates a magical and playful atmosphere for all ages.</p><p>Kupla Kopla is a performance group of professionals and dancers from all around Finland. Their mission is to spread joy with humongous soap bubbles, colourful outfits and interesting characters.</p><p>Kupla Kopla creates an engaging, communal atmosphere wherever they go, letting people try blowing soap bubbles of all sizes.</p>"
            },
            "short_description": {
                "fi": "Tehdään yhdessä pieniä ja suuria saippuakuplia! Kuplakopla luo maagista ja leikkisää tunnelmaa sekä lapsille että aikuisille.",
                "sv": "Tillsammans gör vi små och stora såpbubblor! Bubbelgänget skapar en magisk och lekfull stämning för såväl barn som vuxna.",
                "en": "Let’s make soap bubbles of all sizes together! Kupla Kopla creates a magical and playful atmosphere for all ages."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kupla Kopla – Malmin tapahtumakesä",
                "sv": "Kupla Kopla – Malms evenemangssommar",
                "en": "Kupla Kopla – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63609/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63605",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151034,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-08T11:12:48.481610Z",
                    "last_modified_time": "2024-05-08T11:12:48.481626Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746114.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151034/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-08T11:12:48.464922Z",
            "last_modified_time": "2024-06-12T07:12:51.272270Z",
            "date_published": null,
            "start_time": "2024-06-12T10:00:00Z",
            "end_time": "2024-06-12T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2CD7565A6B9F223009DEA4C524764496/Okko-oravan_kierratyskarkelot_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2CD7565A6B9F223009DEA4C524764496/Okko-ekorrens_atervinningsfest_",
                "en": "http://www.malmitalo.fi/en/events/event/2CD7565A6B9F223009DEA4C524764496/Recycling_with_Okko_the_Squirrel_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Varustamon järjestämässä Okko-oravan leikkimielisissä kierrätyskarkeloissa pohditaan ympäristöteemoja.</p><p>Tiedätkö mihin laatikkoon styroksi kuuluu, entä rikkoutunut maljakko? Oletko pohtinut, miten sinä voit olla mukana suojelemassa lähiluontoa ja ympäristöäsi? Entä miten voisit kierrättää hyvää?</p><p>Näitä pohditaan yhdessä hauskojen kisojen ja tietokilpailujen lomassa. Luvassa palkintoja.</p><p>Paikka: Ala-Malmin puiston työpaja-alue<br>Soveltuu lapsille. Ohjaus suomeksi.</p>",
                "sv": "<p>I Varustamos evenemang Okko-ekorrens leksinnade återvinningsfest tänker man på miljöteman.</p><p>Vet du vilken låda styrox hör till? Eller en trasig vas? Har du tänkt på hur du kan vara med om att skydda den närmaste naturen och din miljö? Eller hur du kunde återvinna goda saker?</p><p>Dessa frågor tänker man på emellan roliga tävlingar och frågesporter  med priser.</p><p>Plats: Verkstadsområdet i Nedre Malms park</p><p>Lämplig för barn. Handledning på finska.</p>",
                "en": "<p>Organised by Varustamo, Recycling with Okko the Squirrel is a playful workshop around an environmental theme.</p><p>Do you know where to put styrofoam, or a broken vase? Have you thought about how you can help to protect your local nature and environment? What can you do to pass a good thing forward?</p><p>These are some of the things you get to think about alongside fun competitions and trivia. Winners will receive prizes!</p><p>Location: Ala-Malmi Park workshop area</p><p>Suited for children. Instruction in Finnish.</p>"
            },
            "short_description": {
                "fi": "Varustamon järjestämässä Okko-oravan leikkimielisissä kierrätyskarkeloissa pohditaan ympäristöteemoja.",
                "sv": "I Varustamos evenemang Okko-ekorrens leksinnade återvinningsfest tänker man på miljöteman.",
                "en": "Organised by Varustamo, Recycling with Okko the Squirrel is a playful workshop around an environmental theme."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Okko-oravan kierrätyskarkelot – Malmin tapahtumakesä",
                "sv": "Okko-ekorrens återvinningsfest – Malms evenemangssommar",
                "en": "Recycling with Okko the Squirrel – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63605/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63570",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151015,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-06T15:13:38.741561Z",
                    "last_modified_time": "2024-05-06T15:13:38.741579Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746113.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151015/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-05-06T15:13:38.684809Z",
            "last_modified_time": "2024-06-12T07:12:51.124324Z",
            "date_published": null,
            "start_time": "2024-06-12T09:00:00Z",
            "end_time": "2024-06-12T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B85AE54F369BC787A2CA5584BEC2284D/Reflektor_Muksut_Mappaa_-piirustustyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B85AE54F369BC787A2CA5584BEC2284D/Ritningsworkshop_Muksut_Mappaa_",
                "en": "http://www.malmitalo.fi/en/events/event/B85AE54F369BC787A2CA5584BEC2284D/Muksut_Mappaa_drawing_workshop_for_children"
            },
            "provider": null,
            "description": {
                "fi": "<p>Muksut Mäppää -piirrustuspajassa lapsi saa tehdä Malmitalon seinälle heijastettavan teoksen. Samalla tutkitaan kuinka luominen vaikuttaa pieniin taiteilijoihin.</p><p>Audiovisuaalisen taiteen festivaali Reflektor tutkii, kuinka taiteen tekeminen ja oman kädenjälkensä näkeminen suurella pinnalla vaikuttaa muksuihin. Tutkimukseen osallistuja pääsee piirtämään oman teoksensa teospohjalle, ja teos projisoidaan syksyllä Malmitalon 30-vuotissyntymäpäiväjuhlissa näyttävästi rakennuksen julkisivuun.</p><p>Oman teoksen nähtyään osallistujan tulee vastata muutamaan kysymykseen, ja haastattelujen pohjalta luodaan raportti taiteen tekemisen vaikuttavuudesta muksuihin.</p><p>Tutkimus laaditaan täysin anonyyminä, ja piirustuspajaan osallistuvilta toivomme sitoutumista kysymyksiin vastaamiseen teoksen nähtyään syksyllä.</p><p>Tutkimuksen tulokset julkaistaan Lastensuojelun Keskusliiton sekä Reflektorin kanavilla. Muksut Mäppää -piirustuspajaan ja tutkimukseen voi osallistua 9–12-vuotiaat lapset.</p><p>Ikäsuositus: 9–12-vuotiaat lapset vanhempineen</p>",
                "sv": "<p>I ritningsworkshopen Muksut Mäppää får barnen göra ett verk som reflekteras på väggen till Malms kulturhus. Samtidigt undersöker vi hur skapande påverkar de unga konstnärerna.</p><p>Den audiovisuella konstens festival Reflektor undersöker hur konstskapande och att få se sitt eget arbete på en stor yta påverkar barnen. Deltagare i undersökningen får rita sitt eget verk på en verkmall, och verket projiceras effektfullt på byggnadens fasad under 30-årsjubileet för Malms kulturhus på hösten.</p><p>När deltagarna har sett sitt eget verk ska de svara på några frågor, och utifrån intervjuerna skapas en rapport om hur konstskapande påverkar barnen.</p><p>Undersökningen utarbetas helt anonymt, och vi önskar att de som deltar i ritningsworkshoppen förbinder sig att svara på frågorna efter att de har sett verket i höst.</p><p>Undersökningens resultat publiceras i kanalerna för Centralförbundet för Barnskydd och Reflektor. 9–12-åriga barn kan delta i ritningsworkshoppen Muksut Mäppää och undersökningen.</p><p>Åldersrekommendation: 9–12-åriga barn med föräldrar</p>",
                "en": "<p>At the Muksut Mäppää drawing workshop, children get to create a piece to be projected on the walls of Malmitalo Cultural Centre. At the same time, we explore how creating things affects young artists.</p><p>Audiovisual Art Festival Reflektor examines what kind of effect creating art and seeing your own work on a large surface has on children. Participants get to draw their own piece on a template, and their works will be projected on the Malmitalo facade in autumn for the Cultural Centre’s 30th anniversary.</p><p>After seeing their own piece, the creators must answer a few questions, and these interviews will be used as a basis for a report on the effect that creating art has on children.</p><p>The study is carried out fully anonymously, and we hope that participants agree to answering these few questions after seeing their works in autumn.</p><p>The results of the study will be published on the channels of the Central Union for Child Welfare and Reflektor. The Muksut Mäppää drawing workshop and study is open to children aged 9–12.</p><p>Age recommendation: 9–12, with parents</p>"
            },
            "short_description": {
                "fi": "Muksut Mäppää -piirrustuspajassa lapsi saa tehdä Malmitalon seinälle heijastettavan teoksen. Samalla tutkitaan kuinka luominen vaikuttaa pieniin taiteilijoihin.",
                "sv": "I ritningsworkshopen Muksut Mäppää får barnen göra ett verk som reflekteras på väggen till Malms kulturhus. Samtidigt undersöker vi hur skapande påverkar de unga konstnärerna.",
                "en": "At the Muksut Mäppää drawing workshop, children get to create a piece to be projected on the walls of Malmitalo Cultural Centre. At the same time, we explore how creating things affects young artists."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Reflektor: Muksut Mäppää -piirustustyöpaja – Malmin tapahtumakesä",
                "sv": "Ritningsworkshop Muksut Mäppää – Malms evenemangssommar",
                "en": "Muksut Mäppää drawing workshop for children – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63570/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63314",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 82540,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-04T10:13:47.556262Z",
                    "last_modified_time": "2024-04-04T10:13:47.556276Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_747732.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82540/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-04T10:13:47.534612Z",
            "last_modified_time": "2024-06-12T05:13:21.794778Z",
            "date_published": null,
            "start_time": "2024-05-18T09:00:00Z",
            "end_time": "2024-05-18T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6005AB95CEA94AF2CA6B1288E27D59BC/IKI-TIK_TIKI-TAK_-tapahtumapaiva",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6005AB95CEA94AF2CA6B1288E27D59BC/IKI-TIK_TIKI-TAK_",
                "en": "http://www.annantalo.fi/en/events/event/6005AB95CEA94AF2CA6B1288E27D59BC/IKI-TIK_TIKI-TAK_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa.</p><p>Lauantain IKI-TIK TIKI-TAK -tapahtumapäivä huipentaa Lastenkulttuurin juhlaviikon Annantalolla.</p><p>Ohjelmassa on Kirsi Kunnaksen saduista ja runoista inspiroituneita työpajoja sekä maistiainen Tanssiteatteri Glims & Glomsin Tii-tii-tiitiäinen -tanssillisesta runoesityksestä.</p><p>Margaret Wise Brownin teos Maalarikissat (suom. Kirsi Kunnas) nähdään Teatteri ILMI Ö.:n esityksenä Annantalon juhlasalissa.</p><p>Eteläisessä lasigalleriassa avautuu Christelle Masin Superluonto-näyttely, jossa luonto kohtaa teknologian. Avajaiset klo 13.30 alkaen. Lisää tietoa näyttelystä <a href=\"https://www.annantalo.fi/fi/tapahtumat/event/D6A55AB6E545C84C2E79F2B7D80E7CB2/Christelle_Mas__Superluonto\"><b>täältä</b></a>.</p><p><b>TYÖPAJAT</b></p><p>Klo 12-15<br><b>VILLE JA VALLE</b><br>Työpajassa rakennetaan mekaaninen lelu Kirsi Kunnaksen ja Annantalon oppilasnäyttely Liikkuvan laboratorion hengessä.<br>Ohjaajina Annantalon taidekasvattajat Noomi Ljungdell ja Heli Niska<br>Ikäsuositus: Alle 8v. aikuisen kanssa.<br>Non-stop-työpaja</p><p>Klo 12-15<br><b>PIIRESPAARESMAAN KUNINGAS</b> <br>Tule auttamaan Piirespaaresmaan kuningasta pukeutumaan. Hän ei itse oikein tiedä mitä laittaa päälleen. Piirrämme hänestä kuvia ja jatkamme piirroksia miettien missä kuningas asuu ja keitä hänellä on seuranaan.<br>Vetäjinä Annantalon taidekasvattajat Simo Koivunen ja Anne Rossi-Horto<br>Kohderyhmä 5+<br>Non-stop-työpaja</p><p>Klo 12-15<br><b>RASIAN SISÄSSÄ RASIAN SISÄSSÄ RASIA JA SIINÄ ASIA. MIKÄ? KOKO RASIA </b><br>Liikkuvaa lorurasiaa kuljettavat Elinoora ja Fassiloora. Tule kuulemaan Kirsi Kunnaksen loruja ja runoja yhdessä heidän kanssaan.<br>Ohjaajat: Sanna Kuusisto, Sari Tupamäki<br>Non-stop</p><p>Klo 12-15<br><b>YSTÄVÄ MULLE -työpaja</b><br>Luo omia satuhahmoja leimasinpainotekniikalla. Työpajassa hahmot painetaan kangaskassiin, jonka voit ottaa kotiin. <br>Ohjaaja: Piia Nieminen<br>Ikäsuositus alle 8v. aikuisen seurassa.</p><p>Non-stop</p><p><b>ESITYKSET</b></p><p>Klo 12 ja 13.30<br><b>Teatteri ILMI Ö.: Maalarikissat</b><br>Maalarikissat on kuvataidetta ja teatteria yhdistävä esitys yli 2–vuotiaille lapsille. Musiikkiin, visuaalisuuteen ja fyysiseen teatteriin painottuva esitys sopii monenkielisille yleisöille.</p><p>Ohjaus: Merja Pennanen<br>Esiintyjät: Sanna Kärkkäinen ja Merja Pennanen<br>Videoprojisointi ja musiikki: Nikolai Tiitinen<br>Lapsikertojat ääninauhalla: Irinja Klevering, Kerttu Pulkkinen, Otso Tola<br>Skenografi: Jonna Kuittinen<br>Koreografi: Lindon Shimizu<br>Esityksen kesto: 30 min.</p><p>HUOM! Maalarikissat-esityksiin ilmoittaudutaan ennakkoon. Ilmoittautuminen aukeaa Maalarikissojen tapahtumasivuilla 18.4.2024 klo 9.</p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/A4C73CCC324F4F429218A56295C15893/Teatteri_ILMI____Maalarikissat\"> Ilmoittaudu klo 12 Maalarikissat-esitykseen täältä </a></b></p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/CB053EDEA848765C4670B85AF4EDBF34/Teatteri_ILMI____Maalarikissat\"> Ilmoittaudu klo 13.30 Maalarikissat-esitykseen täältä </a></b></p><p>Klo 13-13.10 ja klo 14-14.10<br> <b>Glims & Gloms: Tii-tii-tiitiäinen</b><br>Tii-Tii-Tiitiäinen on Kirsi Kunnaksen runoihin perustuva koko perheen esitys, josta nähdään Annantalolla maistiainen.<br>Esityksessä seikkailevat Kunnaksen tuotannosta useille sukupolville tutut hahmot, muun muassa Tiitiäinen, Haitula ja Tättähäärä.<br>Annantalon 2.kerros, pohjoinen lasipääty<br>Ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan.</p><p>På lördagen kulminerar Barnkulturens festvecka med evenemangsdagen IKI-TIK TIKI-TAK i Annegården.<br>Programmet omfattar workshoppar som inspireras av Kirsi Kunnas sagor och dikter och ett smakprov av dansteater Glims & Gloms dansanta diktuppvisning Tii-tii-tiitiäinen. Margaret Wise Browns verk Målarkatterna (översättning till finska Kirsi Kunnas) förevisas av Teatteri ILMI Ö i Annegårdens festsal. I det södra glasgalleriet öppnas Christelle Mas utställning Supernatur, där naturen möter tekniken.</p><p><b>Workshoppar</b></p><p>Kl. 12–15<br><b>VILLE JA VALLE</b><br>I workshoppen bygger vi en mekanisk leksak i anda med Kirsi Kunnas och Annegårdens elevutställning Rörliga laboratoriet.</p><p>Kl. 12–15<br><b>KUNGEN I PIIRESPAARESMAA</b> <br>Kom och hjälp kungen i Piirespaaresmaa att klä sig. Han vet inte riktigt vad han ska ha på sig. Vi ritar teckningar av honom och fortsätter teckningarna genom att fundera på var kungen bor och vem han har sällskap av.</p><p>Kl. 12–15<br><b>EN ASK I EN ASK I EN ASK OCH I DEN EN SAK. VAD? HELA ASKEN </b> <br>Elinoora och Fassiloora flyttar på den rörliga rimasken. Kom och lyssna på Kirsi Kunnas ramsor och dikter tillsammans med dem.</p><p>Kl. 12–15<br><b>Workshop EN VÄN TILL MIG</b><br>Skapa dina egna sagofigurer med stämpeltryck.</p><p><b>FÖRESTÄLLNING</b></p><p>Kl 12 och 13.30<br><b>Teater ILMI Ö.: MålarKatter</b><br>En färgglad föreställning för barn över 2 år. Med fokus på musik, bildkonst och fysisk teater passar föreställningen för flerspråkiga publiker.</p><p>\"Dörren är blå, och genom den målade dörren kommer du till målarkatternas värld.\"</p><p>Regi: Merja Pennanen<br>Artister: Sanna Kärkkäinen och Merja Pennanen<br>Videoprojicering och musik: Nikolai Tiitinen<br>Barnberättare på ljudband: Irinja Klevering, Kerttu Pulkkinen, Otso Tola<br>Scenografi: Jonna Kuittinen<br>Koreografi: Lindon Shimizu<br>Föreställningens längd: 30 min.<br> <br>Registreringen öppnar 18.4.2024 kl. 9.00</p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/A4C73CCC324F4F429218A56295C15893/Teatteri_ILMI____Maalarikissat\"> Anmäl dig till evenemang kl. 12.00 här </a></b></p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/CB053EDEA848765C4670B85AF4EDBF34/Teatteri_ILMI____Maalarikissat\"> Anmäl dig till evenemang kl. 13.30 här </a></b></p><p>kl 13-13.10 och 14-14.10<br><b>Dansteater GLIMS & GLOMS: Tii-tii-tiitiäinen</b><br>Tii-tii-tiitiäinen är en föreställning för hela familjen som grundar sig på Kirsi Kunnas dikter. På Annegården får vi se ett smakprov av föreställningen.<br>I föreställningen är figurerna från Kirsi Kunnas produktion som är välbekanta för flera generationer, exempelvis Tiitiäinen och Hattula, ute på äventyr.</p>",
                "en": "<p>Welcome to Annantalo during the Children's Culture Week, a celebration of literature, reading and listening! At the heart of the week is the Kirsi Kunnas 100 Years Poetry Room, with a programme of events throughout the week.</p><p>Saturday's IKI-TIK TIKI-TAK event day is the climax of the Children's Culture Week at Annantalo.<br>The programme includes workshops inspired by Kirsi Kunnas' fairy tales and poems as well as a piece of the Glims & Gloms Dance Theatre’s Tii-tii-tiitiäinen poetry show. The ILMI Ö theatre group will be putting on a performance of Margaret Wise Brown's The Color Kittens (Finnish translation by Kirsi Kunnas) at Annantalo’s banquet hall. The southern glass gallery will feature Christelle Mas’ Supernature exhibition, where nature meets technology.</p><p><b>WORKSHOPS</b></p><p>12 noon – 3 pm<br>VILLE AND VALLE<br>In this workshop, participants build mechanical toys in the spirit of Kirsi Kunnas and the Annantalo Moving Laboratory student exhibition.</p><p>12 noon – 3 pm<br>THE KING OF PIIRESPAARESMAA<br>Come and help the king of Piirespaaresmaa to get dressed. He doesn't really know what to wear. Draw pictures of him and add to the drawings, wondering where the king lives and who is with him.</p><p>12 noon – 3 pm<br>RASIAN SISÄSSÄ RASIAN SISÄSSÄ RASIA JA SIINÄ ASIA. MIKÄ? KOKO RASIA <br>Elinoora and Fassiloora carry around the mobile box of poems. Come and listen to Kirsi Kunnas' rhymes and poems together with them.</p><p>12 noon – 3 pm<br>A FRIEND FOR ME workshop<br>Create your own fairy tale characters with stamp printing. In the workshop, the characters will be printed on a cloth bag for you to take home.</p><p><b>PERFORMANCES</b></p><p><b>Theater ILMIÖ.: Painter Cats</b><br>Painter Cats is a performance combining visual arts and theater for children over 2 years old. With a focus on music, visual arts, and physical theater, the performance is suitable for multilingual audiences.</p><p>Direction: Merja Pennanen<br>Performers: Sanna Kärkkäinen and Merja Pennanen<br>Video projection and music: Nikolai Tiitinen<br>Child narrators on audio tape: Irinja Klevering, Kerttu Pulkkinen, Otso Tola<br>Set designer: Jonna Kuittinen<br>Choreographer: Lindon Shimizu<br>Duration of the performance: 30 min.<br> <br>Registration will open on 18 Ap</p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/A4C73CCC324F4F429218A56295C15893/Teatteri_ILMI____Maalarikissat\"> Register for events at 12.00 here </a></b></p><p><b><a href= \"https://www.annantalo.fi/fi/tapahtumat/event/CB053EDEA848765C4670B85AF4EDBF34/Teatteri_ILMI____Maalarikissat\"> Register for events at 13.30 here </a></b></p><p>at 13- 13.10 and 14-14.10<br>GLIMS & GLOMS Dance Theatre: Tii-Tii-Tiitiäinen<br>Tii-Tii-Tiitiäinen is a performance for the whole family based on the poems of Kirsi Kunnas, which is being previewed at Annantalo.<br>The performance features generational favourite characters from Kunnas' works, including Tiitiäinen and Haitula.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa.",
                "sv": "Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan.",
                "en": "Welcome to Annantalo during the Children's Culture Week, a celebration of literature, reading and listening! At the heart of the week is the Kirsi Kunnas 100 Years Poetry Room, with a programme of events throughout the week."
            },
            "location_extra_info": null,
            "name": {
                "fi": "IKI-TIK TIKI-TAK -tapahtumapäivä – Lastenkulttuurin juhlaviikko",
                "sv": "IKI-TIK TIKI-TAK – Barnkultus festvecka",
                "en": "IKI-TIK TIKI-TAK – Children´s Culture Week"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63314/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}