Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 26999,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1228",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1226"
    },
    "data": [
        {
            "id": "helmet:266168",
            "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/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3513,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-22T07:29:35.636143Z",
                    "last_modified_time": "2023-08-22T07:29:35.636163Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BDAE6A45-5E1F-40BC-A7C0-7E7400C476D5}/97963",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3513/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-22T07:29:35.512690Z",
            "last_modified_time": "2023-10-27T05:23:34.818154Z",
            "date_published": "2022-11-10T12:21:00Z",
            "start_time": "2023-09-26T06:30:00Z",
            "end_time": "2023-09-26T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Hyppää hetkeksi tarinoiden maailmaan Entressen kirjastossa!</p><p>Aamuinen satuhetki kuukauden viimeinen tiistai lastenosastolla kello 9:30-10:00.</p><p>Syksyllä 2023 päivät ovat 26.9 , 31.10 , 28.11 ja 19.12.</p><p>Suurempien ryhmien toivotaan ilmoittautuvan etukäteen osoitteeseen kirjasto.entresse@espoo.fi</p><p>Tervetuloa!</p>"
            },
            "name": {
                "fi": "Entressen aamun avoin satuhetki"
            },
            "short_description": {
                "fi": "Tervetuloa satujen maailmaan!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266168/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266194",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3858,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-04T11:41:06.784566Z",
                    "last_modified_time": "2023-09-04T11:41:06.784585Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5A759C84-9773-42CC-A606-2203F8256D64}/105138",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3858/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-04T12:41:25.957127Z",
            "last_modified_time": "2023-10-26T20:22:55.261873Z",
            "date_published": "2023-09-04T10:56:43.613000Z",
            "start_time": "2023-10-26T07:00:00Z",
            "end_time": "2023-10-26T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "en": "<p>Welcome to marvel at the mysterious sounds of the autumn forest together with the fox. What is it that creaks, rustles and hisses in the forest? The fox invites babies and toddlers to play, sing, move and play music together. Everyone participates in their own style and all emotions are allowed. Storytelling and reading moments can be started as early as infancy, because they support the child's language development. The most important thing is to have a library trip and a musical fairy tale workshop together. </p> <p>The show is suitable for people of all languages. Free admission, no preregistration. </p> <p> Play, sing, play music and dance together with Kukkuu!-the fox and his friends. The video is suitable for people of all languages and can be found on the Vantaa City Library's YouTube channel. The show toured libraries in 2022 during Kukkuu art festival. </p> <h3> Kukkuu-fox’s book tips </h3> <p> Follow the Vantaa libraries' Instagram and Facebook accounts, which will receive book recommendations suitable for families with children for a week. </p>"
            },
            "name": {
                "en": "It's windy. The fox hears! - a playful musical fairy tale"
            },
            "short_description": {
                "en": "Welcome to marvel at the mysterious sounds of the autumn forest together with the fox."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266194/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266193",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3858,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-04T11:41:06.784566Z",
                    "last_modified_time": "2023-09-04T11:41:06.784585Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5A759C84-9773-42CC-A606-2203F8256D64}/105138",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3858/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-04T12:41:25.572624Z",
            "last_modified_time": "2023-10-26T20:22:55.213733Z",
            "date_published": "2023-09-04T10:56:34.633000Z",
            "start_time": "2023-10-26T07:00:00Z",
            "end_time": "2023-10-26T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "sv": "<p> Välkommen att förundras över höstskogens mystiska ljud tillsammans med räven. Vad är det som knarrar, prasslar och susar i skogen? Räven bjuder in bebisar och småbarn att leka, sjunga, röra sig och spela musik tillsammans. Alla deltar i sin egen stil och alla känslor är tillåtna. Sagostunder och lässtunder kan startas redan i spädbarnsåldern, eftersom de stödjer barnets språkutveckling. Det viktigaste är att ha en gemensam biblioteksresa och en musikalisk sagostund. </p> <p> Föreställningen är lämplig för människor på alla språk. Fritt inträde, ingen förhandsanmälan. </p> <p> Lek, sjung, spela musik och dansa tillsammans med Kukkuu!-räven och hans vänner. Videon är lämplig för människor på alla språk och kan hittas på Vanda stadsbiblioteks YouTube-kanal. Föreställningen turnerade på biblioteken 2022 under Konstfestivalen Kukkuu! </p> <h3> Kukkuu-rävens boktips </h3> <p> Följ Vanda biblioteks Instagram- och Facebook-konton som under en vecka får bokrekommendationer som passar barnfamiljer. </p>"
            },
            "name": {
                "sv": "Det blåser! Räven hör! - en lekfull musikalisk saga"
            },
            "short_description": {
                "sv": "Välkommen att förundras över höstskogens mystiska ljud tillsammans med räven."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266193/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266190",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3858,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-04T11:41:06.784566Z",
                    "last_modified_time": "2023-09-04T11:41:06.784585Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5A759C84-9773-42CC-A606-2203F8256D64}/105138",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3858/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-04T11:41:06.391047Z",
            "last_modified_time": "2023-10-26T20:22:55.163630Z",
            "date_published": "2023-09-04T10:49:00Z",
            "start_time": "2023-10-26T07:00:00Z",
            "end_time": "2023-10-26T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa ihmettelemään syksyisen metsän salaperäisiä ääniä yhdessä ketun kanssa. Mikä ropisee, rapisee ja suhisee metsässä? Kettu kutsuu vauvat ja taaperot leikkimään, laulamaan, liikkumaan ja soittamaan yhdessä. Kaikki osallistuvat omalla tyylillään ja kaikki tunteet ovat sallittuja. Satu- ja lukuhetket voi aloittaa jo vauva-aikana, koska ne tukevat lapsen kielenkehitystä. Tärkeintä on silti viettää yhteinen kirjastoretki ja musiikillinen satutuokio. </p><p>Esitys sopii kaikenkielisille 0-3-vuotiaille. Vapaa pääsy, ei ennakkoilmoittautumista. </p> <p> <strong>Katso myös Kukkuu! Nukkuu? -leikkisä musiikkiesitys YouTubessa</strong> </p> <p>Leiki, laula, soita ja tanssi yhdessä Kukkuu!-ketun ja hänen ystävänsä kanssa. Video sopii kaikenkielisille ja se löytyy Vantaan kaupunginkirjaston YouTube-kanavalta 23.10. alkaen. Esitys kiersi kirjastot vuonna 2022 Kukkuu-viikolla.</p> <p>Löydät Vantaan kaupunginkirjaston YouTube-kanavalta lisää ohjelmaa pikkulapsille: <a href=\"https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fplaylist%3Flist%3DPL0ggi3KqyC386qlTODJfRt4rWV_Uynndm&amp;data=05%7C01%7Celisa.makkonen%40vantaa.fi%7C68edf8eb45a8407e2ee508daa77aecd7%7Cdad5d62c98304db09c1589befcc5cf3e%7C0%7C0%7C638006443643076197%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=uvUc3ffCPPDzOIJHrFsWA%2BAQrQPxC8fRgk%2FjA0k9nX0%3D&amp;reserved=0\" title=\"https://eur01.safelinks.protection.outlook.com/?url=https%3a%2f%2fwww.youtube.com%2fplaylist%3flist%3dpl0ggi3kqyc386qltodjfrt4rwv_uynndm&amp;data=05%7c01%7celisa.makkonen%40vantaa.fi%7c68edf8eb45a8407e2ee508daa77aecd7%7cdad5d62c98304db09c1589befcc5cf3e%7c0%7c0%7c638006443643076197%7cunknown%7ctwfpbgzsb3d8eyjwijoimc4wljawmdailcjqijoiv2lumziilcjbtii6ik1hawwilcjxvci6mn0%3d%7c3000%7c%7c%7c&amp;sdata=uvuc3ffcppdzoijhrfswa%2baqrqpxc8frgk%2fja0k9nx0%3d&amp;reserved=0\">Loruleikit ja satutuokiot - YouTube</a></p> <p>Ota myös seurantaan Vantaan kirjastojen Instagram- ja Facebook-tilit, joille tulee viikon ajan lapsiperheille sopivia kirjasuosituksia.</p> <p> <strong>Etsi ja löydä neljä kettua</strong> </p> <p>Kukkuu-viikon ajan kaikissa Vantaan kirjastoissa ja kirjastoautoissa on lasten alueella piilossa neljä paperista kettua. Tule yhdessä lapsen kanssa etsimään piilosilla olevat ketut. Vaikka ette löydä kaikkia kettuja, pyydä kirjastolaiselta pieni lahja. Lahjoja on rajoitettu määrä. </p> <p>asiasana: \"lastenkulttuuri\"</p> <p>asiasana. \"kukkuu\"</p> <p> <em>Kuva: Vantaan kaupunginkirjasto</em> </p>"
            },
            "name": {
                "fi": "Tuulee. Kettu kuulee! - leikkisä musiikkisatu"
            },
            "short_description": {
                "fi": "Tervetuloa ihmettelemään syksyisen metsän salaperäisiä ääniä yhdessä ketun kanssa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266190/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60305",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "10 € / 6 €",
                        "sv": "10 € / 6 €",
                        "en": "10 € / 6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3425630",
                        "sv": "https://www.lippu.fi/eventseries/name-3425630",
                        "en": "https://www.lippu.fi/eventseries/name-3425630"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4096,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:27.427858Z",
                    "last_modified_time": "2023-09-07T14:20:27.427879Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734718.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4096/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:20:26.968048Z",
            "last_modified_time": "2023-10-26T20:13:21.066855Z",
            "date_published": null,
            "start_time": "2023-08-27T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A99B45AA53AB690B7B45CCD711628883/Adventures_of_Harriharri_Episode_III_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A99B45AA53AB690B7B45CCD711628883/Adventures_of_Harriharri_Episode_III_",
                "en": "http://www.caisa.fi/en/events/event/A99B45AA53AB690B7B45CCD711628883/Adventures_of_Harriharri_Episode_III_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Videopeliesityksessä Harriharri taistelee sosiaalisen syrjäyttämisen voimia vastaan integroituakseen suomalaiseen yhteiskuntaan.</p><p>Esitys seuraa Harriharrin elämää Helsingissä. Pelin päähahmo Harriharri on juuri saapunut Suomeen ja toivoo saavansa uusia ystäviä sekä lämpimän vastaanoton uuteen kulttuuriin. Harriharri luottaa itseensä ja motivaatioonsa toimia myös osana paikallista taidemaailmaa. Kaikki ei kuitenkaan mene niin kuin Strömsössä. <br> <br>Pelissä Harriharri joutuu tutustumaan suomalaiseen kulttuuri- ja maahanmuuttopolitiikkaan hämmentävillä tavoilla, jotka murskaavat hänen naiivin kuvansa Suomesta. Ponnisteluistaan huolimatta hän kohtaa jatkuvia vastoinkäymisiä pyrkiessään suomalaisen yhteiskunnan jäseneksi.</p><p>Pelin vaikeimmilla tasoilla Harriharrin täytyy taistella byrokraattista koneistoa ja sosiaalisen syrjäyttämisen rakenteita vastaan improvisoidun rapin ja laulun keinoin. Jokainen esitys on uniikki monipelaajakokemus, sillä yleisö voi vaikuttaa pelin kulkuun. Liity Harriharrin seuraan hiphopfantasiaseikkailuun! <br> <br>Kävi miten kävi, Harriharri ei saa luovuttaa! <br> <br>Pelisuunnittelija ja esittäjä: Harold Hejazi <br>Pelinkehittäjät: magu & Rolands Tīss <br>Säveltäjä ja äänisuunnittelija: Eliel Tammiharju <br>Videoteknikko: Jokke Heikkilä <br> <br>Sisältöhuomautukset: Esitys sisältää voimakkaita valoja ja värejä sekä karkeaa kielenkäyttöä. Esitys kertoo rasismista, ei välttämättä sovi herkille katsojille. <br> <br>Harriharri on osa Suomen tarinat -hanketta, jossa tutkitaan suomalaista historiakulttuuria, millaisia narratiiveja Suomen historiasta kerrotaan, miten niiden sisällöstä on neuvoteltu ja millaisia merkityksiä kansalaiset näille kertomuksille asettavat. Suomen tarinat -projektin rahoittaa Koneen Säätiö ja sen kotipaikka on Helsingin yliopiston poliittisen historian oppiaine. Hanke aloitti toukokuussa 2021 ja on kolmivuotinen. <br> <br>Esityksen kesto: n. 60 min <br>Kieli: englanti <br>Ikäsuositus/ikäraja: +12-v <br> <br>Esitys on alun perin tuotettu Nykyesityksen näyttämölle, ja sitä tuki Taiteen edistämiskeskus.</p><p>Pysy kuulolla ja ota seurantaan @harriharrigame Instagramissa!</p><p>Katso aiemmat osat täältä: <br>Jakso I: https://youtu.be/VAMZKqDMoKA <br>Jakso II: https://youtu.be/FP8Of8MNT_I</p>",
                "sv": "<p>I videospelsutställningen kämpar Harriharri mot den sociala utslagningens krafter för att integreras i det finländska samhället.</p><p>Utställningen följer Harriharris liv i Helsingfors. Spelets huvudkaraktär Harriharri har nyligen anlänt till Finland och önskar sig nya vänner samt ett varmt mottagande i den nya kulturen. Harriharri tvingas bekanta sig med den finska kultur- och migrationspolitiken på förbryllande sätt, som krossar hans naiva bild av Finland.<br>På spelets svårare nivåer måste Harriharri kämpa mot det byråkratiska maskineriet och den sociala utslagningens strukturer med improviserad rap och sång. Varje föreställning är en unik flerspelarupplevelse, eftersom publiken kan påverka spelets gång. Anslut dig till Harriharris hiphopfantasiäventyr!</p><p>Anmärkningar om innehållet: Föreställningen har starka ljus och färger, grovt språkbruk och rasistiska referenser. <br> <br>Harriharri är en del av projektet Finlands berättelser, i vilket man undersöker den finländska historiekulturen, hurdana narrativ som berättas om Finlands historia, hur deras innehåll har förhandlats och hurdana betydelser medborgarna ger dessa berättelser. Finlands berättelser finansieras av Konestiftelsen och dess hemort är politisk historia vid Helsingfors universitet. Projektet inleddes i maj 2021 och varar i tre år.</p><p>Längd: ca. 60 min.<br>Språk: engelska<br>Åldersrekommendation: +12</p>",
                "en": "<p>A video game performance. Harriharri battles the forces of social exclusion in order to integrate into Finnish society.</p><p>This video game performance chronicles the life and times of Harriharri living in Helsinki. Harriharri is a newcomer to Finland who arrives with high hopes of being warmly welcomed into the culture and making new friends. He feels confident and full of initiative to contribute to the local artistic landscape. However, it doesn’t turn out quite like in Strömsö. <br>  <br>Through gameplay, Harriharri undergoes an unsettling introduction to Finnish cultural politics, one that shatters his naïve image of Finland. Despite his sincere efforts, he faces continuous obstacles in pursuit of integrating into Finnish society. In order to conquer the most challenging levels of the game, Harriharri must battle bureaucracies and systemic forces of social exclusion. <br>  <br>No matter what, Harriharri must not give up! <br>  <br>The game is performed live in an interactive-cinema format and narrated through rap and song. In this multiplayer experience, the audience’s decisions influence the narrative––making each performance unique. Join Harriharri on this hip hop fantasy adventure! <br>  <br>Creator and Performer: Harold Hejazi <br>Game Developers: magu & Rolands Tīss <br>Composer and Sound Designer: Eliel Tammiharju <br>Video Technician: Jokke Heikkilä</p><p>Duration: 60 min<br>Age recommendation: 12+<br>Language: English<br> <br>This performance was originally produced by Stage for Contemporary Performance and supported by Arts Promotion Center Finland. <br> <br>Watch the previous episodes here: <br>Episode I: https://youtu.be/VAMZKqDMoKA <br>Episode II: https://youtu.be/FP8Of8MNT_I <br> <br>Follow @harriharrigame to stay updated <br> <br>Content Warning: This performance explores issues of race and immigration and uses strong or coarse language that may be considered offensive to some viewers. The on-screen visuals include flashing lights and colours that may trigger seizures. <br> <br>Harold Hejazi, who Fennicised his name in 2020 to Harriharri, is a Canadian artist and game designer currently living in Helsinki. In recent years, he has been using the medium of video games for live cinematic storytelling that examines issues of race, marginalisation, and contemporary multiculturalism in Finland.</p>"
            },
            "name": {
                "fi": "Adventures of Harriharri – Episode III – Suomen Tarinat",
                "sv": "Adventures of Harriharri – Episode III",
                "en": "Adventures of Harriharri – Episode III"
            },
            "short_description": {
                "fi": "Videopeliesityksessä Harriharri taistelee sosiaalisen syrjäyttämisen voimia vastaan integroituakseen suomalaiseen yhteiskuntaan.",
                "sv": "I videospelsutställningen kämpar Harriharri mot den sociala utslagningens krafter för att integreras i det finländska samhället.",
                "en": "A video game performance. Harriharri battles the forces of social exclusion in order to integrate into Finnish society."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60305/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60189",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4095,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:26.243511Z",
                    "last_modified_time": "2023-09-07T14:20:26.243543Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734136.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4095/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:25.783104Z",
            "last_modified_time": "2023-10-26T20:13:21.006345Z",
            "date_published": null,
            "start_time": "2023-08-27T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7E6D21C457FA504A0021B0653C5D300F/Nukketeatteri_Ofelia_co_Hetkia_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7E6D21C457FA504A0021B0653C5D300F/Nukketeatteri_Ofelia_co_Stunder_",
                "en": "http://www.annantalo.fi/en/events/event/7E6D21C457FA504A0021B0653C5D300F/Nukketeatteri_Ofelia_co_Moments_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa vauvan kanssa lempeiden tunnelmien maagiseen maailmaan – olemaan, aistimaan ja osallistumaan.</p><p>Luomme yhdessä hetkiä, joissa äänet, sävelet, esineet ja soittimet yhdistettynä liikkeeseen johdattelevat tunnelmasta toiseen. Tutut esineet muuttuvat hetkessä olennoiksi, jotka ihmettelevät yhdessä yleisön kanssa ympärillä olevaa maailmaa.</p><p>Toteutuksessa mukana nukketeatteritaiteilijat Anne Lihavainen ja Milla Risku sekä muusikko Saaga Sihvola.</p><p>Kesto: 30–40 min<br>Ikäsuositus: 2–13 kk<br>Maks. 10 vauva + vanhempi -paria per esitys<br>Vapaa pääsy <br>Paikanvaraus: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 13 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>Välkommen tillsammans med din bebis in i den magiska världen av mjuka stämningar – stig in för att vara, känna och delta.</p><p>Tillsammans skapar vi stunder där ljud, melodier, föremål och instrument, kombinerat med rörelse leder oss från en stämning till en annan. Bekanta föremål kan plötsligt förvandlas till varelser som tillsammans med publiken förundras över världen runt omkring oss. Föreställningen är ordlös.</p><p>För förverkligandet står dockteaterkonstnärerna Anne Lihavainen och Milla Risku tillsammans med en musiker Saaga Sihvola.<br> <br>Helheten tar 30–40 minuter. <br>Rekommenderad ålder: 2–13 månader.<br>Max 10 bebisar + förälder/föreställning. <br>Fritt inträde. <br>Platsreservation: sampofestival.fi</p>",
                "en": "<p>Welcome to the magical world of mellow moods with your toddler – to be, sense and participate.</p><p>Together, we create moments where sounds, tones, objects and instruments combined with movement will lead us from one mood to the next. In a flash, familiar objects can turn into beings that wonder the surrounding world together with the audience.</p><p>The performance doesn't use any spoken language and takes 30–40 minutes in its entirety. <br>Max 10 babies with a parent per performance.<br>Age recommendation: 2–13 months. <br>Seat reservation: sampofestival.fi</p>"
            },
            "name": {
                "fi": "Nukketeatteri Ofelia & co: Hetkiä! – SAMPO Festivaali",
                "sv": "Nukketeatteri Ofelia & co: Stunder!",
                "en": "Nukketeatteri Ofelia & co: Moments!"
            },
            "short_description": {
                "fi": "Tervetuloa vauvan kanssa lempeiden tunnelmien maagiseen maailmaan – olemaan, aistimaan ja osallistumaan.",
                "sv": "Välkommen tillsammans med din bebis in i den magiska världen av mjuka stämningar – stig in för att vara, känna och delta.",
                "en": "Welcome to the magical world of mellow moods with your toddler – to be, sense and participate."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60189/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60188",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4094,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:25.538024Z",
                    "last_modified_time": "2023-09-07T14:20:25.538049Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734135.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4094/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:25.383800Z",
            "last_modified_time": "2023-10-26T20:13:20.943489Z",
            "date_published": null,
            "start_time": "2023-08-27T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/607348B4146A2A09BE21FCE5A657AAEC/Nukketeatteri_Ofelia_co_Hetkia_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/607348B4146A2A09BE21FCE5A657AAEC/Nukketeatteri_Ofelia_co_Stunder_",
                "en": "http://www.annantalo.fi/en/events/event/607348B4146A2A09BE21FCE5A657AAEC/Nukketeatteri_Ofelia_co_Moments_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa vauvan kanssa lempeiden tunnelmien maagiseen maailmaan – olemaan, aistimaan ja osallistumaan.</p><p>Luomme yhdessä hetkiä, joissa äänet, sävelet, esineet ja soittimet yhdistettynä liikkeeseen johdattelevat tunnelmasta toiseen. Tutut esineet muuttuvat hetkessä olennoiksi, jotka ihmettelevät yhdessä yleisön kanssa ympärillä olevaa maailmaa.</p><p>Toteutuksessa mukana nukketeatteritaiteilijat Anne Lihavainen ja Milla Risku sekä muusikko Saaga Sihvola.</p><p>Kesto: 30–40 min<br>Ikäsuositus: 2–13 kk<br>Maks. 10 vauva + vanhempi -paria per esitys<br>Vapaa pääsy <br>Paikanvaraus: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 13 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>Välkommen tillsammans med din bebis in i den magiska världen av mjuka stämningar – stig in för att vara, känna och delta.</p><p>Tillsammans skapar vi stunder där ljud, melodier, föremål och instrument, kombinerat med rörelse leder oss från en stämning till en annan. Bekanta föremål kan plötsligt förvandlas till varelser som tillsammans med publiken förundras över världen runt omkring oss. Föreställningen är ordlös.</p><p>För förverkligandet står dockteaterkonstnärerna Anne Lihavainen och Milla Risku tillsammans med en musiker Saaga Sihvola.<br> <br>Helheten tar 30–40 minuter. <br>Rekommenderad ålder: 2–13 månader.<br>Max 10 bebisar + förälder/föreställning. <br>Fritt inträde. <br>Platsreservation: sampofestival.fi</p>",
                "en": "<p>Welcome to the magical world of mellow moods with your toddler – to be, sense and participate.</p><p>Together, we create moments where sounds, tones, objects and instruments combined with movement will lead us from one mood to the next. In a flash, familiar objects can turn into beings that wonder the surrounding world together with the audience.</p><p>The performance doesn't use any spoken language and takes 30–40 minutes in its entirety. <br>Max 10 babies with a parent per performance.<br>Age recommendation: 2–13 months. <br>Seat reservation: sampofestival.fi</p>"
            },
            "name": {
                "fi": "Nukketeatteri Ofelia & co: Hetkiä! – SAMPO Festivaali",
                "sv": "Nukketeatteri Ofelia & co: Stunder!",
                "en": "Nukketeatteri Ofelia & co: Moments!"
            },
            "short_description": {
                "fi": "Tervetuloa vauvan kanssa lempeiden tunnelmien maagiseen maailmaan – olemaan, aistimaan ja osallistumaan.",
                "sv": "Välkommen tillsammans med din bebis in i den magiska världen av mjuka stämningar – stig in för att vara, känna och delta.",
                "en": "Welcome to the magical world of mellow moods with your toddler – to be, sense and participate."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60188/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60183",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "16 €",
                        "sv": "16 €",
                        "en": "16 €"
                    },
                    "info_url": {
                        "fi": "https://sampofestival.fi/",
                        "sv": "https://sampofestival.fi/",
                        "en": "https://sampofestival.fi/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4060,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:03.538673Z",
                    "last_modified_time": "2023-09-07T14:20:03.538704Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734124.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4060/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:03.112892Z",
            "last_modified_time": "2023-10-26T20:13:20.881497Z",
            "date_published": null,
            "start_time": "2023-08-23T10:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/037A89AF67183C34DF790F122F88B221/Studio_DAM_ZA_J_ty_a_to_Mina_sina_ja_tuo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/037A89AF67183C34DF790F122F88B221/Studio_DAM_ZA_J_ty_a_to_Jag_du_och_det",
                "en": "http://www.annantalo.fi/en/events/event/037A89AF67183C34DF790F122F88B221/Studio_DAM_ZA_J_ty_a_to_Me_You_and_That"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Abstrakti kertomus maailman pyöreydestä lapsille.</p><p>Maailma on pyöreä, maailma pyörii. Tule mukaan pyörimään! Lähdetään seikkailulle galaksien halki yhdessä kosmonauttien kanssa. Vierailemme hehkuvalla planeetalla, kolisevalla planeetalla tai pehmoleluista tehdyllä planeetalla! Tanssijat vievät pikkuyleisön äärettömyyteen ja sitäkin kauemmas.</p><p>Esitys tarjoaa lapsille ensikosketuksen teatteriin ottaen huomioon heidän tarpeensa ja tutustuttaen heidät hienovaraisesti liikkeiden, äänien ja kosketusten maailmaan. Esityksessä yhdistyvät tanssi, akrobatia ja aistileikit, ja se sopii 10 kuukauden ikäisistä 3 vuoden ikäisille lapsille ja heidän vanhemmilleen.</p><p>Ohjaus: Karolína Křížková<br>Musiikki: Jůlie Lupáčová<br>Lavastus: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 10 kk – 3 vuotta, vanhempien kanssa <br>Liput: 16 €, tiedustelut ja lipunmyynti: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 12 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>En abstrakt berättelse för barn som handlar om jordens rundhet.</p><p>Jorden är rund, jorden snurrar. Häng med och snurra du också! Följ med kosmonauterna på en äventyrlig resa genom galaxerna. Vi besöker den glödande planeten, den rasslande planeten eller en planet som består av mjuka leksaker! Dansarna tar de yngsta i publiken med sig till oändligheten och vidare.</p><p>Föreställningen låter barnen uppleva teater för första gången – den respekterar deras behov och presenterar dem på ett försiktigt sätt för världen av rörelser, ljud och beröring. Den kombinerar dans, akrobatik och lek med sinnena. Föreställningen lämpar sig för barn från tio månader till tre år samt deras föräldrar.</p><p>Regi: Karolína Křížková<br>Musik: Jůlie Lupáčová<br>Scenografi: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Ländg: 40 mins<br>Åldersrekommendation: 10 månad – 3 år, med föreldrar  <br>Biljetter: 16 €, sampofestival.fi</p>",
                "en": "<p>An abstract narration about the roundness of the world for the little ones.</p><p>The world is round, the world spins. Come and spin too! Let's go on an adventurous journey through the galaxies together with the cosmonauts. We will visit the glowing planet, rattling planet or a planet made of soft toys! The dancers will take the smallest audience to infinity and further on.<br> <br>The performance offers children their first contact with the theatre – it respects their needs and sensitively introduces them to the world of movements, sounds and touches. It combines dance, acrobatics and sensory play and it is suitable for children from 10 months to 3 years and their parents.</p><p>Director: Karolína Křížková<br>Music: Jůlie Lupáčová<br>Scenography: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Duration: 40 mins<br>Age recommendation: 10 months – 3 years and their parents<br>Tickets: 16 €, sampofestival.fi</p>"
            },
            "name": {
                "fi": "Studio DAMÚZA: Já, ty a to – Minä, sinä ja tuo – SAMPO Festivaali",
                "sv": "Studio DAMÚZA: Já, ty a to – Jag, du och det – SAMPO Festival",
                "en": "Studio DAMÚZA: Já, ty a to – Me, You and That – SAMPO Festival"
            },
            "short_description": {
                "fi": "Abstrakti kertomus maailman pyöreydestä lapsille.",
                "sv": "En abstrakt berättelse för barn som handlar om jordens rundhet.",
                "en": "An abstract narration about the roundness of the world for the little ones."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60183/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60182",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "16 €",
                        "sv": "16 €",
                        "en": "16 €"
                    },
                    "info_url": {
                        "fi": "https://sampofestival.fi/",
                        "sv": "https://sampofestival.fi/",
                        "en": "https://sampofestival.fi/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4058,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:20:01.659240Z",
                    "last_modified_time": "2023-09-07T14:20:01.659262Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734123.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4058/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:20:01.508900Z",
            "last_modified_time": "2023-10-26T20:13:20.817758Z",
            "date_published": null,
            "start_time": "2023-08-23T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3A316D42F6426DA311E3A4EA7B18A066/Studio_DAM_ZA_J_ty_a_to_Mina_sina_ja_tuo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3A316D42F6426DA311E3A4EA7B18A066/Studio_DAM_ZA_J_ty_a_to_Jag_du_och_det",
                "en": "http://www.annantalo.fi/en/events/event/3A316D42F6426DA311E3A4EA7B18A066/Studio_DAM_ZA_J_ty_a_to_Me_You_and_That"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Abstrakti kertomus maailman pyöreydestä lapsille.</p><p>Maailma on pyöreä, maailma pyörii. Tule mukaan pyörimään! Lähdetään seikkailulle galaksien halki yhdessä kosmonauttien kanssa. Vierailemme hehkuvalla planeetalla, kolisevalla planeetalla tai pehmoleluista tehdyllä planeetalla! Tanssijat vievät pikkuyleisön äärettömyyteen ja sitäkin kauemmas.</p><p>Esitys tarjoaa lapsille ensikosketuksen teatteriin ottaen huomioon heidän tarpeensa ja tutustuttaen heidät hienovaraisesti liikkeiden, äänien ja kosketusten maailmaan. Esityksessä yhdistyvät tanssi, akrobatia ja aistileikit, ja se sopii 10 kuukauden ikäisistä 3 vuoden ikäisille lapsille ja heidän vanhemmilleen.</p><p>Ohjaus: Karolína Křížková<br>Musiikki: Jůlie Lupáčová<br>Lavastus: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 10 kk – 3 vuotta, vanhempien kanssa <br>Liput: 16 €, tiedustelut ja lipunmyynti: sampofestival.fi</p><p><b>SAMPO Festivaali</b>, Nukketeatteri Sampon järjestämä kansainvälinen nukketeatteritapahtuma, järjestetään 22.–27.8.2023. Annantalo on mukana toteuttamassa festivaalia ja ohjelmassamme on kolme esitystä: Perheen pienimmille suunnatut <i>Me, You, That</i> keskiviikkona 23.8., <i>Moments!</i> sunnuntaina 27.8. sekä alakouluikäisille suunnattu <i>Somewhere else</i> perjantaina 25.8. ja lauantaina 26.8. Kaikki Annantalolla esiintyvät ryhmät, samoin kuin Nukketeatteri Sampo, ovat Annantalon kumppaneita small size -verkostossa.</p><p>Esitysten lisäksi Annantalolla järjestetään <b>Kateryna Lukianenkon</b> projektiin <i>Sixth Sense</i> liittyvä mestarikurssi 22.–24.8. Perjantaina 25.8. klo 12 järjestetään nukketeatterin SAMPOsium Annantalon auditoriossa. Lisätiedot ja lipunmyynti: sampofestival.fi.</p>",
                "sv": "<p>En abstrakt berättelse för barn som handlar om jordens rundhet.</p><p>Jorden är rund, jorden snurrar. Häng med och snurra du också! Följ med kosmonauterna på en äventyrlig resa genom galaxerna. Vi besöker den glödande planeten, den rasslande planeten eller en planet som består av mjuka leksaker! Dansarna tar de yngsta i publiken med sig till oändligheten och vidare.</p><p>Föreställningen låter barnen uppleva teater för första gången – den respekterar deras behov och presenterar dem på ett försiktigt sätt för världen av rörelser, ljud och beröring. Den kombinerar dans, akrobatik och lek med sinnena. Föreställningen lämpar sig för barn från tio månader till tre år samt deras föräldrar.</p><p>Regi: Karolína Křížková<br>Musik: Jůlie Lupáčová<br>Scenografi: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Ländg: 40 mins<br>Åldersrekommendation: 10 månad – 3 år, med föreldrar  <br>Biljetter: 16 €, sampofestival.fi</p>",
                "en": "<p>An abstract narration about the roundness of the world for the little ones.</p><p>The world is round, the world spins. Come and spin too! Let's go on an adventurous journey through the galaxies together with the cosmonauts. We will visit the glowing planet, rattling planet or a planet made of soft toys! The dancers will take the smallest audience to infinity and further on.<br> <br>The performance offers children their first contact with the theatre – it respects their needs and sensitively introduces them to the world of movements, sounds and touches. It combines dance, acrobatics and sensory play and it is suitable for children from 10 months to 3 years and their parents.</p><p>Director: Karolína Křížková<br>Music: Jůlie Lupáčová<br>Scenography: Karolína Jansová<br>Cast: Andrej Lyga, Karolína Křížková</p><p>Duration: 40 mins<br>Age recommendation: 10 months – 3 years and their parents<br>Tickets: 16 €, sampofestival.fi</p>"
            },
            "name": {
                "fi": "Studio DAMÚZA: Já, ty a to – Minä, sinä ja tuo – SAMPO Festivaali",
                "sv": "Studio DAMÚZA: Já, ty a to – Jag, du och det – SAMPO Festival",
                "en": "Studio DAMÚZA: Já, ty a to – Me, You and That – SAMPO Festival"
            },
            "short_description": {
                "fi": "Abstrakti kertomus maailman pyöreydestä lapsille.",
                "sv": "En abstrakt berättelse för barn som handlar om jordens rundhet.",
                "en": "An abstract narration about the roundness of the world for the little ones."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264865",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8277/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10847/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2785,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:00.092736Z",
                    "last_modified_time": "2023-08-15T15:32:00.092758Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{E4793FF8-7DE5-456D-9C7F-A341DF7ADBA1}/104756",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2785/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:51:19.037527Z",
            "last_modified_time": "2023-10-26T16:24:42.699621Z",
            "date_published": "2023-08-07T12:08:00Z",
            "start_time": "2023-10-26T15:00:00Z",
            "end_time": "2023-10-26T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Suutarilan kirjaston lukupiirissä luetaan kiinnostavia kirjoja ja jutellaan niistä teekupin äärellä. Piiri kokoontuu kerran kuussa torstaisin klo 18-19.30 kirjaston monitoimitilassa. Lukupiiriä vetää Maija Sippo. Kirjoja on varattuna kirjastossa lukupiiriläisille.</p> <p>28.9. Jeannette Winterson: Majakanvartija<br> 26.10. Kari Hotakainen: Opetuslapsi<br> 23.11. Miranda July: Avokämmen<br> 14.12. Eeva Kilpi: Animalia: runoja </p> </p> </p> </p> <p> Kuva:Pixabay/ josealbafotos </p> </p>"
            },
            "name": {
                "fi": "Syyskauden lukupiiri"
            },
            "short_description": {
                "fi": "Suutarilan kirjaston lukupiirissä luetaan kiinnostavia kirjoja ja jutellaan niistä teekupin äärellä."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264865/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268713",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4876,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-21T14:41:02.063966Z",
                    "last_modified_time": "2023-09-21T14:41:02.063986Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{1D2DF3B1-95AF-4661-93DE-AE08F5E8E7D1}/106096",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4876/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-21T13:32:56.247381Z",
            "last_modified_time": "2023-10-26T16:22:56.444388Z",
            "date_published": "2023-09-21T11:58:00Z",
            "start_time": "2023-09-25T05:00:00Z",
            "end_time": "2023-09-25T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>",
                "en": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>"
            },
            "name": {
                "fi": "Adventures in White Privilege",
                "en": "Adventures in White Privilege"
            },
            "short_description": {
                "fi": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki.",
                "en": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki."
            },
            "location_extra_info": {
                "fi": "1st floor info",
                "en": "1st floor info"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268713/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268312",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4788,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-15T12:34:37.254179Z",
                    "last_modified_time": "2023-09-15T12:34:37.254209Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9A4915E1-46BA-4D27-BC87-A8D7E7C10670}/105886",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4788/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-09-15T12:39:05.238721Z",
            "last_modified_time": "2023-10-26T15:23:01.268396Z",
            "date_published": "2023-09-15T11:03:00Z",
            "start_time": "2023-09-25T05:00:00Z",
            "end_time": "2023-09-25T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023.</p><p>\"Värikäs maailmani -taidenäyttelyssä tarkastellaan luonnon kauneutta ja ihmisen yhteyttä siihen. Teosten abstraktisuus nostattaa maalaukset uudelle tasolle henkisesti, ja jokainen voi tulkita teoksia omasta värikkäästä maailmastaan käsin.\"</p><p> <em>Kuva: Sini-Maaria Vänttinen</em> </p>"
            },
            "name": {
                "fi": "Värikäs maailmani -taidenäyttely 16.9.-3.10.23"
            },
            "short_description": {
                "fi": "Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268312/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:263012",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2748,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:31:03.396255Z",
                    "last_modified_time": "2023-08-15T15:31:03.396300Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{ADF985DF-BC8B-4F5B-9484-E3A7D66E4F29}/99391",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2748/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-08-15T15:39:08.101945Z",
            "last_modified_time": "2023-10-26T15:23:01.168250Z",
            "date_published": "2023-06-30T21:00:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<h3>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.</h3><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p><p>Huom! Ryhmä kokoontuu 2. kerroksen tapahtumahuoneessa 20.11.</p><p>******<br> Valokuva: Juhani Räty/Vantaan kaupunki</p><p>Logot: Vantaan kaupunki, Helmet-kirjasto, Luetaan yhdessä -verkosto</p>",
                "en": "<h3>Would you like to learn Finnish? Let’s Read Together -group gathers once a week for about two hours.</h3><p>The group practices reading, writing, listening and talking in Finnish.</p><p>Teachers of the groups are volunteers.</p><p>Studying is free.</p><p>You can take your children with you.</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).</p><p>Please note that on 20th of November group exceptionally gathers on the second floor.</p><p>******</p><p>Photo: Juhani Räty/City of Vantaa</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p>"
            },
            "name": {
                "fi": "Suomen kielen opetusryhmä",
                "en": "Finnish language study group"
            },
            "short_description": {
                "fi": "Haluatko oppia suomea? Tule suomen kielen opintoryhmään maanantaisin klo 18!",
                "en": "Do you want to learn Finnish? Let’s Read Together -group gathers on Mondays."
            },
            "location_extra_info": {
                "fi": "Kerhotila, 3. kerros",
                "en": "Kerhotila, 3rd floor"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263012/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:261796",
            "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/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3379,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-17T10:21:40.078708Z",
                    "last_modified_time": "2024-02-06T13:38:05.450982Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{2B62A37D-AC54-4E78-A4CC-3489080C8024}/105010",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3379/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:39:07.431891Z",
            "last_modified_time": "2023-10-26T15:23:01.072637Z",
            "date_published": "2023-02-16T07:39:00Z",
            "start_time": "2023-09-25T15:30:00Z",
            "end_time": "2023-09-25T16:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Joogaa aloittelijoille maanantai-iltaisin klo 18.30 - 19.30</p><p>elokuun 21. päivästä lähtien.</p><p>Jooga voi:</p><p>Parantaa mielen keskittymiskykyä</p><p>Lisätä joustavuutta ja notkeutta</p><p>Poistaa fyysistä ja henkistä jännitystä</p><p>Elvyttää energia-tasoa</p><p>Parantaa terveyttä</p><p>Jooga-tunti sisältää:</p><p>Lämmittely-harjoituksia</p><p>Joogan perus-asentoja</p><p>Johdatuksen meditaatioon</p><p>Ota mukaasi oma jooga-mattosi.</p><p>Tule pukeutuneena mukaviin vaatteisiin.</p><p>Kokenut ohjaaja Lynda Bott (sairaanhoitaja ja jooga-hoitojen terapeutti)</p><p>Tuntu on ilmainen palveluna paikallisille; <a href=\"http://www.anandamarga.fi\">www.anandamarga.fi</a></p><p>Lisätietoja saat osoitteesta: lyndabott@hotmail.com….</p><p>Tunti on englanninkielinen suomenkielisellä käännöksellä.</p><br><br>",
                "en": "<p>Yoga for beginners Monday evenings 18.30 to 19.30</p><p>The blue room, Entresse library starting 21st August.</p><p>Improve concentration of mind</p><p>Enhance flexibility</p><p>Remove physical and mental tension</p><p>Revitalize your energy</p><p>Improve health</p><p>It includes:</p><p>Warm up exercises</p><p>Basic yoga posture</p><p>Introduction to meditation</p><p>Bring your own yoga mat</p><p>Wear comfortable clothing</p><p>An experienced instructor, Lynda Bott (medical nurse, yogic treatments therapist)</p><p>The class is free as a service to the local community. (Ananda Marga Yoga association Finland <a href=\"http://www.anandamarga.fi\">www.anandamarga.fi</a>)</p><p>For more information contact <a href=\"mailto:lyndabott@hotmail.com\">lyndabott@hotmail.com</a></p><p>The class will be in English with Finnish translation.</p><br><br>"
            },
            "name": {
                "fi": "Spring into Yoga",
                "en": "Spring into Yoga"
            },
            "short_description": {
                "fi": "Ananda Marga community invites everyone to participate in free yoga practice in English and Finnish. Welcome!",
                "en": "Ananda Marga community invites everyone to participate in free yoga practice in English and Finnish. Welcome!"
            },
            "location_extra_info": {
                "fi": "Blue Room",
                "en": "Blue Room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261796/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268657",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8178/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4872,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-21T13:45:01.941366Z",
                    "last_modified_time": "2023-09-21T13:45:01.941384Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{7EE2B61D-0418-4775-8524-EDD885859E92}/106089",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4872/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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:p6165/?format=api"
                }
            ],
            "created_time": "2023-09-21T13:45:00.750319Z",
            "last_modified_time": "2023-10-26T13:22:57.482636Z",
            "date_published": "2023-09-21T11:40:00Z",
            "start_time": "2023-10-26T13:30:00Z",
            "end_time": "2023-10-26T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Sabatuulen matka on lapsille suunnattu, koko perheen monikulttuurinen ja vuorovaikutuksellinen musiikkiesitys, jossa Suomi ja Lähi-itä kohtaavat.<br><br> Suomalaisesta konserttikanteleesta ja arabialaisesta oudista sekä laulusta koostuva Duo SaBa on säveltänyt musiikkia, joka kuljettaa kuulijat Jordaniasta Suomeen kiehtovien sävyjen ja sävelien kautta. Tämä ainutlaatuinen kokoonpano yhdistää musiikissaan tarinoita ja elementtejä molemmista kulttuureista, joista kuulijat voivat kenties oppia uutta tai löytää tuttua tarttumapintaa. <br><br> Esityksessä käytetään suomen ja arabian kieltä.<br> Esityksen kesto on n. 30 min.<br> Tilasuuteen on vapaa pääsy. <br><br> Duo SaBa eli Juulia Salo ja Nemat Battah ovat musiikin ammattilaisia, pedagogeja ja monipuolisia taiteilijoita pääkaupunkiseudulta.</p><p>Esitys on siirretty alkuperäisestä ajankohdasta pe 13.10. torstaihin 26.10. sairastapauksen vuoksi. </p><p>Lisätietoja: <br><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.juuliasalo.com%2F%3Ffbclid%3DIwAR2lOytejT2P2FKsVzEXk9IRWkbXntP1U_Spf44hdTQ68CTLS3cOycCsBVM&amp;data=05%7C01%7Csinivuokko.koivula%40hel.fi%7Cbbb9296a112d4f241a7008dbb37f3fa9%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638301131342446141%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=e%2ByWGloq%2BCY5X6MqdAzgOfOYqntJrrK1aEIlJV4vri0%3D&amp;reserved=0\">https://www.juuliasalo.com</a> <br><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fjuulia.salo%2F%3Ffbclid%3DIwAR3sCw_4uDM0jFWRX9Pv4grYPmpx50hDClHnjNOnMkBpJRe6VfyVPCm_D5o&amp;data=05%7C01%7Csinivuokko.koivula%40hel.fi%7Cbbb9296a112d4f241a7008dbb37f3fa9%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638301131342446141%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=HQ80XiPJueLhp88yP%2Bt84B3rGxJo7i%2BLEDTuReaVkOw%3D&amp;reserved=0\">https://www.instagram.com/juulia.salo/</a><br><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fnemat.battah%2F%3Ffbclid%3DIwAR3BVhpS-YXdoKEEct-_AhOLSR7FuuscHUNajE1XrOEyH4rb-gf357HXqUk&amp;data=05%7C01%7Csinivuokko.koivula%40hel.fi%7Cbbb9296a112d4f241a7008dbb37f3fa9%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638301131342446141%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=lT4mU1zaMCn9zbkY0hXoDucqUwuMWmLguWjQxa4Iyaw%3D&amp;reserved=0\">https://www.instagram.com/nemat.battah/</a></p><p> <br> <br> Lämpimästi tervetuloa!</p><p> <br> <br> <br> <br> Kuva: Tuomas Tenkanen</p>"
            },
            "name": {
                "fi": "Sabatuulen matka"
            },
            "short_description": {
                "fi": "Suomalaisesta konserttikanteleesta ja arabialaisesta oudista sekä laulusta koostuva Duo SaBa esiintyy Kontulan kirjastossa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268657/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267853",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:14432/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3912,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-06T14:26:43.433822Z",
                    "last_modified_time": "2023-09-06T14:26:43.433841Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9F8D41FB-B73F-4C21-A370-18D13C096778}/105656",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-06T14:29:34.183048Z",
            "last_modified_time": "2023-10-26T13:21:41.402278Z",
            "date_published": "2023-09-06T12:55:44.973000Z",
            "start_time": "2023-09-25T16:00:00Z",
            "end_time": "2023-09-25T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Maanantai-iltaisin lukukoira Emil ja hänen omistajansa Raisa käyvät lastenosastolla lukemassa iltasatuja. Tai no, Raisa lukee ja Emil kuuntelee. Kaikki lapset ja perheet ovat tervetulleita mukaan kuuntelemaan. </p><p>Satuja luetaan kirjaston satuhuoneessa, suomeksi ja/tai ruotsiksi tarpeen mukaan. </p>",
                "sv": "<p>På måndagskvällar kommer läshunden Emil och hans matte Raisa till barnavdelningen och läser kvällssagor. Eller nåja, Raisa läser och Emil lyssnar. Alla barn och familjer är välkomna att komma med och lyssna. </p><p>Sagorna läses i bibbans sagorum, på svenska och/eller finska enligt behov. </p>"
            },
            "name": {
                "fi": "Iltasatu lukukoira Emilin kanssa",
                "sv": "Kvällssaga med läshunden Emil"
            },
            "short_description": {
                "fi": "Maanantai-iltaisin lukukoira Emil ja hänen omistajansa Raisa käyvät lastenosastolla lukemassa iltasatuja.",
                "sv": "På måndagskvällar kommer läshunden Emil och hans matte Raisa till barnavdelningen och läser kvällssagor."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267853/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265977",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8288/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3545,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-23T16:28:44.667491Z",
                    "last_modified_time": "2023-08-23T16:28:44.667512Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{ADE79EBC-D0FD-4405-B70E-D7B1221D9B58}/105058",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3545/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-23T16:28:43.182523Z",
            "last_modified_time": "2023-10-26T13:21:41.341808Z",
            "date_published": "2023-08-23T15:05:00.260000Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kirjailija Laura Finska saapuu vierailulle Tapulikaupungin kirjastoon maanantaina 25.9. klo 18. Finska kertoo tilaisuudessa esikoisteoksestaan <em>Muut esille tulevat asiat</em>.<br><br> Laura Finskan esikoisromaani kertoo kolmesta nuoresta ja Helsingin kesästä täynnä väriä, melua ja kaaosta. Matilda yrittää opiskella lääkiksessä. Hän on nainen, joka kärsii neurooseista eikä koske yleisessä vessassa pintoihin ilman suojaavaa käsipyyhettä. Matildan on/off-poikaystävä Luka ajaa ratikkaa. Hän on mies, jonka elämä ei tahdo pysyä kiskoilla. Lukan pikkuveli Rafael koettaa selvitä sekoilevan veljen ja maanisdepressiivisen äidin välissä.<br><br> Laura Finska (s. 1996) asuu Tampereella koiransa Mozartin kanssa. Hän ei ryhtynyt, vaan syntyi kirjailijaksi. Hän kirjoittaa, kunnes verisuonet katkeilevat silmistä, ja pyöräilee vispipuuron värisellä Jopolla. Pienenä Laura Finska kuvitteli, että hiukset voivat kasvaa toiseen maahan saakka.<br><br> Tilaisuus on kaikille avoin! Tervetuloa!</p><p> <em>Kuva: Sami Reivinen / KLIK</em> </p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Laura Finska"
            },
            "short_description": {
                "fi": "Esikoiskirjailija Laura Finska vierailee Tapulissa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265977/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262504",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10829/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2747,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:31:01.770590Z",
                    "last_modified_time": "2024-02-06T13:39:05.937573Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{417E1B7A-E326-483F-A53D-07A2527A3601}/94790",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2747/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:39:07.092027Z",
            "last_modified_time": "2023-10-26T13:21:41.291982Z",
            "date_published": "2023-06-28T11:20:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Dekkarilukupiiri kokoontuu kerran kuukaudessa Oulunkylän kirjastossa. Jos olet intohimoinen dekkareiden lukija, tervetuloa mukaan!</p><p>Syksyn tapaamiskerrat:</p><p>Ma 28.8. Mick Herron: Luupäät<br> Ma 25.9. Tove Alsterdal: Juurakko<br> Ma 30.10. Fredrik Backman: Ahdistunutta porukkaa<br> Ma 27.11. Cara Hunter: Jäljettömiin<br> Ma 18.12. William Burroughs ja Jack Kerouac: Ja virtahevot kiehuivat altaissaan</p><p> <br> Seuraavaksi tapaamiskerraksi luettavan kirjan voi lainata Oulunkylän kirjaston asiakaspalvelupisteestä kuukautta ennen lukupiiriä. Lukupiiriin mahtuu 12 osallistujaa.</p><p> <br> Lisätiedot ja ilmoittautumiset: antti.lehtovirta(at)hel.fi.</p><p>Lämpimästi tervetuloa!<br> </p>"
            },
            "name": {
                "fi": "Dekkarilukupiiri"
            },
            "short_description": {
                "fi": "Tervetuloa mukaan dekkarilukupiiriin!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262504/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262278",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2812,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:29.107456Z",
                    "last_modified_time": "2024-02-06T13:38:05.947859Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{8CCB6D8C-1735-4C5D-B8ED-38CCAB24A603}/101294",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:39:06.736330Z",
            "last_modified_time": "2023-10-26T13:21:41.238463Z",
            "date_published": "2023-06-27T12:29:00Z",
            "start_time": "2023-09-25T15:00:00Z",
            "end_time": "2023-09-25T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Är det länge sedan du använt din svenska? Skulle du vilja öva dig i trevligt sällskap? Kom med till vårt svenska språkkafé och aktivera din svenska.</p><p>Språkkaféet leds av bibliotekets egen frivilligarbetare.</p><p>Onko ruotsin kielen taitosi ruosteessa ja haluaisit harjoitella puhumista? Tule rohkeasti mukaan herättelemään kielitaitoasi ruotsin kielen keskustelukerhoon. </p><p>Kerhoa vetää kirjaston oma vapaaehtoinen. </p>"
            },
            "name": {
                "fi": "Vardagssvenska - Svenskt språkcafé"
            },
            "short_description": {
                "fi": "Haluatko herätellä ruotsin kielen taitoasi yhdessä muiden kanssa? Tule mukaan ruotsin keskustelukerhoon! Kom med till vårt svenska språkkafé och aktivera din svenska."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262278/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268381",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45317/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4805,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-18T13:30:09.982812Z",
                    "last_modified_time": "2023-09-18T13:30:09.982830Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{7E83E6F0-EA4E-4C38-801C-FB0BF94748AF}/105938",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4805/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-18T13:30:09.675212Z",
            "last_modified_time": "2023-10-26T13:21:41.184450Z",
            "date_published": "2023-09-18T12:20:24.773000Z",
            "start_time": "2023-09-25T14:30:00Z",
            "end_time": "2023-09-25T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Miten Jätkäsaaresta tulisi entistä parempi paikka asua? Suunnitellaan yhdessä tulevaisuuden Jätkäsaarta.</p><p>Työpajassa työskennellään kuvakorttien ja visuaalisen ilmaisun kautta. Työpaja soveltuu lapsiperheille ja 5-12 vuotiaille lapsille.</p><p>Työpajassa tuotettua materiaalia hyödynnetään Jätkäsaareen rakennettavan kiertotalouskorttelin kehittämistyössä.</p><p>Tervetuloa!</p>"
            },
            "name": {
                "fi": "Unelmien Jätkäsaari -työpaja"
            },
            "short_description": {
                "fi": "tapahtuma lapsiperheille"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268381/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}