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

{
    "meta": {
        "count": 32755,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=720",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=718"
    },
    "data": [
        {
            "id": "espoo_le:agi4d47hse",
            "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: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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47h4m/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": 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:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-05T10:46:52.554634Z",
            "last_modified_time": "2024-09-05T10:46:52.554663Z",
            "date_published": null,
            "start_time": "2024-09-18T13:00:00Z",
            "end_time": "2024-09-18T14: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,
            "short_description": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "info_url": null,
            "description": {
                "fi": "<p>&nbsp;</p><p>HeroClix-pelin opetusta ja demopelejä toistaiseksi&nbsp;keskiviikkoisin ja torstaisin klo 16–17 Nuortenosasto Kibessä varhaisnuorille ja nuorille!</p><p>&nbsp;</p><p>Ohjaaja tuo peliin tarvittavat miniatyyrifiguureista kootut tiimit, pelikartan, kortit sekä ohjeet ja kertoo pelistä sekä opettaa sen pelaamista.</p><p>&nbsp;</p><p>\"HeroClix is a tactical combat game where you put heroes and villains from your favorite comics, movies and TV shows in head to head combat.</p><p>If you’ve never played HeroClix before or just want to play the simplest version of the game, you’ll need to learn the basics.\"</p><p><br></p><p>Ohjaaja: vapaaehtoinen</p>"
            },
            "name": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe"
            },
            "provider": {
                "fi": "Ohjaaja: vapaaehtoinen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hse/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4d47huy",
            "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: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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47h4m/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": 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:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-05T10:46:51.781647Z",
            "last_modified_time": "2024-09-05T10:46:51.781678Z",
            "date_published": null,
            "start_time": "2024-09-12T13:00:00Z",
            "end_time": "2024-09-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,
            "short_description": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "info_url": null,
            "description": {
                "fi": "<p>&nbsp;</p><p>HeroClix-pelin opetusta ja demopelejä toistaiseksi&nbsp;keskiviikkoisin ja torstaisin klo 16–17 Nuortenosasto Kibessä varhaisnuorille ja nuorille!</p><p>&nbsp;</p><p>Ohjaaja tuo peliin tarvittavat miniatyyrifiguureista kootut tiimit, pelikartan, kortit sekä ohjeet ja kertoo pelistä sekä opettaa sen pelaamista.</p><p>&nbsp;</p><p>\"HeroClix is a tactical combat game where you put heroes and villains from your favorite comics, movies and TV shows in head to head combat.</p><p>If you’ve never played HeroClix before or just want to play the simplest version of the game, you’ll need to learn the basics.\"</p><p><br></p><p>Ohjaaja: vapaaehtoinen</p>"
            },
            "name": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe"
            },
            "provider": {
                "fi": "Ohjaaja: vapaaehtoinen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47huy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4d47hxi",
            "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: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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47h4m/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": 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:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-05T10:46:51.046918Z",
            "last_modified_time": "2024-09-05T10:46:51.046946Z",
            "date_published": null,
            "start_time": "2024-09-11T13:00:00Z",
            "end_time": "2024-09-11T14: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,
            "short_description": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "info_url": null,
            "description": {
                "fi": "<p>&nbsp;</p><p>HeroClix-pelin opetusta ja demopelejä toistaiseksi&nbsp;keskiviikkoisin ja torstaisin klo 16–17 Nuortenosasto Kibessä varhaisnuorille ja nuorille!</p><p>&nbsp;</p><p>Ohjaaja tuo peliin tarvittavat miniatyyrifiguureista kootut tiimit, pelikartan, kortit sekä ohjeet ja kertoo pelistä sekä opettaa sen pelaamista.</p><p>&nbsp;</p><p>\"HeroClix is a tactical combat game where you put heroes and villains from your favorite comics, movies and TV shows in head to head combat.</p><p>If you’ve never played HeroClix before or just want to play the simplest version of the game, you’ll need to learn the basics.\"</p><p><br></p><p>Ohjaaja: vapaaehtoinen</p>"
            },
            "name": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe"
            },
            "provider": {
                "fi": "Ohjaaja: vapaaehtoinen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hxi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4d47hzy",
            "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: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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47h4m/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": 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:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-09-05T10:46:50.355228Z",
            "last_modified_time": "2024-09-05T10:46:50.355252Z",
            "date_published": null,
            "start_time": "2024-09-05T13:00:00Z",
            "end_time": "2024-09-05T14: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,
            "short_description": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "info_url": null,
            "description": {
                "fi": "<p>&nbsp;</p><p>HeroClix-pelin opetusta ja demopelejä toistaiseksi&nbsp;keskiviikkoisin ja torstaisin klo 16–17 Nuortenosasto Kibessä varhaisnuorille ja nuorille!</p><p>&nbsp;</p><p>Ohjaaja tuo peliin tarvittavat miniatyyrifiguureista kootut tiimit, pelikartan, kortit sekä ohjeet ja kertoo pelistä sekä opettaa sen pelaamista.</p><p>&nbsp;</p><p>\"HeroClix is a tactical combat game where you put heroes and villains from your favorite comics, movies and TV shows in head to head combat.</p><p>If you’ve never played HeroClix before or just want to play the simplest version of the game, you’ll need to learn the basics.\"</p><p><br></p><p>Ohjaaja: vapaaehtoinen</p>"
            },
            "name": {
                "fi": "HeroClix-pelin opetusta ja demopelejä "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe"
            },
            "provider": {
                "fi": "Ohjaaja: vapaaehtoinen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hzy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agio6ax4va",
            "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: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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agio6ax444/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T11:51:36.493552Z",
            "last_modified_time": "2024-09-05T10:00:20.103707Z",
            "date_published": null,
            "start_time": "2024-09-06T13:00:00Z",
            "end_time": "2024-09-06T15: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,
            "short_description": {
                "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin",
                "sv": "Kom och upptäck verkstadens utrustning och möjligheter",
                "en": "Come and discover the equipment and possibilities of the Paja"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 9.8.2024 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>",
                "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 9 augusti 2024, varannan fredag ​​klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>",
                "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on August 9, 2024, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>"
            },
            "name": {
                "fi": "6.9. PERUUTETTU Paja tutuksi kaikille!",
                "sv": "6.9. AVBRUTEN Lär känna Paja!  ",
                "en": "6.9. CANCELLED Paja for everyone! "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agio6ax4va/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4cgmn6u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@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:agggfz66ru/?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:agggfz7ao4/?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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmooa/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-05T06:31:41.771992Z",
            "last_modified_time": "2024-09-05T06:31:41.772014Z",
            "date_published": null,
            "start_time": "2024-12-11T15:00:00Z",
            "end_time": "2024-12-11T17: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,
            "short_description": {
                "fi": "Asianajajien järjestämässä päivystyksessä useilla paikkakunnilla ympäri Suomea saa maksutonta neuvontaa kaikissa oikeudellisissa asioissa. "
            },
            "info_url": {
                "fi": "https://asianajajaliitto.fi/paivystyskalenteri/espoon-asianajajapaivystys-ison-omenan-palvelutori/"
            },
            "description": {
                "fi": "<p>Espoon asianajajapäivystys (Ison Omenan palvelutori) </p><p>Espoo&nbsp;Ison Omenan palvelutori&nbsp;Suomenlahdentie 1, 3krs</p><p>11.9.2024 klo 17.00–19.30</p><p>9.10.2024 klo 17.00–19.30</p><p>13.11.2024&nbsp;klo 17.00–19.30</p><p>11.12.2024&nbsp;klo 17.00–19.30</p><p>Asianajajien järjestämässä päivystyksessä useilla paikkakunnilla ympäri Suomea saa maksutonta neuvontaa kaikissa oikeudellisissa asioissa. Asianajaja kertoo, onko asiassa tarpeen hakea oikeudellista asiantuntija-apua ja ohjaa tarvittaessa asiaan perehtyneen asianajajan tai oikean viranomaisen puoleen.</p><p>Espoon asianajajapäivystykseen ei voi tehdä ajanvarausta etukäteen.</p><p>Järjestäjä:</p><p>Asianajajaliiton Helsingin paikallisyhdistys (HAY)</p><p>(Kirjasto ei vastaa mahdollisista päivystyksien peruutuksista tai muutoksista).</p>"
            },
            "name": {
                "fi": "Espoon asianajajapäivystys"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "kokoustilat"
            },
            "provider": {
                "fi": "Asianajajaliiton Helsingin paikallisyhdistys (HAY)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmn6u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4cgmohq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@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:agggfz66ru/?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:agggfz7ao4/?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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmooa/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-05T06:31:41.477852Z",
            "last_modified_time": "2024-09-05T06:31:41.477882Z",
            "date_published": null,
            "start_time": "2024-11-13T15:00:00Z",
            "end_time": "2024-11-13T17: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,
            "short_description": {
                "fi": "Asianajajien järjestämässä päivystyksessä useilla paikkakunnilla ympäri Suomea saa maksutonta neuvontaa kaikissa oikeudellisissa asioissa. "
            },
            "info_url": {
                "fi": "https://asianajajaliitto.fi/paivystyskalenteri/espoon-asianajajapaivystys-ison-omenan-palvelutori/"
            },
            "description": {
                "fi": "<p>Espoon asianajajapäivystys (Ison Omenan palvelutori) </p><p>Espoo&nbsp;Ison Omenan palvelutori&nbsp;Suomenlahdentie 1, 3krs</p><p>11.9.2024 klo 17.00–19.30</p><p>9.10.2024 klo 17.00–19.30</p><p>13.11.2024&nbsp;klo 17.00–19.30</p><p>11.12.2024&nbsp;klo 17.00–19.30</p><p>Asianajajien järjestämässä päivystyksessä useilla paikkakunnilla ympäri Suomea saa maksutonta neuvontaa kaikissa oikeudellisissa asioissa. Asianajaja kertoo, onko asiassa tarpeen hakea oikeudellista asiantuntija-apua ja ohjaa tarvittaessa asiaan perehtyneen asianajajan tai oikean viranomaisen puoleen.</p><p>Espoon asianajajapäivystykseen ei voi tehdä ajanvarausta etukäteen.</p><p>Järjestäjä:</p><p>Asianajajaliiton Helsingin paikallisyhdistys (HAY)</p><p>(Kirjasto ei vastaa mahdollisista päivystyksien peruutuksista tai muutoksista).</p>"
            },
            "name": {
                "fi": "Espoon asianajajapäivystys"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "kokoustilat"
            },
            "provider": {
                "fi": "Asianajajaliiton Helsingin paikallisyhdistys (HAY)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmohq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4cgmol4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@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:agggfz66ru/?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:agggfz7ao4/?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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmooa/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-05T06:31:40.780890Z",
            "last_modified_time": "2024-09-05T06:31:40.780931Z",
            "date_published": null,
            "start_time": "2024-09-11T14:00:00Z",
            "end_time": "2024-09-11T16: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,
            "short_description": {
                "fi": "Asianajajien järjestämässä päivystyksessä useilla paikkakunnilla ympäri Suomea saa maksutonta neuvontaa kaikissa oikeudellisissa asioissa. "
            },
            "info_url": {
                "fi": "https://asianajajaliitto.fi/paivystyskalenteri/espoon-asianajajapaivystys-ison-omenan-palvelutori/"
            },
            "description": {
                "fi": "<p>Espoon asianajajapäivystys (Ison Omenan palvelutori) </p><p>Espoo&nbsp;Ison Omenan palvelutori&nbsp;Suomenlahdentie 1, 3krs</p><p>11.9.2024 klo 17.00–19.30</p><p>9.10.2024 klo 17.00–19.30</p><p>13.11.2024&nbsp;klo 17.00–19.30</p><p>11.12.2024&nbsp;klo 17.00–19.30</p><p>Asianajajien järjestämässä päivystyksessä useilla paikkakunnilla ympäri Suomea saa maksutonta neuvontaa kaikissa oikeudellisissa asioissa. Asianajaja kertoo, onko asiassa tarpeen hakea oikeudellista asiantuntija-apua ja ohjaa tarvittaessa asiaan perehtyneen asianajajan tai oikean viranomaisen puoleen.</p><p>Espoon asianajajapäivystykseen ei voi tehdä ajanvarausta etukäteen.</p><p>Järjestäjä:</p><p>Asianajajaliiton Helsingin paikallisyhdistys (HAY)</p><p>(Kirjasto ei vastaa mahdollisista päivystyksien peruutuksista tai muutoksista).</p>"
            },
            "name": {
                "fi": "Espoon asianajajapäivystys"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "kokoustilat"
            },
            "provider": {
                "fi": "Asianajajaliiton Helsingin paikallisyhdistys (HAY)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmol4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4cgmooa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@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:agggfz66ru/?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:agggfz7ao4/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmn6u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmohq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmojy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmol4/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-05T06:31:37.733551Z",
            "last_modified_time": "2024-09-05T06:31:37.733580Z",
            "date_published": null,
            "start_time": "2024-09-11T14:00:00Z",
            "end_time": "2024-12-11T17: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,
            "short_description": {
                "fi": "Asianajajien järjestämässä päivystyksessä useilla paikkakunnilla ympäri Suomea saa maksutonta neuvontaa kaikissa oikeudellisissa asioissa. "
            },
            "info_url": {
                "fi": "https://asianajajaliitto.fi/paivystyskalenteri/espoon-asianajajapaivystys-ison-omenan-palvelutori/"
            },
            "description": {
                "fi": "<p>Espoon asianajajapäivystys (Ison Omenan palvelutori) </p><p>Espoo&nbsp;Ison Omenan palvelutori&nbsp;Suomenlahdentie 1, 3krs</p><p>11.9.2024 klo 17.00–19.30</p><p>9.10.2024 klo 17.00–19.30</p><p>13.11.2024&nbsp;klo 17.00–19.30</p><p>11.12.2024&nbsp;klo 17.00–19.30</p><p>Asianajajien järjestämässä päivystyksessä useilla paikkakunnilla ympäri Suomea saa maksutonta neuvontaa kaikissa oikeudellisissa asioissa. Asianajaja kertoo, onko asiassa tarpeen hakea oikeudellista asiantuntija-apua ja ohjaa tarvittaessa asiaan perehtyneen asianajajan tai oikean viranomaisen puoleen.</p><p>Espoon asianajajapäivystykseen ei voi tehdä ajanvarausta etukäteen.</p><p>Järjestäjä:</p><p>Asianajajaliiton Helsingin paikallisyhdistys (HAY)</p><p>(Kirjasto ei vastaa mahdollisista päivystyksien peruutuksista tai muutoksista).</p>"
            },
            "name": {
                "fi": "Espoon asianajajapäivystys"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "kokoustilat"
            },
            "provider": {
                "fi": "Asianajajaliiton Helsingin paikallisyhdistys (HAY)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4cgmooa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi325i5qy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-04T13:40:36.583246Z",
            "last_modified_time": "2024-09-04T13:40:36.583267Z",
            "date_published": null,
            "start_time": "2024-09-08T08:00:00Z",
            "end_time": "2024-09-08T10: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,
            "short_description": {
                "fi": "Taiteilua ja syystunnelmointia omenoilla",
                "sv": "Skapande och höstmys med äpplen",
                "en": " Art and Autumn Vibes with Apples"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sunnuntai 8.9. klo 11-13</p><p>Taiteilua ja syystunnelmointia omenoilla |&nbsp;Kirjaston VOX-tilassa klo 11–13</p><p>Maksuton ja kaiken ikäisille sopiva grafiikan työpaja. Tarjolla myös rouskutettavia omenoita sekä kirjavinkkejä niin isoon kuin pieneen nälkään! </p><p>Materiaalit tarjoaa kirjasto yhteistyössä Citymarketin kanssa.</p>",
                "sv": "<p><br></p><p>Söndag 8.9. kl. 11-13</p><p>Skapande och höstmys med äpplen | I bibliotekets VOX-rum kl. 11–13 </p><p>En gratis grafikverkstad som passar alla åldrar. Äpplen att knapra på och boktips för både stora och små sug erbjuds också! </p><p>Material tillhandahålls av biblioteket i samarbete med Citymarket.</p><p><br></p><p><br></p><p><br></p>",
                "en": "<p>Sunday, September 8th, from 11:00 AM to 1:00 PM</p><p><br></p><p> Art and Autumn Vibes with Apples | In the library's VOX room from 11:00 AM to 1:00 PM </p><p>A free printmaking workshop suitable for all ages. There will also be crunchy apples and book recommendations for both big and small appetites! </p><p>Materials are provided by the library in collaboration with Citymarket.</p>"
            },
            "name": {
                "fi": "Taiteilua ja syystunnelmointia omenoilla",
                "sv": "Skapande och höstmys med äpplen",
                "en": " Art and Autumn Vibes with Apples"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "VOX",
                "sv": "VOX",
                "en": "VOX"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi325i5qy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64508",
            "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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152288,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-04T13:14:52.185217Z",
                    "last_modified_time": "2024-09-04T13:14:52.185234Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749382.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152288/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-04T13:14:52.151313Z",
            "last_modified_time": "2024-09-04T13:14:52.271867Z",
            "date_published": null,
            "start_time": "2024-11-12T12: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,
            "short_description": {
                "fi": "Ylen toimittaja Maxim Fedorov kertoo Ukrainan historiasta ja kulttuurista."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D620AECAB6B5E7A677DC6F5563259587/Ukrainan_monet_kasvot"
            },
            "description": {
                "fi": "<p>Ylen toimittaja Maxim Fedorov kertoo Ukrainan historiasta ja kulttuurista.</p><p>Ukraina nähdään usein loputtomien viljapeltojen maana, mutta todellisuudessa Ukraina on sekä luonnon että kulttuurin kannalta erittäin monipuolinen maa.<br> <br>Yli kaksi vuotta Kiovassa sodan aikana viettänyt Ylen kirjeenvaihtaja <b>Maxim Fedorov</b> kirjoittaa uudessa kirjassaan \"Sodan näyttämöt\" ukrainalaisista kaupungeista ja alueista, jotka ovat kaikille tuttuja sotaraportoinnista, mutta joiden historia ja kulttuuriset erityispiirteet ovat jääneet vähemmälle huomiolle.<br> <br>Vapaa pääsy. Tervetuloa!</p>"
            },
            "name": {
                "fi": "Ukrainan monet kasvot – Tiistaimatinea / luento"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64508/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64409",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T08:14:40.999710Z",
                    "last_modified_time": "2024-08-22T08:14:40.999731Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757103.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-22T08:14:40.979152Z",
            "last_modified_time": "2024-09-04T12:15:07.079215Z",
            "date_published": null,
            "start_time": "2024-09-07T12: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,
            "short_description": {
                "fi": "Disneyn ja Pixarin elokuva “Inside Out - mielen sopukoissa 2” asettuu jälleen tunteiden tasapainon jo kerran löytäneen teinitytön Rileyn mieleen juuri sillä hetkellä, kun hänen päämajassaan käynnistyy suuri romutusurakka, jolla tehdään tilaa odottamattomalle yllätykselle: uusille tunteille!",
                "en": "Disney and Pixar’s “Inside Out 2” returns to the mind of newly minted teenager Riley just as headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/364FEB3002115D56B9ECBA59B0DB5C12/Inside_Out_Mielen_sopukoissa_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/364FEB3002115D56B9ECBA59B0DB5C12/Inside_Out_2_7_"
            },
            "description": {
                "fi": "<p>Disneyn ja Pixarin elokuva “Inside Out - mielen sopukoissa 2” asettuu jälleen tunteiden tasapainon jo kerran löytäneen teinitytön Rileyn mieleen juuri sillä hetkellä, kun hänen päämajassaan käynnistyy suuri romutusurakka, jolla tehdään tilaa odottamattomalle yllätykselle: uusille tunteille!</p><p>Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet Rileyn mieltä hyvällä menestyksellä, eivät tiedä, mitä pitäisi ajatella, kun kuvioihin ilmestyvät  Ahdistus, Kateus, Ennui ja Nolous.  Elokuvan “Inside Out - mielen sopukoissa 2” on ohjannut Kelsey Mann ja tuottanut Mark Nielsen ja se nähdään Suomen elokuvateattereissa 17. heinäkuuta 2024.</p><p>Kesto 97 min<br>Ikäraja 7<br>Elokuva on puhuttu ja tekstitetty suomeksi.</p>",
                "en": "<p>Disney and Pixar’s “Inside Out 2” returns to the mind of newly minted teenager Riley just as headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions!</p><p>Joy, Sadness, Anger, Fear and Disgust, who’ve long been running a successful operation by all accounts, aren’t sure how to feel when Anxiety shows up. And it looks like she’s not alone. Maya Hawke lends her voice to Anxiety, alongside Amy Poehler as Joy, Phyllis Smith as Sadness, Lewis Black as Anger, Tony Hale as Fear, and Liza Lapira as Disgust. Directed by Kelsey Mann and produced by Mark Nielsen, “Inside Out 2” releases only in theaters Summer 2024.</p><p>Duration: 97 min<br>Age limit: 7</p>"
            },
            "name": {
                "fi": "Inside Out – Mielen sopukoissa 2 (7) – Kino Helios",
                "en": "Inside Out 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64409/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3ztxrpa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@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:agggfz66ru/?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/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-04T10:53:04.732295Z",
            "last_modified_time": "2024-09-04T10:53:04.732316Z",
            "date_published": null,
            "start_time": "2024-09-07T11:00:00Z",
            "end_time": "2024-09-07T14: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,
            "short_description": {
                "fi": "Haluatko oppia käyttämään 3D-tulostinta?\n\n",
                "sv": "Vill du lära dig hur man använder en 3D-skrivare?\n\n",
                "en": "Want to learn how to use a 3D printer?\n\n"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Haluatko oppia käyttämään 3D-tulostinta?</p><p>Tule Ison Omenan kirjaston Pajaan tutustumaan 3D-tulostamiseen ja tekemään itsellesi 3D-avaimenperä!</p><p>Tapahtuma on ilmainen ja kaikille avoin.</p><p>Lämpimästi tervetuloa!</p>",
                "sv": "<p>Vill du lära dig hur man använder en 3D-skrivare?</p><p>Kom till Iso Omena bibliotekets Verkstad för att lära dig mer om 3D-utskrift och tillverka din egen 3D-nyckelring!</p><p>Evenemanget är gratis och öppet för alla.</p><p>Du är varmt välkommen!</p>",
                "en": "<p>Want to learn how to use a 3D printer?</p><p>Come to the Iso Omena Library's Maker space to learn about 3D printing and make your own 3D key chain!</p><p>The event is free and open to everyone.</p><p>You are warmly welcome!</p>"
            },
            "name": {
                "fi": "Lohkotut hinnat: Avoin 3D-opastus kirjaston Pajassa lauantaina 7.9. klo 14-17 ",
                "sv": "Lohkotut hinnat: Öppen 3D-guidning i bibliotekets Verkstad på lördag 7.9. kl. 14-17 ",
                "en": "Lohkotut hibbat: Open 3D-printer guide in the library's Maker space on Saturday 7.9. from 14-17 "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Verkstad",
                "en": "Maker space "
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ztxrpa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64506",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10",
                        "sv": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10",
                        "en": "https://www.lippu.fi/artist/benny-ja-muumit/#calendar-start=2024-10"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152284,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-04T10:14:58.896102Z",
                    "last_modified_time": "2024-09-04T10:14:58.896123Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756299.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152284/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-09-04T10:14:58.870094Z",
            "last_modified_time": "2024-09-04T10:14:58.974060Z",
            "date_published": null,
            "start_time": "2024-10-15T16: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,
            "short_description": {
                "fi": "Saduilla on yleensä onnellinen loppu. Niin myös Muumikonserteilla!",
                "sv": "Alla sagor har ett lyckligt slut. Så är det också med Muminkonserterna!",
                "en": "Fairy tales usually have a happy ending. So too, do Moomin concerts!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/23AC912729A4E5245EF9CF05BB8A9AEF/Benny_Tornroos_Muumipeikon_tahtihetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/23AC912729A4E5245EF9CF05BB8A9AEF/Benny_Tornroos_Mumintrollet_och_stjarnan",
                "en": "http://www.vuotalo.fi/en/events/event/23AC912729A4E5245EF9CF05BB8A9AEF/Benny_Tornroos_the_Moomintroll_s_star_moment"
            },
            "description": {
                "fi": "<p>Saduilla on yleensä onnellinen loppu. Niin myös Muumikonserteilla!</p><p>Benny Törnroos ja Muumiperhe ovat loppusuoralla, ja esiintyvät enää vain muutaman kerran. Tunnelma onkin siksi katossa – muistot elävät, ja yhdessä lauletaan, tömistellään ja tanssitaan niin kuin ennen. Muumipeikon tähtihetki koittaa yhdessä Mamman, Papan, Nipsun ja Pikku Myyn seurassa – ja tietysti sinun kanssasi. Tervetuloa!</p><p>Kesto: n. 60 min<br>Kaksikielinen: suomi ja ruotsi</p><p>Liput: à 15 € Lippu.fi tai lippuautomaatilta ovella.</p>",
                "sv": "<p>Alla sagor har ett lyckligt slut. Så är det också med Muminkonserterna!</p><p>Benny Törnroos och Mumintrollen är på slutrakan och endast några konserter återstår. Kom med och fira finalen tillsammans med Mamman, Pappan, Sniff och Lilla My i konserten Mumintrollet och stjärnan. Vi dansar, skuttar och stampar så att hela huset darrar när vi sjunger Papapaaa... Mamamaaa. Välkommen. Vi ses!</p><p>Längd: ca 60 min<br>Tvåspråkig svenska-finska.</p><p>Bilj. à 15 € från Lippu.fi eller från biljettautomaten vid dörren.</p>",
                "en": "<p>Fairy tales usually have a happy ending. So too, do Moomin concerts!</p><p>Benny Törnroos and the Moomin family are almost done, and will only perform a few more times. The atmosphere is therefore through the roof – memories live on, and together we sing, stomp and dance as we used to. Moomintroll's star moment comes together with Mama, Papa, Sniff and Little My – and of course with you. Welcome!</p><p>Duration: approx. 60 min<br>Bilingual: Finnish and Swedish</p><p>Tickets: 15 € from Lippu.fi or from the ticket machine at the door</p>"
            },
            "name": {
                "fi": "Benny Törnroos & Muumipeikon tähtihetki",
                "sv": "Benny Törnroos & Mumintrollet och stjärnan",
                "en": "Benny Törnroos & the Moomintroll´s star moment"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64506/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3zgpqmu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-04T09:47:27.227481Z",
            "last_modified_time": "2024-09-04T09:47:27.227504Z",
            "date_published": null,
            "start_time": "2024-09-22T10:00:00Z",
            "end_time": "2024-09-22T11: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,
            "short_description": {
                "fi": "POC-lukupiirin lukuhetki  lapsiperheille",
                "sv": "POC läsecirkel lästid  för familjer med barn",
                "en": "POC reading circle reading time  for families with children"
            },
            "info_url": null,
            "description": {
                "fi": "<p>POC-lukupiirin lukuhetki&nbsp;</p><p>lapsiperheille su 22.9. klo 13-14.30&nbsp;</p><p>POC = People of Color =&nbsp;mustat ja ruskeat ihmiset&nbsp;</p><p>POC-lukupiirin lukuhetki lapsiperheille on ihan kaikille avoin tapahtuma, johon ei tarvitse&nbsp;ilmoittautua etukäteen. Tapahtumassa on tarjolla myös pientä evästä!&nbsp;</p><p>POC-lukupiirin Aracelis ja Téri saapuvat Sellon kirjastoon jakamaan&nbsp;</p><p>perheille kirjavinkkejä POC-kirjailijoilta ja lukemaan ääneen lastenkirjoja.&nbsp;</p><p>Tapahtumassa pääsee tutustumaan ja lainaamaan kotiin POCkirjailijoiden&nbsp;</p><p>lastenkirjoja, joissa seikkailee mustia ja ruskeita hahmoja!&nbsp;</p><p>Tervetuloa koko perheen voimin Sellon kirjastoon tutustumaan&nbsp;</p><p>moninaista representaatiota sisältävään lastenkirjallisuuteen!&nbsp;</p><p>POC-lukupiiri pyrkii nostamaan POC-kirjailijoiden teoksia esiin ja&nbsp;</p><p>vaikuttamaan siihen, että saisimme nauttia monimuotoisemmasta&nbsp;</p><p>representaatiosta kirjallisuudessa.</p>",
                "sv": "<p>POC läsecirkel lästimme&nbsp;</p><p><br></p><p>för barnfamiljer sön 22.9. kl. 13-14.30&nbsp;</p><p><br></p><p>POC = People of Color = svarta och bruna människor&nbsp;</p><p><br></p><p>POC:s läsecirkelläsningstimme för barnfamiljer är ett evenemang som är öppet för alla, så du behöver inte anmäla dig i förväg. Det kommer också att finnas snacks tillgängliga!&nbsp;</p><p><br></p><p>Aracelis och Téri från POC Reading Circle kommer till Sellos bibliotek för att dela med sig av sina berättelser.&nbsp;</p><p><br></p><p>Evenemanget är en möjlighet att upptäcka och låna böcker från POC-författare och ta med dem hem.&nbsp;</p><p><br></p><p>POC Reading Circle har som mål att lyfta fram POC-författarnas verk och göra dem kända för allmänheten.&nbsp;</p>",
                "en": "<p>POC reading circle reading time&nbsp;</p><p>for families with children on Sun 22.9. at 13-14.30&nbsp;</p><p>POC = People of Color =&nbsp; black and brown people&nbsp;</p><p><br></p><p>The POC Reading Circle Reading Hour for families with children is an event open to all, so you don't have to&nbsp; register in advance. There will also be snacks available!&nbsp;</p><p><br></p><p>Aracelis and Téri from the POC Reading Circle will come to the Sello library to share their stories.&nbsp;</p><p><br></p><p>The event is an opportunity to discover and borrow books from POC authors and take them home.&nbsp;</p><p><br></p><p>The POC Reading Circle aims to highlight the works of POC authors and to bring them to the attention of the public.&nbsp;</p><p><br></p><p><br></p><p><br></p>"
            },
            "name": {
                "fi": "POC-lukupiirin lukuhetki  lapsiperheille",
                "sv": "POC läsecirkel lästid  för familjer med barn",
                "en": "POC reading circle reading time  for families with children"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": {
                "fi": "POC-lukupiiri",
                "sv": "POC läsecirkel ",
                "en": "POC reading circle"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3zgpqmu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64176",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kulttuurikeskus-caisa-club-kiihko-10-syytae-valita-karhu-kulttuurikeskus-caisa-18891761/",
                        "sv": "https://www.lippu.fi/event/kulttuurikeskus-caisa-club-kiihko-10-syytae-valita-karhu-kulttuurikeskus-caisa-18891761/",
                        "en": "https://www.lippu.fi/event/kulttuurikeskus-caisa-club-kiihko-10-syytae-valita-karhu-kulttuurikeskus-caisa-18891761/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151664,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-04T13:13:14.905704Z",
                    "last_modified_time": "2024-07-04T13:13:14.905718Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753870.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151664/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-04T13:13:14.891454Z",
            "last_modified_time": "2024-09-04T08:13:56.540462Z",
            "date_published": null,
            "start_time": "2024-09-28T16: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,
            "short_description": {
                "fi": "Fiktiivinen myöhäisillan keskusteluohjelma, jossa on vieraina esiintyviä taiteilijoita. Tule mukaan yleisöön kokemaan kanssamme stand uppia, dragia, burleskia, huumoriviihdettä ja mahdollisesti osallistumaan mukaan peleihin.",
                "sv": "Club Kiihko är en lekfull, vild och provocerande queer-feministisk konstklubb som skamlöst sammanför olika former av scenkonst – utan att hålla dem i sina egna fack.",
                "en": "Club Kiihko is a playful, wild and provocative queer-feminist art club that presents an obscene blend of different performing arts – all mixed in together."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1BFBBA09132D54C80A11776908A6C6AC/Club_Kiihko_10_hyvaa_syyta_valita_karhu",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1BFBBA09132D54C80A11776908A6C6AC/Club_Kiihko_10_hyvaa_syyta_valita_karhu",
                "en": "http://www.caisa.fi/en/events/event/1BFBBA09132D54C80A11776908A6C6AC/Club_Kiihko_10_hyvaa_syyta_valita_karhu"
            },
            "description": {
                "fi": "<p>Fiktiivinen myöhäisillan keskusteluohjelma, jossa on vieraina esiintyviä taiteilijoita. Tule mukaan yleisöön kokemaan kanssamme stand uppia, dragia, burleskia, huumoriviihdettä ja mahdollisesti osallistumaan mukaan peleihin.</p><p>10 Hyvää syytä valita Karhu ammentaa myyttien ja fiktion karhuista sekä \"man vs. bear\" -sosiaalisen median ilmiöstä. Klubi ottaa taiteen ja huumorin keinoin osaa yhteiskunnalliseen keskusteluun sukupuolittuneesta väkivallasta, jossa naisista puhutaan väkivallan kohteina, mutta ei miehistä väkivallan tekijöinä.<br> <br>Esiintyjät: <br>Hedda Liukkala<br>Helena Haaparanta<br>Katri Kainulainen & Maximilian Latva <br>Mildred Prude<br>Raisa Omaheimo<br>Vamp Master Brown</p><p>Club Kiihko on leikkimielinen, villi ja provosoiva queer-feministinen taideklubi, joka tuo räävittömästi yhteen erilaisia esittäviä taiteita - pitämättä niitä omissa poteroissaan.</p><p>Kiihko-kollektiivi on vuonna 2022 syntynyt esitystaiteen ryhmä, jonka muodostavat ohjaaja, esitystaiteilija ja teatteritaiteen maisteri <b>Vili von Nissinen</b>, antropologi, tuottaja, burleski- ja drag-taiteilija </b>Milla Heikkinen</b> sekä taiteilija </b>Tia Carolina Ihalainen</b>.</p><p>Esityksessä on teatterisavua, kovia ääniä ja vilkkuvia valoja.</p><p>Kesto: 1,5 h<br>Ikäsuositus: K-18</p><p>Liput: 15 € / 6 € osoitteesta Lippu.fi<br>Avustaja tai tulkki ilmaiseksi.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi.<u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a></p><p>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Club Kiihko är en lekfull, vild och provocerande queer-feministisk konstklubb som skamlöst sammanför olika former av scenkonst – utan att hålla dem i sina egna fack.</p><p>Kiihko-kollektiivi är en scenkonstgrupp som uppstod år 2022 och som består av regisssör, scenkonstnär och magister i teaterkonst Vili von Nissinen, antropolog, producent, burlesk- och dragkonstnär Milla Heikkinen och konstnär Tia Carolina Ihalainen.</p><p>Observera att innehållet omfattar teaterrök, höga ljud och blinkande ljus.</p>",
                "en": "<p>Club Kiihko is a playful, wild and provocative queer-feminist art club that presents an obscene blend of different performing arts – all mixed in together.</p><p>Kiihko Collective is a performing arts group that was founded in 2022, whose members are director, performance artists and Master of Theatre Vili von Nissinen; anthropologist, producer, burlesque and drag performer Milla Heikkinen; and artist Tia Carolina Ihalainen.</p><p>Notice that performance includes: theatre smoke, loud sounds and blinking lights.</p>"
            },
            "name": {
                "fi": "Club Kiihko: 10 hyvää syytä valita karhu",
                "sv": "Club Kiihko: 10 hyvää syytä valita karhu",
                "en": "Club Kiihko: 10 hyvää syytä valita karhu"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64176/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64407",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152211,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-23T14:15:46.370079Z",
                    "last_modified_time": "2024-08-23T14:15:46.370097Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757131.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152211/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-23T14:15:46.323480Z",
            "last_modified_time": "2024-09-04T08:13:55.131830Z",
            "date_published": null,
            "start_time": "2024-09-21T12:00:00Z",
            "end_time": "2024-09-21T15: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,
            "short_description": {
                "fi": "Sunflower Film Festival on monikielinen elokuvafestivaali, joka on rakennettu rauhan teeman ympärille.",
                "sv": "Sunflower Film Festival är en flerspråkig filmfestival som är uppbyggd kring temat fred.",
                "en": "Sunflower Film and Photo Festival is a multilingual film festival built around the theme of peace."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6109103F98D0347F6FAF92685E7149B3/Sunflower_Film_Festival_paneelikeskustelu",
                "sv": "http://www.stoa.fi/sv/evenemang/event/6109103F98D0347F6FAF92685E7149B3/Sunflower_Film_Festival_Paneldiskussion",
                "en": "http://www.stoa.fi/en/events/event/6109103F98D0347F6FAF92685E7149B3/Sunflower_Film_Festival_Panel_Discussion"
            },
            "description": {
                "fi": "<p>Sunflower Film Festival on monikielinen elokuvafestivaali, joka on rakennettu rauhan teeman ympärille.</p><p>Ohjelmassa on elokuvia, jotka tarjoavat näkökulman Lähi-idässä asuvien tai sieltä lähtevien ihmisten arkeen ja kulttuurimaisemaan. Elokuvat kertovat elämästä sotien ulkopuolella.</p><p>Tapahtumassa on myös paneelikeskustelu, jossa pohditaan taiteen roolia rauhankasvatuksessa.</p><p><b>Ohjelma</b></p><p><b>klo 15 Tervetuloa</b></p><p><b>klo 15.10–15.20 Lyhytelokuvia</b></p><p>Elokuvissa on englanninkielinen tekstitys.</p><p><b>Rakkauden tanssi (Dance of Love)</b><br>Dokumentti Rakkauden tanssi kertoo vanhan miehen ja naisen elämästä. Nainen on kärsinyt diabeteksesta ja Alzheimerin taudista 16 vuotta. Hän ei ole käynyt ulkona seitsemään vuoteen, ja hänen miehensä pitää hänestä huolta. Rakkaus vaimoa kohtaan on saanut miehen maalaamaan kaikki takapihan seinät.<br>Ohjaaja ja tuottaja: Mohammad Farajzadeh<br>Kesto: 7 min</p><p><b>Viimeinen halaus (The Last Embrace)</b><br>Lyhytelokuva siitä, miten internetiin uppoutuminen voi saada perheen jättämään ympärillä tapahtuvat mullistavat asiat huomiotta.<br>Ohjaaja: Saman Hosseinpuor<br>Kesto: 4 min</p><p><b>klo 15.20 Paneelikeskustelu</b> <br>Mikä on taiteen rooli rauhankasvatuksessa? <br>Miten kulttuuri ja taide voi edistää toivoa, aktivismia ja rauhaa?<br>Keskustelemassa FM, tutkija, YAMK kulttuurituottaja Salla Raunio, säveltäjä Marouf Majidi sekä näyttelijä-ohjaaja ja käsikirjoittaja Ali Al-Saffu. Suomenkielisen keskustelun juontaa toimittaja Zuzan Rasulzade.</p><p><b>klo 16.20 Tauko</b></p><p><b>klo 16.30 Lyhytelokuvia</b><br>Elokuvissa on englanninkielinen tekstitys.</p><p><b>Elämä on poissa (Life is gone)</b><br>Elämä on poissa -elokuva kertoo iäkkäästä naisesta, joka muistaa kaikki lapsuutensa katkerat muistot, kun hän näkee leijan putoavan talonsa pihalla olevaan puuhun ja tekee sen seurauksena suuren päätöksen....<br>Ohjaaja ja tuottaja: Siavash Saedpanah<br>Kesto: 7 min.</p><p><b>Musta & valkoinen (Black & White)</b><br>Tarina nuoresta naisesta, joka ei pidä isänsä työstä, mutta joka joutuu kuitenkin jatkamaan ammattia isän kuoleman jälkeen. Miten hän pärjää?<br>Ohjaaja ja tuottaja: Jalal Saedpanah<br>Kesto: 19 min</p><p><b>Viides narsissi (Fifth Narcissus)</b><br>Katukauppiaana työskentelevä lapsi myy narsisseja tienvarressa. Joka kerta, kun hän myy kukan, tapahtuu samanlainen kokemus.<br>Ohjaaja ja tuottaja: Sarkawt Nikdel<br>Kesto: 5 min</p><p><b>Zagrosin seitsemän sinfoniaa (7 Symphonies of the Zagros)</b><br>Seitsemän on pyhä luku monissa uskonnoissa. Dokumentti kertoo vanhimman puhallinsoittimen shamshalin seitsemän musiikillisen maqamin filosofiasta.<br>Ohjaaja: Parviz Rostami<br>Tuottajat: Parviz Rostami & Parviz Rostami & Iranian Youth Cinema Society – Kurdistanin toimisto<br>Kesto: 23 min</p><p><b>Covid 69</b> <br>Terveiden sukupuolten välisten suhteiden puutteesta joutuu maksamaan koko yhteiskunta.<br>Ohjaaja ja tuottaja: Kareemok Ghafour<br>14 min</p><p><b>Suolan myyjät (Salt Sellers)</b><br>Raskaana oleva nainen, joka asuu ja myy miehensä kanssa suolaa Urmia-järven rannalla, on vaarassa saada keskenmenon ilmastonmuutoksen ja inhimillisten tekijöiden aiheuttamien suolamyrskyjen vaikutuksesta.<br>Ohjaaja: Maryam Samadi<br>Tuottajat: Inna Tedžoeva Zina Broyan<br>Kesto: 15 min</p><p><b>Yhtäkkiä tuuli (Suddenly the Wind)</b> <br>Isä lähtee poikansa kanssa metsästämään, mutta poika ei halua tappaa lintuja. Sen sijaan hän yrittää suojella heitä leijallaan.<br>Ohjaaja ja tuottaja: Edris Samani<br>Kesto: 8 min<br> <br>Ohjelman tuotanto ja suunnittelu: Rasoul Khorram</p>",
                "sv": "<p>Sunflower Film Festival är en flerspråkig filmfestival som är uppbyggd kring temat fred.</p><p>På programmet står filmer som erbjuder ett perspektiv på det vardagliga och kulturella landskapet för människorna som bor i eller lämnar Mellanöstern. Filmer handlar om livet utanför krig. Under evenemanget hålls också en paneldiskussion om konstens roll i fredsutbildningen.</p><p><b>Program</b></p><p>kl 15 Välkommen</p><p>kl 15.10–15.20 Kortfilmer<br>Filmerna har engelska undertexter.</p><p>Dance of Love (Kärlekens dans) <br>Dokumentären Dance of Love handlar om ett gammalt par och deras liv. Kvinnan har lidit av diabetes och Alzheimers i 16 år, och har inte lämnat hemmet på sju år. Hennes man tar hand om henne. Hans kärlek till sin fru har fått honom att måla alla väggarna på bakgården för henne.<br>Regissör & producent: Mohammad Farajzadeh</p><p>The Last Embrace (Den sista omfamningen)<br>En kort film om hur enbart fokus på saker online kan få en familj att inte lägga märke till livsförändrande händelser omkring dem.<br>Regissör: Saman Hosseinpuor</p><p>kl 15.20 Paneldiskussion<br>Vilken roll spelar konsten i fredsutbildningen? <br>Hur kan kultur och konst främja hopp, aktivism och fred?<br>I diskussionen deltar Salla Raunio, fil. mag., forskare, högre YH kulturproducent, Marouf Majidi, kompositör, och Ali Al-Saffu, skådespelare, regissör och manusförfattare. Den finskspråkiga diskussionen leds av journalisten Zuzan Rasulzade.</p><p>kl 16.20 Paus</p><p>kl 16.30 Kortfilmer<br>Filmerna har engelska undertexter.</p><p>Life is gone (Livet är borta)<br>Filmen Life gone with the wind (Livet borta med vinden) handlar om en äldre kvinna som minns alla de bittra minnena från sin barndom när hon ser en drake falla på trädet vid hennes hus, vilket får henne att fatta ett avgörande beslut att…<br>Regissör & producent: Siavash Saedpanah<br>7 min.</p><p>Black & White (Svartvitt)<br>En berättelse om en ung kvinna som inte gillar sin pappas jobb, men som måste ta sig an yrket efter hans död. Hur ska hon klara det?<br>Regissör & producent: Jalal Saedpanah<br>19 min.</p><p>Fifth Narcissus (Femte narcissen)<br>Ett barn som jobbar som gatuförsäljare säljer narcisser vid vägkanten. Varje gång han säljer en blomma uppstår en liknande upplevelse.<br>Regissör & producent: Sarkawt Nikdel<br>5 min.</p><p>7 Symphonies of the Zagros (Zagros sju symfonier)<br>Sju är ett heligt tal i många religioner. Den här dokumentären berättar om filosofin kring det äldsta blåsinstrumentet shamshals sju musikaliska maqamer.<br>Regissör: Parviz Rostami<br>Producenter: Parviz Rostami & Parviz Rostami & Iranian Youth Cinema Society – Kurdistan Office<br>23 min.</p><p>Covid 69 <br>I brist på sunda könsförhållanden betalar hela samhället priset.<br>Regissör & producent: Kareemok Ghafour<br>14 min. <br> <br>Salt Sellers (Saltförsäljare)<br>En gravid kvinna som bor och säljer salt tillsammans med sin man vid Urmiasjön riskerar få missfall på grund av effekterna av saltstormar orsakade av klimatförändringen och mänskliga faktorer.<br>Regissör: Maryam Samadi<br>Producenter: Inna Tedzhoeva Zina Broyan<br>15 min.<br> <br>Suddenly the Wind (Plötsligt vinden) <br>En pappa går på jakt med sin son, men pojken vill inte döda fåglarna. Istället försöker han skydda dem med sin drake.<br>Regissör & producent: Edris Samani<br>8 min.</p>",
                "en": "<p>Sunflower Film and Photo Festival is a multilingual film festival built around the theme of peace.</p><p>The programme features films that offer a perspective on the everyday lives and cultural and natural landscape of people living in or leaving the Middle East. The films tell the story of life outside the wars.</p><p>The films are subtitled in English.</p><p><b>Schedule</b></p><p>15:00 Welcome</p><p>15:10-15:20 Short films</p><p>Dance of Love <br>The documentary Dance of Love is about the life of an old man and woman. The woman has been suffering from diabetes and Alzheimer's for 16 years. And she hasn't come out in seven years. Her husband takes care of her. His love for his wife has led him to paint all the walls of his backyard for her.<br>Director & Producer: Mohammad Farajzadeh<br>7 min</p><p>The Last Embrace<br>A short film about how focusing only on things online can make a family not notice life-changing events around them.<br>Director: Saman Hosseinpuor <br>Producer: Saman Hosseinpuor & The Artistic Center of<br>4 min</p><p>15:20 Panel Discussion<br>How can culture and art promote hope, activism and peace?</p><p>16:20 Break</p><p>16:30 Short films<br> <br>Life is Gone <br>The film Life is Gone about an elderly woman who remembers all the bitter memories of her childhood when she sees a kite falling on the tree of her house and as a result makes a big decision to…<br>Director & Producer: Siavash Saedpanah<br>7 min</p><p>Black & White<br>A story of a young woman who doesn’t like her father’s job, but has to pick up the profession after his death. How will she manage? <br>Director & Producer: Jalal Saedpanah<br>19 min</p><p>Fifth Narcissus<br>A child who works as a street vendor sells Narcissus by the roadside. Each time he sells a flower a similar experience unfolds.<br>Director & Producer: Sarkawt Nikdel<br>5 min</p><p>7 Symphonies of the Zagros<br>Seven is a sacred number in many religions. This documentary narrates the philosophy of 7 musical Maqams of the oldest wind instrument Shamshal.<br>Director: Parviz Rostami <br>Producers: Parviz Rostami & Parviz Rostami & Iranian Youth Cinema Society – Kurdistan Office<br>23 min</p><p>Covid 69 <br>In the absence of healthy gender relations, society as a whole pays the price.<br>Director & Producer: Kareemok Ghafour<br>14 min <br> <br>Salt Sellers<br>A pregnant woman who lives and sells salt with her husband by Lake Urmia; is facing the risk of miscarriage because of the impact of salt storms caused by climate change and human factors.<br>Director: Maryam Samadi<br>Producers: Inna Tedzhoeva Zina Broyan<br>15 min<br> <br>Suddenly the Wind <br>A father goes hunting with his son, but the boy does not want to kill the birds. Instead, he tries to protect them with his kite.<br>Director & Producer: Edris Samani<br>8 min</p><p>The Sunflower festival is produced by journalist-documentarian Rasoul Khorram.</p>"
            },
            "name": {
                "fi": "Sunflower Film Festival & paneelikeskustelu",
                "sv": "Sunflower Film Festival & Paneldiskussion",
                "en": "Sunflower Film Festival & Panel Discussion"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64407/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64242",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151808,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T12:15:45.580000Z",
                    "last_modified_time": "2024-07-24T12:15:45.580050Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756157.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T12:15:45.547955Z",
            "last_modified_time": "2024-09-03T12:13:37.615130Z",
            "date_published": null,
            "start_time": "2024-09-14T12: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,
            "short_description": {
                "fi": "Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.",
                "sv": "En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.",
                "en": "In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "en": "http://www.malmitalo.fi/en/events/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta"
            },
            "description": {
                "fi": "<p>Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.</p><p>Äiti tahtoo toimia, isoäiti toppuuttelee ja koulukuraattori on omituisen vaitelias. Osapuolia yhdistää halu ymmärtää, mitä itse asiassa on tapahtunut – ja ennen kaikkea, kenen on syy?</p><p>M – merkintöjä yhden malmilaisen tapauksesta pureutuu kaupunginosayhteisöä kohdanneen katoamistapauksen kautta sukupolvien välisen ymmärtämättömyyden, vallankäytön ja yhteiskunnallisen vastakkainasettelun teemoihin. Eri puolilla Malmin kaupunkitilaa tapahtuva esitys kysyy, kenellä on valta päättää, mihin kenenkin tulisi oma elämänsä käyttää – kuka päättää, miten täällä ollaan?</p><p>Esitys on osa Helsingin Kaupunginteatterin ja Q-teatterin Malmilla toteuttamaa, asukkaita osallistavaa yhteisöteatteritoimintaa. Teemoja, aihealueita ja tekstimateriaalia käsikirjoitukseen on poimittu muun muassa erilaisista Malmilla järjestetyistä teatterityöpajoista ja muista taidetoiminnoista. Teoksessa esiintyy kahdeksan näyttelijää Q-teatterin yhteisöteatterista sekä suuri joukko eri-ikäisiä osallistujia Malmilta ja lähialueelta.</p><p>Esitys tapahtuu eri puolilla Malmia, ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esiintyjät: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Käsikirjoitus ja ohjaus: Janne Puustinen ja Tuomo Rämö<br>Yhteisöteatteriohjaaja: Meiju Pax<br>Äänisuunnittelu ja sävellys: Aleksi Kinnunen<br>Pukusuunnittelu: Fiona Timantti<br>Graafinen suunnittelu: Malmi Vice<br>Tuotanto: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Malmin Novan liiketilan lavastussuunnittelu: Anna Pietilä ja Lasten ja nuorten arkkitehtuurikoulu Arkki</p><p>Yhteistyössä: Kaupunkiolohuone Kohtaus, partiolippukunta Sinivuoren Soihdut, Kauppakeskus Malmin Nova, Kulttuurikeskus Malmitalo, Ravintola Teeritupa, Fallkullan kotieläintila sekä PopUp Kesäkahvila Raparperitaivas.</p><p>Kiitämme työpajatoimintaan osallistuneita tahoja: Kaupunkiolohuone Kohtaus, Stadin ammatti- ja aikuisopisto Vilppulantie, A-kilta, Malmin poluilla -kävelyoppaat, Päiväkoti Suvi-Vilppula, Hietakummun ala-asteen koulu, Senioritytöt, Leikkiväki Malmi</p><p>Kesto: 2,5 t<br>Suosittelemme esitystä yli 13-vuotiaille<br>Kieli: suomi</p><p><b>Vapaa pääsy, ennakkoilmoittautuminen!</b><br>Ilmoittaudu mukaan tämän linkin kautta: https://www.lyyti.fi/reg/M-esitys</p><p>Esitys tapahtuu eri puolilla Malmia ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esitys on Helsingin Kaupunginteatterin alueellisen Pääroolissa Malmi -taidehankkeen sekä Q-teatterin yhteisöteatterin yhteistuotanto. Toiminta on osa Helsingin kaupungin osallistavan kulttuurityön mallia, Helsingin mallia.</p><p><b>Lisätiedot:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "sv": "<p>En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.</p><p>Mamman vill agera, mormodern vill hålla tillbaka och skolkuratorn är märkligt tystlåten. Parterna förenas av en önskan att förstå vad som egentligen har hänt – och framför allt: vems fel det är!</p><p>M – merkintöjä yhden malmilaisen tapauksesta utforskar teman såsom missförstånd mellan generationer, maktutövning och samhälleliga motsättningar via ett fall av en försvunnen person i stadsdelen. Föreställningen äger rum i olika delar av Malms stadsrum, och ställer frågan om vem som har makten att bestämma vad man ska använda sitt liv till – vem bestämmer hur man ska vara här?</p><p>Föreställningen är en del av Helsingin Kaupunginteatteris och Q-teatteris gemenskapsteaterverksamhet i Malm, som delaktiggör invånarna. Temana, ämnesområdena och textmaterialet för manuset har inhämtats bland annat från olika teaterworkshoppar och andra konstaktiviteter som anordnats i Malm. I föreställningen medverkar åtta skådespelare från Q-teatteris gemenskapsteater och ett stort antal deltagare i olika åldrar från Malm och närområdet.</p><p>Föreställningen äger rum i olika delar av Malm, och publiken går omkring med skådespelarna. Föreställningen är inte tillgänglighetsanpassad, under föreställningen promenerar vi och använder trappor.</p><p>Artister: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Manus och regi: Janne Puustinen och Tuomo Rämö<br>Gemenskapsteaterregissör: Meiju Pax<br>Ljuddesign och komposition: Aleksi Kinnunen<br>Kostymdesign: Fiona Timantti<br>Grafisk design: Malmi Vice<br>Produktion: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Scenografi för Malmin Novas affärsutrymme: Anna Pietilä och arkitekturskolan Arkki för barn och unga</p><p>I samarbete: Stadsvardagsrummet Kohtaus, scoutkåren Sinivuoren Soihdut, köpcentret Malmin Nova, Malms kulturhus, restaurang Teeritupa, hemdjursgården Fallkulla och PopUp-sommarcaféet Raparperitaivas.</p><p>Vi vill tacka alla som deltog i workshopparna: Stadsvardagsrummet Kohtaus, yrkesinstitutet Stadin ammatti- ja aikuisopisto Filpusvägen, A-Guild, Malmin poluilla-vandringsguiderna, daghemmet Suvi-Vilppula, Hietakummun ala-aste, Senioritytöt, Leikkiväki Malmi</p><p>Längd: 2,5 h<br>Vi rekommenderar föreställningen för över 13-åringar<br>Språk: finska</p><p><b>Fritt inträde, föranmälan via länken:</b> https://www.lyyti.fi/reg/M-esitys</p><p>Föreställningen är en samproduktion mellan Helsingin Kaupunginteatteris regionala konstprojekt Pääroolissa Malmi och Q-teatteris gemenskapsteater. Verksamheten är en del av Helsingfors stads modell för delaktiggörande kulturarbete, Helsingforsmodellen.</p><p><b>Mer information:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "en": "<p>In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance.</p><p>The mother wants to act, the grandmother is wants to hit the brakes, and the school curator is, strangely, saying nothing. Everyone is united by a desire to understand what has actually happened – and above all, whose fault is it?</p><p>M – notes on the case of a person from Malmi delves into the themes of a generational gap, in understanding, power and social confrontation, through a missing-person case that has shakes the community of the city district. The show, which takes place in different parts of Malmi, asks: who has the power to decide what to spend their own life on – who decides the way you should carry yourself?</p><p>The performance is part of the Helsinki City Theatre and Q-teatteri’s community theatre activities in Malmi, which involves residents. Themes, topics and text material for the script have been picked, for example, from various theatre workshops and other art activities held at Malmi. The work features eight actors from the community theatre of Q-teatteri, as well as a large number of participants of different ages from Malmi and the surrounding area.</p><p>The performance takes place in different parts of Malmi, and the audience travels with the performers. The performance is not accessible, during the performance you walk and climb stairs.</p><p>Performers: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Script and direction: Janne Puustinen and Tuomo Rämö<br>Community theatre director: Meiju Pax<br>Sound design and composition: Aleksi Kinnunen<br>Costume design: Fiona Timantti<br>Graphic design: Malmi Vice<br>Production: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>The stage design for Malmin Nova's commercial area: Anna Pietilä and Arkki School of Architecture for Children and Youth</p><p>In cooperation with: Urban Living Room Kohtaus, Scout Troop Sinivuoren Soihdut, Shopping Centre Malmin Nova, Cultural Centre Malmitalo, Restaurant Teeritupa, Fallkulla Domestic Animal Farm and PopUp Summer Café Raparperitaivas.</p><p>We thank everyone who participated in the workshop activities: Urban Living Room Kohtaus, Helsinki Vocational College at Vilppulantie, A-kilta, Malmi Trails Walking Guides, Suvi-Vilppula Daycare, Hietakumpu Elementary School, Senioritytöt, Leikkiväki Malmi</p><p>Duration: 2.5 h<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Free admission, pre-registration via link:</b>  https://www.lyyti.fi/reg/M-esitys</p><p>The performance is a co-production of the Helsinki City Theatre's regional Malmi art project and Q-teatteri's community theatre. The activities are a part of the City of Helsinki's model for participatory cultural work, i.e. the Helsinki model.</p><p><b>More info:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>"
            },
            "name": {
                "fi": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "sv": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "en": "M - Merkintöjä yhden malmilaisen tapauksesta"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64242/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3pxzmta",
            "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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-03T11:20:09.512726Z",
            "last_modified_time": "2024-09-03T11:20:09.512748Z",
            "date_published": null,
            "start_time": "2024-10-15T14:30:00Z",
            "end_time": "2024-10-15T14:50: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,
            "short_description": {
                "fi": "Syyskeiju ja Menninkäinen on kuvitteelliseen taikametsään sijoittuva fantasiasatu. ",
                "sv": "The Autumn Fairy and the Munchkin är en fantasy-saga som utspelar sig i en fiktiv magisk skog. ",
                "en": "The Autumn Fairy and the Munchkin is a fantasy fairy tale set in a fictional magical forest. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Syyskeiju ja Menninkäinen on kuvitteelliseen&nbsp;taikametsään sijoittuva fantasiasatu. </p><p>Teoksen keoreografiasta ja esiintymisestä vastaavat Välikoski Kantola Co:n tanssitaiteilijat Ville Välikoski ja Katriina Kantola. </p><p>Syyskeiju ja Menninkäinen -esitys on yllättävä ja raikas tanssitaiteellinen&nbsp;tervehdys arjen keskellä. Teos tarkastelee kuinka kahdesta eri maailmasta tulevaa olentoa, Syyskeiju ja&nbsp;Menninkäinen, voivat löytää yhteisen kielen ja tavan kommunikoida keskenään. Erilaisuus voi aiheuttaa kohtaamattomuutta ja pelkoa sekä johtaa vetäytymiseen ja sulkeutumiseen. Kuinka löytää suvaitsevaisuutta ja rohkeutta kohdata omat pelot ja tuntematon? Teos ehdottaa avoimuuden ja kuuntelun mahdollisuutta uutta kohdatessa.</p><p>Esityksessä kuullaan kanteletaiteilija Hanna Ryynäsen musiikkia hänen Taite-albumiltaan. Kantelemusiikki luo yhdessä tanssijoiden hahmojen kanssa esitykseen salaperäisen taikametsän. Esitys päättyy yhteiseen tanssiin Syyskeijun ja Menninkäisen kanssa. Katsojat voivat liittyä mukaan yhteiseen tanssiin tai seurata sitä etäältä.</p><p><br></p><p>Esitys ei sisällä puhetta vaan tarina kerrotaan tanssin, liikkeen ja musiikin keinoin. Teos on suunnattu kaikenikäiselle ja -kieliselle yleisölle. </p><p><br></p><p>Koreografia ja esiintyminen: </p><p>Välikoski Kantola Co / Ville Välikoski ja Katriina Kantola </p><p>Tuotanto: Välikoski Kantola Co ja Physical Opera </p><p>Musiikki: Hanna Ryynänen Taite-albumi</p><p>Esityskiertueen tukija: Espoon kaupunki </p><p>Esityksen kesto: 20 minuuttia </p><p> </p><p> ____________________________________________________________</p><p> </p><p> Lisätiedot: </p><p> </p><p> Katriina Kantola, tanssitaiteilija </p><p> katriina.kantola@gmail.com / www.katriinakantola.com </p><p> </p><p> Ville Välikoski, tanssitaiteilija&nbsp;</p><p> ville.valikoski@gmail.com / www.villevalikoski.com </p>",
                "sv": "<p>The Autumn Fairy and the Munchkin är en fantasy-saga som utspelar sig i en fiktiv magisk skog.&nbsp;</p><p><br></p><p>Verket är koreograferat och framfört av Välikoski Kantola Co:s danskonstnärer Ville Välikoski och Katriina Kantola.&nbsp;</p><p><br></p><p>Föreställningen innehåller inget tal, utan historien berättas med hjälp av dans, rörelse och musik. Verket riktar sig till en publik i alla åldrar och med olika språk.&nbsp;</p><p><br></p><p>Koreografi och framförande:&nbsp;</p><p>Välikoski Kantola Co / Ville Välikoski och Katriina Kantola&nbsp;</p><p>Produktion: Välikoski Kantola Co och Physical Opera&nbsp;</p><p>Musik: Hanna Ryynänen Konstalbum</p><p>Turnésponsor: Esbo stad&nbsp;</p><p><br></p><p>Föreställningens längd: 20 minuter&nbsp;</p><p>Evenemanget är öppet för alla och avgiftsfritt.&nbsp;</p>",
                "en": "<p>The Autumn Fairy and the Munchkin is a fantasy fairy tale set in a fictional magical forest.&nbsp;</p><p>The work is choreographed and performed by Välikoski Kantola Co's dance artists Ville Välikoski and Katriina Kantola.&nbsp;</p><p>The performance does not include speech, but the story is told through dance, movement and music. The work is aimed at audiences of all ages and languages.&nbsp;</p><p><br></p><p>Choreography and performance:&nbsp;</p><p>Välikoski Kantola Co / Ville Välikoski and Katriina Kantola&nbsp;</p><p>Production by Välikoski Kantola Co and Physical Opera&nbsp;</p><p>Music: Hanna Ryynänen Art album</p><p>Tour sponsor: the City of Espoo&nbsp;</p><p><br></p><p>Duration of the performance: 20 minutes&nbsp;</p><p>The event is open to everyone and free of charge. </p>"
            },
            "name": {
                "fi": "Syyskeiju ja Menninkäinen ",
                "sv": "Syyskeiju ja Menninkäinen ",
                "en": "Syyskeiju ja Menninkäinen "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3pxzmta/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi3pkpmba",
            "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:p1947/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": 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:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2024-09-03T11:05:09.511481Z",
            "last_modified_time": "2024-09-03T11:05:09.511505Z",
            "date_published": null,
            "start_time": "2024-10-10T09:00:00Z",
            "end_time": "2024-10-10T12: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,
            "short_description": {
                "fi": "Tervetuloa juhlimaan vanhustenviikkoa kanssamme!",
                "sv": "Välkommen att fira Äldreveckan med oss!",
                "en": "Welcome to celebrate Seniors Week with us!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa juhlimaan vanhustenviikkoa kanssamme!</p><p><br></p><p>Tapahtuman ohjelma:</p><p>Klo 12.00 Netin käytön ilot ja hyödyt, Enter Ry</p><p>Klo 13.00 Liikuntatuokio ja info, Espoon kaupunki</p><p>Klo 14.00 Jokainen ihminen on laulun arvoinen - yhteislauluja, Espoonlahden seurakunta</p><p><br></p><p>Tapahtuman järjestää:</p><p>Espoon liikuntatoimi, Enter Ry ja Kirkko Espoossa</p>",
                "sv": "<p>Välkommen att fira Äldreveckan med oss!</p><p><br></p><p>Programmet för evenemanget:</p><p><br></p><p>Kl. 12.00 glädjeämnen och fördelar med Internet, Enter Ry</p><p><br></p><p>Kl. 13.00 Motion och information, Esbo stad</p><p><br></p><p>Kl. 14.00 Varje människa är värd att sjunga - gemenskapssånger, Esbovikens församling</p><p><br></p><p>Evenemanget ordnas av:</p><p><br></p><p>Esbo stads idrottsverk, Enter Ry och Kyrkan i Esbo</p>",
                "en": "<p>Welcome to celebrate Seniors Week with us!</p><p><br></p><p>The programme of the event:</p><p><br></p><p>At 12.00 the joys and benefits of using the Internet, Enter Ry</p><p><br></p><p>13.00 Exercise session and information, City of Espoo.</p><p><br></p><p>At 14.00 Every person is worth singing - community songs, Espoonlahti church</p><p><br></p><p>The event is organised by:</p><p><br></p><p>Espoo Sports Department, Enter Ry and Church in Espoo</p>"
            },
            "name": {
                "fi": "Iloa ja eloa eläkevuosiin -vanhustenviikon tapahtuma",
                "sv": "Glädje och liv som pensionär - veckans evenemang för äldre människor",
                "en": "Joy to the retirement years- the event of the Seniors' Week"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3pkpmba/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}