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

{
    "meta": {
        "count": 26801,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1163&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1161&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:60663",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4193,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:35.930814Z",
                    "last_modified_time": "2023-09-07T14:21:35.930834Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735261.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:21:35.580770Z",
            "last_modified_time": "2023-11-12T21:13:29.890520Z",
            "date_published": null,
            "start_time": "2023-09-13T14:00:00Z",
            "end_time": "2023-09-13T16: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,
            "name": {
                "fi": "Sanapaja / Wordshop",
                "sv": "Sanapaja / Wordshop",
                "en": "Sanapaja / Wordshop"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?",
                "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?",
                "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A4A30BF733340E1C6B4196949F350F2A/Sanapaja_Wordshop_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A4A30BF733340E1C6B4196949F350F2A/Sanapaja_Wordshop_",
                "en": "http://www.vuotalo.fi/en/events/event/A4A30BF733340E1C6B4196949F350F2A/Sanapaja_Wordshop_"
            },
            "description": {
                "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br>  <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii.  <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br>  <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi  <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>",
                "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig.  <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>",
                "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br>  <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60663/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60213",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4192,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:35.356064Z",
                    "last_modified_time": "2023-09-07T14:21:35.356085Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734218.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4192/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:35.208609Z",
            "last_modified_time": "2023-11-12T21:13:29.807760Z",
            "date_published": null,
            "start_time": "2023-09-13T14:00:00Z",
            "end_time": "2023-09-13T16: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,
            "name": {
                "fi": "Tauko! – kiireetön kädentaitojen työpaja – Huovutettu saippua",
                "sv": "Tauko! – verkstad för hantverk utan brådska",
                "en": "Break! – unhurried crafts workshop"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tauko! -taidepajoissa arki rikastuu helposti haltuun otettavilla kädentaidoilla, jotka tarjoavat ideoita kestävämpiin arjen valintoihin ja tekoihin.",
                "sv": "I Tauko!-verkstäderna berikas vardagen med handarbetsfärdigheter som alla lätt kan lära sig och som samtidigt visar vägen mot mer ekologiska val i vardagen.",
                "en": "In Break! crafts workshops, everyday life is enriched with easy-to-learn handicrafts, which also help you to learn how to make more ecological choices in everyday life."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/80431808702751D387EC9AD254C1FE0F/Tauko_kiireeton_kadentaitojen_tyopaja",
                "sv": "http://www.stoa.fi/sv/evenemang/event/80431808702751D387EC9AD254C1FE0F/Tauko_verkstad_for_hantverk_utan_bradska",
                "en": "http://www.stoa.fi/en/events/event/80431808702751D387EC9AD254C1FE0F/Break_unhurried_crafts_workshop"
            },
            "description": {
                "fi": "<p>Tauko! -taidepajoissa arki rikastuu helposti haltuun otettavilla kädentaidoilla, jotka tarjoavat ideoita kestävämpiin arjen valintoihin ja tekoihin.</p><p>Syksyn pajoissa syvennytään työstämään materiaaleja kiireettömästi ja luodaan kauniita käyttöesineitä. Kokeillaan, mihin kaikkeen lampaanvilla taipuu, ja tutkitaan luonnonvärien herkullista maailmaa. Osassa pajoista on mukana vierailevia asiantuntijoita.<br> <br><b>ke 13.9. klo 17-19 Huovutettu saippua </b><br>Märkähuovuttaminen on perinteinen käsityömenetelmä ja mieltä rauhoittava tekniikka. Pajassa huovutetaan oma saippua. Mukana asiantuntijana on tietokirjailija, käsityöopettaja Tiina Mikkelä, joka kertoo villan vaiheista lampolasta huovutushetkeen.</p><p><b>ke 11.10. klo 17-19 Villapaidan uusi elämä</b><br>Villa on suomalaisille arkinen materiaali, tuttu neulotuista villasukista huovutettuihin huopikkaisiin. Pesukoneessa huovutetut kierrätysvillapaidat ja sarkavillapalaset saavat nyt uuden elämän käyttöesineenä. Huovutettu pohja koristellaan huovutusneulalla ja käsin ompelemalla.<br> <br><b>ke 8.11. klo 17-19 Luonnonvärien laboratorio</b><br>Mistä kaikesta luonnonvärit saavat alkunsa? Miten voit tehdä omia värejä kotioloissa? Tutkimme yhdessä lumoavaa luonnonvärien maailmaa. Pajassa keitetään, sekoitetaan, siivilöidään ja lopuksi maalataan itse tehdyillä väreillä.<br> <br><b>ke 13.12. klo 17-19 Kankaan värjäys luonnonväreillä: perinteitä ja uusia tuulia</b><br>Vaate- ja tekstiiliteollisuuden valmistamisprosessit kuormittavat luontoa. Voivatko luonnonvärit tarjota uusia, parempia vaihtoehtoja? Tutustumme luonnon väriaineilla kankaan värjäämiseen ja keskustelemme uusista menetelmistä. Mukana asiantuntijana on käsityönopettaja ja tekstiilitaiteilija Tupu Mentu.</p><p>Ohjaajat: Chloé Mahy-Hulkko ja vierailevat asiantuntijat<br>Paikka: Stoan galleria / terraario<br>Kesto: 120 min per kerta<br>Ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista.<br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>I Tauko!-verkstäderna berikas vardagen med handarbetsfärdigheter som alla lätt kan lära sig och som samtidigt visar vägen mot mer ekologiska val i vardagen.</p><p>I höstens verkstäder fördjupar vi oss i att bearbeta material utan brådska och skapar vackra bruksföremål. Vi prövar vad allt man kan göra av fårull och undersöker naturfärgernas härliga värld. Vid en del av verkstäderna medverkar gästande experter.</p><p><b>ons. 13.9 kl. 17–19 Tovad tvål </b><br>Våttovning är en traditionell handarbetsmetod och en teknik som lugnar sinnet. Vid verkstaden får du tova en egen tvål.</p><p><b>ons. 11.10 kl. 17–19 Ylletröjans nya liv</b><br>Ull är ett vardagsmaterial för finländare, bekant i allt från stickade strumpor till tovade filttofflor. Återvunna ylletröjor som tovas i tvättmaskinen och vadmalsbitar får nu nytt liv som bruksföremål.</p><p><b>ons. 8.11 kl. 17–19 Naturfärgernas laboratorium<br></b>Vi undersöker tillsammans de förtrollande naturfärgernas värld. I verkstaden kokar, blandar, silar och slutligen målar vi med färger som vi själva har gjort.</p><p><b>ons. 13.12 kl. 17–19 Färgning av tyg med naturfärger: traditioner och nya vindar</b><br>Kläd- och textilindustrins tillverkningsprocesser belastar naturen. Kan naturfärger erbjuda nya, bättre alternativ? Med hjälp av naturens färgämnen bekantar vi oss med färgning av tyg och diskuterar nya metoder.</p>",
                "en": "<p>In Break! crafts workshops, everyday life is enriched with easy-to-learn handicrafts, which also help you to learn how to make more ecological choices in everyday life.</p><p>The autumn workshops will immerse you in working with materials in a leisurely way and creating beautiful objects. We will experiment with the many uses of sheep’s wool and explore the delicious world of natural dyes. Some of the workshops will feature guest experts.</p><p><b>Wednesday, 13 September 17.00–19.00 Felted soap </b><br>Wet felting is a traditional craft and a soothing technique. In this workshop, you will felt your own piece of soap.</p><p><b>Wednesday, 11 October 17.00–19.00 A new life of a jumper</b><br>Wool is an everyday material for Finns, familiar from knitted woollen socks to woollen felt boots. Felted in a washing machine, recycled jumpers and mittens will now get a new lease of life as articles of daily use.</p><p><b>Wednesday, 8 November 17.00–19.00 Laboratory of natural dyes</b><br>We will explore the enchanting world of natural dyes together. In the workshop, we will boil, mix, strain and finally paint with the dyes we have made ourselves.</p><p><b>Wed, 13 December 17.00–19.00 Fabric dyeing with natural dyes: traditions and new trends</b><br>The manufacturing processes in the clothing and textile industries are a burden on the environment. Can natural dyes offer new, better alternatives? Through the use of natural dyes, we will explore dyeing fabrics and discuss new methods.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60213/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60014",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4191,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:34.970289Z",
                    "last_modified_time": "2023-09-07T14:21:34.970346Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731457.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4191/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:34.804755Z",
            "last_modified_time": "2023-11-12T21:13:29.719371Z",
            "date_published": null,
            "start_time": "2023-09-13T14:00:00Z",
            "end_time": "2023-09-13T15:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Arkkitehtuurikävely: 1970-luvun Vuosaari",
                "en": "Architecture Walking Tour: 1970s Vuosaari"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kävelykierroksella tutustutaan Vuosaaren arkkitehtuuriin ja lähiöön 1970-luvun näkökulmasta.",
                "en": "This walking tour offers a look at Vuosaari's architecture and neighborhood from the perspective of the 1970s."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/89F7F8681A8D453D9B5376B2FFFEC690/Arkkitehtuurikavely_1970-luvun_Vuosaari_",
                "en": "http://www.vuotalo.fi/en/events/event/89F7F8681A8D453D9B5376B2FFFEC690/Architecture_Walking_Tour_1970s_Vuosaari_"
            },
            "description": {
                "fi": "<p>Kävelykierroksella tutustutaan Vuosaaren arkkitehtuuriin ja lähiöön 1970-luvun näkökulmasta.</p><p>Vaikka Vuosaari onkin melko tyypillinen 1960-luvun metsäkaupunki, alueella on myös kiinnostavia esimerkkejä 1970-luvun arkkitehtuurista sekä kaupunkisuunnittelun muuttuvista ihanteista. Lähiöiden teemaa käsittelevä kierros pohtii myös, miten aikakauden yhteiskunnalliset muutokset säilyvät arkkitehtuurissa ja toisaalta vaikuttavat nykyaikaan.</p><p>Kierros alkaa Vuotalon pääovilta (Mosaiikkitori 2, Helsinki) ja päättyy viimeiseen kohteeseen osoitteessa Merikorttikuja 6, Helsinki. Kesto on noin 1 tunti 15 minuuttia.</p><p>Arkkitehtuurimuseossa syvennytään tänä kesänä 1970-luvun arkkitehtuuriin: vuoden päänäyttely on Betoniunelmia – ja muita näkymiä 1970-luvun arkkitehtuuriin, joka on auki 17.5.2023–15.10.2023 Arkkitehtuurimuseossa.</p><p><b>Aikataulu </b><br>Tiistai 6.6.2023 | klo 15.00 <br>Kieli: englanti | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 6.6.2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu)</p><p>Maanantai 12.6.2023 | Helsinki-päivä 2023 | klo 15.00 <br>Kieli: englanti | Osallistuminen: maksuton</p><p>Maanantai 12.6.2023 | Helsinki-päivä 2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: maksuton</p><p>Tiistai 4.7.2023 | klo 15.00 <br>Kieli: englanti | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 4.7.2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 1.8.2023 | klo 15.00 <br>Kieli: englanti | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 1.8.2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 12.9.2023 | Helsinki Design Week | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Keskiviikko 13.9.2023 | Helsinki Design Week | klo 17.00 <br>Kieli: englanti| Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 10.10.2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu)</p><p><b>Osallistuminen</b><br>Varaa paikkasi opastuksille tällä lomakkeella: https://q.surveypal.com/Arkkitehtuurikavely-1970-luvun-Vuosaari</p><p>Yhdelle arkkitehtuurikävelylle otetaan yhteensä 25 osallistujaa. Paikat täytetään varausjärjestyksessä. Maksullisilla kierroksilla opastusmaksu kerätään kierroksen alkamispaikalla etukäteen (15 minuuttia ennen kävelyn alkua) kannettavalla korttimaksupäätteellä. Käteinen ei käy maksuvälineenä. Tulethan paikalle ajoissa ennen kierroksen alkamisaikaa – kierros alkaa tasalta. Huomioithan, että varaus on sitova ja henkilökohtainen: yhdellä lomakkeella voi tehdä ainoastaan yhden varauksen yhdelle henkilölle. Lomakkeen onnistunut lähettäminen on merkki onnistuneesta varauksesta. Osallistumisohjeet toimitetaan osallistujille sähköpostitse noin vuorokautta ennen teemaopastusta. Jos joudut perumaan osallistumisesi, ota yhteyttä: kaura.raudaskoski@mfa.fi</p><p><b>Saavutettavuus</b><br>Kierros tapahtuu ulkona. Opas käyttää mikrofonia kuulemisen helpottamiseksi.</p><p>Reitin pituus n. 2 km yhteen suuntaan. Reitti päättyy viimeiseen kohteeseen osoitteessa Merikorttikuja 6, josta on n. 1,8 kilometrin kävelymatka takaisin metroasemalle.</p><p>Kävelykierroksen reitti on päällystettyä tietä. Tienylityspaikoilla jalkakäytävän reunat ovat madallettuja. Reitin varrella on muutama loiva tai melko melko jyrkkä rinne. Reitillä ei ole portaita. Kohteissa, joihin kierroksella pysähdytään, ei ole istumapaikkoja. Oman retkituolin voi halutessaan ottaa mukaan.</p><p>Lähin julkinen WC on kävelykierroksen aloituspisteessä Vuotalolla katutasossa. Vuotalolla on myös esteetön WC, ja sisäänkäynti Vuotaloon on esteetön sähköpainikkeella. Esteetön WC on lukossa ja sen voi pyytää avaamaan aulan infotiskiltä tai kahvilasta. Esteetön WC on sukupuolittamaton, muuten WC:t ovat binäärisesti sukupuolitetut</p>",
                "en": "<p>This walking tour offers a look at Vuosaari's architecture and neighborhood from the perspective of the 1970s.</p><p>While Vuosaari is a typical 1960s forest town, the area also features interesting examples of 1970s architecture that reflect the changing ideals of urban planning. The tour examines how the social aspirations of that era are preserved in architecture and how they continue to impact modern times.</p><p>The walking tour delves into the architectural heritage of Helsinki, providing a deeper understanding of the values and ideals that shaped the urban landscape of Helsinki in the 1970s and beyond. The tour starts at Vuotalo (Mosaiikkitori 2, Helsinki) and ends at Merikorttikuja 6, Helsinki. The duration of the tour is approximately 1 hour and 15 minutes.</p><p>This summer, the Museum of Finnish Architecture will focus on the architecture of the 1970s. The main exhibition of the year, titled Concrete Dreams – And Other Perspectives on 1970s Architecture, will be open from May 17 to October 15, 2023, at the Museum of Finnish Architecture.</p><p><b>Schedule </b><br>  <br>Tuesday June 6, 2023 | at 3 pm <br>Language: English | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday June 6, 2023 | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br>Monday June 12, 2023 | Helsinki Day 2023 | at 3 pm <br>Language: English | Participation: free of charge <br> <br>Monday June 12, 2023 | Helsinki Day 2023 | at 5 pm <br>Language: Finnish | Participation: free of charge <br>  <br>Tuesday July 4, 2023 | at 3 pm <br>Language: English | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday July 4, 2023 | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday August 1, 2023 | at 3 pm <br>Language: English | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday August 1, 2023 | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday September 12, 2023 | Helsinki Design Week | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br>Wednesday September 13, 2023 | Helsinki Design Week | at 5 pm <br>Language: English | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday October 10, 2023 | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br> <br><b>Participation </b><br>To book your place, please use this form: https://q.surveypal.com/Arkkitehtuurikavely-1970-luvun-Vuosaari.</p><p>A total of 25 participants will be admitted to each themed guided tour. Places are filled on a first-come, first-served basis. For paid tours, card payments will be collected in advance at the starting point of the walk (15 minutes before the tour begins) using a portable payment terminal. Cash will not be accepted. Please arrive on time for the tour, which starts on the hour.</p><p>Please note that the booking is binding and personal: only one booking can be made per person per form. A successful submission of the form indicates a successful booking. Instructions for participation will be sent to participants by email approximately one day before the tour. If you need to cancel your participation, please contact: kaura.raudaskoski@mfa.fi.</p><p><b>Accessibility</b> <br>The tour takes place outdoors, and the guide uses a microphone to make it easier to hear.</p><p>The length of the route is approximately 2.1 km one way. The route ends at the last destination on Merikorttikuja 6, from where it is about a 1.8 km walk back to the Vuosaari metro station.</p><p>The walking tour route is on a paved road, and the edges of the curbs at road crossings are sloped. There are a few gentle or moderately steep slopes along the route, but no stairs. There are no seats at the tour stops, but you may bring your own portable chair if you wish.</p><p>The nearest public toilet is at the starting point of the walking tour in Vuotalo, at street level. The Vuotalo also has an accessible toilet, and the entrance is accessible with an electric button. The accessible toilet is locked by default, but you can ask to have it opened at the information desk in the lobby or the cafe. The accessible toilet is non-gendered, while the other toilets are binary gendered</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60014/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60054",
            "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: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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4190,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:34.541461Z",
                    "last_modified_time": "2023-09-07T14:21:34.541486Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732385.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4190/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:34.078974Z",
            "last_modified_time": "2023-11-12T21:13:29.635596Z",
            "date_published": null,
            "start_time": "2023-09-13T14: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,
            "name": {
                "fi": "Kansantansseja elävän musiikin säestyksellä – Viro ja Saksa",
                "sv": "Folkdans till tonerna av livemusik – Estland och Tyskland",
                "en": "Folk dances accompanied by live music – Estonia and Germany"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Opi musiikkia äidinkielenä! Työpajassa voit opetella soittamaan tanssien taustalla tai tanssimaan itse.",
                "sv": "Lär dig musik som modersmål! I den här verkstaden får du lära dig att spela till dans eller själv dansa.",
                "en": "Learn music as your native language! In this workshop, you can either learn to play in the background of the dances or dance yourself."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/240D92E082111CEE7362B9C6E3C7BA94/Kansantansseja_elavan_musiikin_saestyksella",
                "sv": "http://www.caisa.fi/sv/evenemang/event/240D92E082111CEE7362B9C6E3C7BA94/Folkdans_till_tonerna_av_livemusik_",
                "en": "http://www.caisa.fi/en/events/event/240D92E082111CEE7362B9C6E3C7BA94/Folk_dances_accompanied_by_live_music"
            },
            "description": {
                "fi": "<p>Opi musiikkia äidinkielenä! Työpajassa voit opetella soittamaan tanssien taustalla tai tanssimaan itse.</p><p>Kaikenlaiset soittimet ja tanssitaidot ovat tervetulleita. Et tarvitse muuta kuin soittimesi, äänesi ja kehosi!<br> <br>Aiempaa tanssikokemusta ei tarvita.<br> <br>Tapahtuman kesto: 2 t<br>Ikäsuositus: sopii kaikenikäisille<br>Ohjauskielet: englanti, portugali ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Lär dig musik som modersmål! I den här verkstaden får du lära dig att spela till dans eller själv dansa.</p><p>Alla instrument och dansfärdigheter är välkomna. Du behöver inget annat än ditt instrument, din röst och din kropp!</p><p>Ingen tidigare danserfarenhet behövs.</p><p>Längd: 2 t.<br>För alla åldrar<br>Språk: engelska, portugisiska, finska</p>",
                "en": "<p>Learn music as your native language! In this workshop, you can either learn to play in the background of the dances or dance yourself.</p><p>People with all kinds of instruments and dancing skills are welcome. All you need is your instrument, your voice and your body!</p><p>No prior experience in dance is required.</p><p>Duration: 2 hours<br>For all ages<br>Language of instuction: English, Portugese and Finnish</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60054/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60046",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4189,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:33.437417Z",
                    "last_modified_time": "2023-09-07T14:21:33.437438Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732377.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4189/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:32.659589Z",
            "last_modified_time": "2023-11-12T21:13:29.557500Z",
            "date_published": null,
            "start_time": "2023-09-13T12: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,
            "name": {
                "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves",
                "sv": "HOW-radio | Global Club Nights",
                "en": "HOW-radio | Global Club Nights"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Laura Gazotti & Shafeeq Alsadi",
                "sv": "Laura Gazotti & Shafeeq Alsadi",
                "en": "Laura Gazotti & Shafeeq Alsadi"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/02D0A6B1A8A696AB3BE2F338898F2744/HOW-radio_Global_Club_Nights",
                "sv": "http://www.caisa.fi/sv/evenemang/event/02D0A6B1A8A696AB3BE2F338898F2744/HOW-radio_Global_Club_Nights",
                "en": "http://www.caisa.fi/en/events/event/02D0A6B1A8A696AB3BE2F338898F2744/HOW-radio_Global_Club_Nights"
            },
            "description": {
                "fi": "<p>Laura Gazotti & Shafeeq Alsadi</p><p>Kolibri-festivaalin taiteellinen johtaja <b>Laura Gazotti</b> puhuu kulttuurisesta osallisuudesta, monikielisyydestä, festivaalin järjestämisestä ja yhteisön osallistamisesta.</p><p><b>Shafeeq Alsadi</b> on palestiinalainen muusikko, joka on syntynyt Jerusalemissa vuonna 1990 ja kasvanut Betlehemissä. Hän aloitti musiikkiuransa opiskelemalla soittamaan qanun-soitinta, josta on tullut määrittävä osa hänen identiteettiään. Improvisoimalla vapaasti sekä yhdistelemällä arabialaisen musiikin ja maailmanmusiikin vaikutteita Shafeeq on voinut tutkia eri kulttuureja ja olla yhteydessä ihmisiin eri puolilta maailmaa.</p><p>Kesto: 60 min</p>",
                "sv": "<p>Laura Gazotti & Shafeeq Alsadi</p><p>Laura Gazotti, konstnärlig ledare för Kolibrifestivalen talar om kulturell inklusivitet, flerspråkighet, festivalarrangemang och samhällsengagemang.</p><p>Shafeeq Alsadi är en palestinsk musiker, född i Jerusalem och uppväxt i Bethlehem under 1990-talet. I början av sin musikaliska resa studerade Shafeeq instrumentet qanun, som har blivit en del av musikerns egen identitet. Genom sin blandning av fri improvisation och inflytande från arabisk musik och världsmusik har Shafeeq utforskat olika kulturer och fått kontakt med människor över hela världen.</p><p>Längd: 60 min</p>",
                "en": "<p>Laura Gazotti & Shafeeq Alsadi</p><p>Laura Gazotti, Kolibri Festival’s Artistic Director speaks about cultural inclusivity, multilingualism, Festival organization and community engagement.</p><p><b>Shafeeq Alsaid</b> <br>Shafeeq Alsadi is a Palestinian musician, born in Jerusalem and raised in Bethlehem in 1990. He began his musical journey studying the qanun, which has become a defining part of his identity. Through his blend of free improvisation and Arabic and world music influences, Shafeeq has been able to explore different cultures and connect with people from all over the world.</p><p>As a teacher and mentor, Shafeeq has shared his passion for the qanun and music with students throughout Palestine, leading music teaching cycles in different parts of the country. His work is deeply rooted in his home country and culture, and his openness to the diversity of music allows him to connect with people of different backgrounds and cultures. He has also performed extensively throughout Palestine and internationally, sharing his musical voice with audiences across the globe. <br>Shafeeq strongly believes that music is a powerful force that can bring people together, no matter where they come from or what their culture is.</p><p>Currently, he is pursuing his studies in the Global Music Department at Sibelius Academy in Helsinki, where he continues to deepen his understanding of the transformative power of music. Through his music compositions and performances, Shafeeq aims to inspire people to see the interconnectedness of everything and everyone, promoting cultural exchange and mutual learning. To him, music is not just a medium of artistic expression, but a transformative force for truth and authentic human connection.</p><p>Duration: 60 min</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60046/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60350",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4187,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:31.846372Z",
                    "last_modified_time": "2023-09-07T14:21:31.846393Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734807.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4187/?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:21:31.699758Z",
            "last_modified_time": "2023-11-12T21:13:29.395852Z",
            "date_published": null,
            "start_time": "2023-09-13T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skidikino: Ystävät ja perhe"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii myös esikouluikäisille."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C2BE1788AC3C9DB8EA951C3D489BEB97/Skidikino_Ystavat_ja_perhe_"
            },
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii myös esikouluikäisille.</p><p>Vuotalon syksyn Skidikinossa katsellaan lyhytelokuvia teemalla Ystävät ja perhe. Mukana lyhyissä elokuvapätkissä seikkailevat muun muassa Myyrä, Rexi-koira sekä muumit. Tuokioiden lyhytelokuvat vaihtelevat hieman. Elokuvahetki kestää kokonaisuudessaan noin 30 minuuttia.</p><p>Esitysajat: klo 9:15 ja 10:15</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata <u><a href=\"https://www.hel.fi/static/kulke/PikkuKroko_menee_elokuviin_METROLLA_.pdf\">tästä</u></a>.</p><p>Skidikinoihin ryhmille pakollinen ennakkoilmoittautuminen osoitteessa www.kultus.fi</p><p>Kieli: Ei puhetta tai suomeksi<br>Kesto: noin 30 min <br>Ikäsuositus: S <br>Vapaa pääsy</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60350/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60349",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4186,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:31.449018Z",
                    "last_modified_time": "2023-09-07T14:21:31.449046Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734806.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4186/?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:21:31.300744Z",
            "last_modified_time": "2023-11-12T21:13:29.307585Z",
            "date_published": null,
            "start_time": "2023-09-13T06:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skidikino: Ystävät ja perhe"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii myös esikouluikäisille."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6DF82C01CDB716BC7098844D733077B1/Skidikino_Ystavat_ja_perhe_"
            },
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii myös esikouluikäisille.</p><p>Vuotalon syksyn Skidikinossa katsellaan lyhytelokuvia teemalla Ystävät ja perhe. Mukana lyhyissä elokuvapätkissä seikkailevat muun muassa Myyrä, Rexi-koira sekä muumit. Tuokioiden lyhytelokuvat vaihtelevat hieman. Elokuvahetki kestää kokonaisuudessaan noin 30 minuuttia.</p><p>Esitysajat: klo 9:15 ja 10:15</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata <u><a href=\"https://www.hel.fi/static/kulke/PikkuKroko_menee_elokuviin_METROLLA_.pdf\">tästä</u></a>.</p><p>Skidikinoihin ryhmille pakollinen ennakkoilmoittautuminen osoitteessa www.kultus.fi</p><p>Kieli: Ei puhetta tai suomeksi<br>Kesto: noin 30 min <br>Ikäsuositus: S <br>Vapaa pääsy</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60349/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60407",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?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:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "14 €",
                        "sv": "14 €",
                        "en": "14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4185,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:30.530348Z",
                    "last_modified_time": "2023-09-07T14:21:30.530370Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732127.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4185/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:29.870292Z",
            "last_modified_time": "2023-11-12T21:13:29.227802Z",
            "date_published": null,
            "start_time": "2023-09-13T04:30:00Z",
            "end_time": "2023-09-13T07: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,
            "name": {
                "fi": "Queer-lintukävelyt",
                "sv": "Queer-fågelpromenader",
                "en": "Queer Bird Walk"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.",
                "sv": "Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.",
                "en": "People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D20D8427B6C2A0D47A06C9399232C4DA/Queer-lintukavelyt",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D20D8427B6C2A0D47A06C9399232C4DA/Queer-fagelpromenader",
                "en": "http://www.kanneltalo.fi/en/events/event/D20D8427B6C2A0D47A06C9399232C4DA/Queer_Bird_Walk"
            },
            "description": {
                "fi": "<p>Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.</p><p>Esimerkiksi kyyhkyä on pidetty uskollisuuden ja romanttisen rakkauden symbolina sen pitkän parisiteen takia, minkä perusteella avioliittoa ja ydinperhettä on pidetty luonnollisina. Miksi vaikkapa lutkamaista rautiaista ei pidetä polyamorian symbolina tai kalalokkia lesbouden?</p><p>Queer-linturetkellä katsotaan ja kuunnellaan lähiluonnossa esiintyviä lintuja ja perehdytään siihen, miten läpikotaisesti yleiset käsitykset \"luonnollisesta\" ja katsomisen tavat ovat rakentuneet cis- ja heteronormien ympärille. Oppaana toimii Camille Auer.</p><p>Kurssi järjestetään yhteistyössä Helsingin työväenopiston, Baltic Circle -teatterifestivaalin ja Kanneltalon kanssa.</p><p>Linturetket ovat osa työväenopiston kurssitarjontaa ja niille ilmoittaudutaan osoitteessa https://www.ilmonet.fi. Ilmoittautuminen avautuu myöhemmin. Löydät kunkin retken seuraavien kurssitunnisteiden avulla:</p><p>H235444 Töölönlahti, ke 13.9. klo 7.30–10, kurssimaksu 14 €<br>H235445 Vanhankaupunginlahti, to 14.9. klo 16.30–19, kurssimaksu 14 €<br>H235446 Vanhankaupunginlahti, ke 20.9. klo 8–10.30, kurssimaksu 14 €<br>H235447 Mätäjoki, to 21.9. klo 15.30–18, kurssimaksu 14 €</p><p><b>Camille Auer</b> on monialainen taiteilija ja kirjoittaja. Tällä hetkellä hän tutkii lintujen tarkkailun fenomenologiaa sekä cis- ja heteronormien vaikutusta lintuja koskevan tiedon tuottamisessa. Hän näkee esimerkiksi liikkuvan kuvan, äänen ja esityksen keinoilla tapahtuvan toiminnan teoreettisen ajattelun muotoina siinä missä tekstinkin. Auerin tuotantoa yhdistää toiseuden ja toiseuttamisen tutkiminen suhteessa itseen posthumanistisesta trans- ja queer-näkökulmasta. Auerin työskentelyä tukee Suomen kulttuurirahasto.</p><p>Retki on osa Camille Auerin esityksen Ruff Knowledge taustatyötä. Ruff Knowledge esitetään 22., 24. ja 25. marraskuuta Kanneltalossa osana kansainvälisen Baltic Circle -teatterifestivaalin ohjelmistoa.</p>",
                "sv": "<p>Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.</p><p>Under Queer-fågelpromenaden tittar och lyssnar vi på fåglar i den närliggande naturen och sätter oss in i hur ingående allmänna uppfattningar av ”naturligt” och att se på saker har byggts upp kring cis- och heteronormer. Camille Auer är vår guide.</p><p>Kursen ordnas i samarbete med Helsingfors medborgarinstitut, teaterfestivalen Baltic Circle och Gamlasgården.</p><p>Camille Auer är en mångsidig konstnär och författare. För närvarande forskar hon i fågelskådningens fenomenologi samt cis- och heteronormernas inverkan på produktionen av information gällande fåglar. Utflykten är en del av bakgrundsarbetet till Auers föreställning Ruff Knowledge. Ruff Knowledge visas 22, 24 och 25 november i Gamlasgården som en del av programmet för den internationella teaterfestivalen Baltic Circle.</p><p>Registrering via https://www.ilmonet.fi:<br>H235444 Töölönlahti, Wed 13. Sept 7.30–10, 14 €<br>H235445 Vanhankaupunginlahti, Thu 14 Sept 16.30–19, 14 €<br>H235446 Vanhankaupunginlahti, Wed 20 Sept 8–10.30, 14 €<br>H235447 Mätäjoki, Thu 21 Sept 15.30–18, 14 €</p>",
                "en": "<p>People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values.</p><p>For example, the dove has been considered a symbol of loyalty and romantic love because of its long-lasting pair bonds, on the basis of which marriage and the nuclear family have been seen as natural. Why then haven’t people considered the slutty dunnock a symbol of polyamory, or the seagull of lesbianism? On the Queer Bird Walk, you will observe and listen to the birds in the nearby nature and get to know how the general concepts of “natural” and ways of looking are built around cis and hetero norms. Your guide on the trip is Camille Auer.</p><p>Registration via https://www.ilmonet.fi:<br>H235444 Tölöviken, ons. 13.9 kl. 7.30–10, kursavgift 14 euro<br>H235445 Gammelstadsviken, tors. 14.9 kl. 16.30–19, kursavgift 14 euro<br>H235446 Gammelstadsviken, ons. 20.9 kl. 8–10.30, kursavgift 14 euro<br>H235447 Rutiån, tors. 21.9 kl. 15.30–18, kursavgift 14 euro</p><p>Camille Auer is a trans-disciplinary artist and writer. Her art practice has always been theory driven, but instead of illustrating existing theories, she uses forms ranging from sound, moving image, performance and text-based installations to contribute to theoretical discourse as modes of thinking in their own right. A common theme in her diverse body of work is the othering of trans and nonhuman bodies, such as herself or queer birds. Her work has been shown and published in The Finnish Museum of Photography (Helsinki), Wäinö Aaltonen Museum (Turku) and Atlas Arts (Skye, Scotland) among others. Her work is currently supported by the Finnish Cultural Foundation.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60407/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270201",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8369/?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:10652/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10655/?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/helmet:10841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:23/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5779,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-01T08:25:08.018639Z",
                    "last_modified_time": "2023-11-01T08:25:08.018655Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{E5A413FE-8AD5-4051-AD2A-1B603951B7F2}/107166",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5779/?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-11-01T08:25:08.006531Z",
            "last_modified_time": "2023-11-12T17:22:11.116515Z",
            "date_published": "2023-11-01T07:20:00Z",
            "start_time": "2023-11-01T07:00:00Z",
            "end_time": "2023-11-12T18: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,
            "name": {
                "fi": "Nenäpäivän kirjanäyttely"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule lainaamaan luettavaa Nenäpäivän kirjanäyttelystä!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Nenäpäivä on täällä taas! Kampanja-aikana 1.11.–12.11. nostamme kirjastossa Nenäpäivän hengessä esille kirjoja, joissa käsitellään kampanjan kohdemaita ja teemoja. Kirjanäyttelystä voi lainata kirjoja kotiin tavalliseen tapaan. Tervetuloa tutustumaan ja lainaamaan kirjoja!</p><p>Lue lisää:</p><p> <a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Vinkit/Kirjastot_mukana_Nenapaivakampanjassa(269885)\">Kirjastot mukana Nenäpäivä-kampanjassa | Helmet</a> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270201/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268724",
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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:44:42.058843Z",
            "last_modified_time": "2023-11-12T17:20:35.806482Z",
            "date_published": "2023-09-21T11:58:00Z",
            "start_time": "2023-10-12T05:00:00Z",
            "end_time": "2023-10-12T18: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,
            "name": {
                "fi": "Adventures in White Privilege",
                "en": "Adventures in White Privilege"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "1st floor info",
                "en": "1st floor info"
            },
            "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."
            },
            "info_url": 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>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268724/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269886",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:11777/?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:p14710/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2921,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:35:18.408287Z",
                    "last_modified_time": "2024-02-06T13:38:32.159160Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{79E6A1AD-1A61-43D2-84D3-36A80E2F4A53}/103023",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2921/?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-10-23T08:23:57.740906Z",
            "last_modified_time": "2023-11-12T15:22:42.834704Z",
            "date_published": "2023-10-22T21:00:00Z",
            "start_time": "2023-11-08T16:00:00Z",
            "end_time": "2023-11-08T16: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,
            "name": {
                "fi": "Nenäpäivä: Illan satuhetki"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Sellon kirjastossa järjestetään iltaisin joka toinen keskiviikko avoin satuhetki klo 18:00-18.30 kirjaston lastenosastolla."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sellon kirjastossa järjestetään iltaisin joka toinen keskiviikko avoin satuhetki klo 18:00–18.30 kirjaston lastenosastolla. Tarinoiden äärelle ovat tervetulleita osallistumaan kaikki lapset, vanhemmat ja isovanhemmat. Luemme tarinoita alle kouluikäisille 3–6-vuotiaille lapsille suomen kielellä.</p><p>Keskiviikkona 8.11. järjestämme illan satuhetken Nenäpäivän hengessä. Tervetuloa mukaan tarinoiden äärelle!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269886/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267982",
            "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: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:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2579,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:53.145065Z",
                    "last_modified_time": "2024-02-06T13:38:58.746360Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9B2F9EC8-37D0-4863-B9F6-C2641C8D4462}/90602",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2579/?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-08T06:57:30.671874Z",
            "last_modified_time": "2023-11-12T15:21:16.172895Z",
            "date_published": "2023-09-07T21:00:00Z",
            "start_time": "2023-10-12T14:00:00Z",
            "end_time": "2023-10-12T17: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,
            "name": {
                "fi": "Pelataan lautapelejä (aikuisille ja nuorille)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Tapahtumatila, 1. kerros"
            },
            "short_description": {
                "fi": "Tule kokeilemaan erilaisia lautapelejä! Tapahtuma on suunnattu nuorille ja aikuisille. Yhteistyössä Suomen lautapeliseura ryn kanssa."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Lautapelikerho kokoontuu 14.9. alkaen Myyrmäen kirjastossa!</p><p>Tervetuloa pelaamaan erilaisia lautapelejä joka torstai klo 17-20!<br><br> Lautapelikerho on suunnattu nuorille ja aikuisille. Huomaathan että osassa peleistä tekstit ja säännöt ovat englanniksi.</p><p>Kerho kokoontuu Myyrmäen kirjaston tapahtumatilassa, 1. kerros (Huom! Lautapelikerho kokoontuu 26.10. ja 7.12. poikkeuksellisesti lainaussalin takaosassa).<br><br> Kerhon järjestää Suomen lautapeliseura ry.</p><p>Pelitietoa: <a href=\"https://lautapeliseura.fi/\">lautapeliseura.fi</a></p><p>Kuva: Pixabay.com</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267982/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:267642",
            "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:10673/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10674/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3855,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-04T11:27:04.127186Z",
                    "last_modified_time": "2023-09-04T11:27:04.127206Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{864E0FEF-E0FE-4BB9-8F00-03529D330A15}/105525",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3855/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-09-04T11:37:11.985642Z",
            "last_modified_time": "2023-11-12T15:21:16.099004Z",
            "date_published": "2023-09-04T10:02:00Z",
            "start_time": "2023-10-12T15:00:00Z",
            "end_time": "2023-10-12T17: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,
            "name": {
                "fi": "Auttajaklubi",
                "en": "Helpers' Club Myyrmäki"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Kerhotila, 3. kerros",
                "en": "Club room, 3. floor"
            },
            "short_description": {
                "fi": "16-35-vuotiaille suunnatussa Auttajaklubissa opit ensiaputaitoja, harjoittelet suomen kieltä ja saat uusia ystäviä! Opetus on selkosuomeksi ja englanniksi.",
                "en": "In the Red Cross Helpers' CLub, you learn life-saving first aid skills, practice Finnish in a relaxed environment and make new friends! Aimed for people 16-35 years of age."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Osaatko auttaa?</p><p>Auttajaklubissa opit ensiaputaitoja, harjoittelet suomen kieltä ja saat uusia ystäviä! Saat myös virallisen ensiaputodistuksen.</p><p>Opetus on selkosuomeksi ja englanniksi.</p><p>Klubi on ilmainen ja suunnattu 16-35-vuotiaille.</p><p>Tervetuloa! <a href=\"https://forms.office.com/pages/responsepage.aspx?id=oBzFjVW9_02Lp4a0gWYHeKyPMf-IY05No2Zk2AOq22ZUQzhYOE0xMTZIVkNaSkEwTVZXTDUxNVhGMy4u\">Ilmoittaudu mukaan täältä.</a> </p><p>Kuva: <a href=\"https://aineistopankki.punainenristi.fi/\">Jussi Vierimaa / SPR</a></p>",
                "en": "<p>Do you know how to handle an emergency?</p><p>In the Red Cross Helpers' Club, you learn life-saving first aid skills, receive an official first aid certificate, practice Finnish in a fun, relaxed environment and make new friends!</p><p>The teaching is in basic Finnish and English.</p><p>Aimed for people 16-35 years of age.</p><p>Welcome! <a href=\"https://forms.office.com/pages/responsepage.aspx?id=oBzFjVW9_02Lp4a0gWYHeKyPMf-IY05No2Zk2AOq22ZUQzhYOE0xMTZIVkNaSkEwTVZXTDUxNVhGMy4u\">Sign up from here.</a></p><p>Photo: <a href=\"https://aineistopankki.punainenristi.fi/\">Jussi Vierimaa / Finnish Red Cross</a></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267642/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:260789",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2946,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:36:05.852959Z",
                    "last_modified_time": "2024-02-06T13:38:18.783946Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{84EB2276-55D6-477F-851F-98D183010B7A}/94425",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2946/?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:46:14.594322Z",
            "last_modified_time": "2023-11-12T15:21:16.024163Z",
            "date_published": "2023-06-18T21:01:00Z",
            "start_time": "2023-10-12T15:00:00Z",
            "end_time": "2023-10-12T17: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,
            "name": {
                "fi": "Tietokirjalukupiiri"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Kanerva-sali (pohjakerros)"
            },
            "short_description": {
                "fi": "Tietokirjallisuuden lukupiiri kokoontuu kerran kuussa torstaisin. Tervetuloa!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa lukemaan ja keskustelemaan tietokirjoista! Tietokirjalukupiiri kokoontuu kerran kuussa torstaisin Itäkeskuksen kirjaston kokoushuone Kanervassa (pohjakerros).</p><p>Syksyllä 2023 tutkitaan luonnontieteellisiä maailmankäsityksiä maustettuna itämerensuomalaisen maailmakuvan esittelyllä.</p><p>Aikataulu ja luettavat kirjat:</p><p> <strong>To 14.9. klo 18</strong>: <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2491119__SMin%C3%A4%2C%20koira%20ja%20ihmiskunta__Orightresult__U__X7?lang=fin&amp;suite=cobalt\">Tiina Raevaara: Minä, koira ja ihmiskunta : lajien välisen yhteiselon historia</a></p><p> <strong>To 12.10. klo 18:</strong> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2391332__SCarlo%20Rovelli%3A%20Todellisuus%20ei%20ole%20sit%C3%A4%20milt%C3%A4%20se%20n%C3%A4ytt%C3%A4%C3%A4__Orightresult__U__X2?lang=fin&amp;suite=cobalt\">Carlo Rovelli: Todellisuus ei ole sitä miltä se näyttää</a></p><p> <strong>To 16.11. klo 18</strong>:<a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2278939__SLoistavat%20kasvit%20%3A%20mit%C3%A4%20tied%C3%A4mme%20kasveista%20ja%20niiden%20%C3%A4lykkyydest%C3%A4Pw%3D%3D__Orightresult__U__X4?lang=fin&amp;suite=cobalt\"> Stefano Mancuso, Alessandra Viola: Loistavat kasvit : mitä tiedämme kasveista ja niiden älykkyydestä?</a></p><p> <strong>To 14.12. klo 18:</strong> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2350658__Skantarellin%20kuuntelun%20taito__Orightresult__X7?lang=fin&amp;suite=cobalt\">Valdur Mikita: Kantarellin kuuntelun taito : itämerensuomalaista maailmankuvaa etsimässä</a></p><p>Lukupiirin vetäjänä toimii Tuula Haavisto.</p><p>Lukupiiriläiset varaavat kirjan itse, eikä ilmoittautumista vaadita. </p><p>Kirjaston lukupiirit ovat avoimia kaikille kiinnostuneille.</p><p>Tervetuloa! </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260789/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:258173",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19217/?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:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2579,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:53.145065Z",
                    "last_modified_time": "2024-02-06T13:38:58.746360Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9B2F9EC8-37D0-4863-B9F6-C2641C8D4462}/90602",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2579/?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:46:14.233788Z",
            "last_modified_time": "2023-11-12T15:21:15.939615Z",
            "date_published": "2023-04-19T07:52:00Z",
            "start_time": "2023-10-12T14:00:00Z",
            "end_time": "2023-10-12T17: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,
            "name": {
                "fi": "Pelataan lautapelejä (aikuisille ja nuorille)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule kokeilemaan erilaisia lautapelejä! Tapahtuma on suunnattu nuorille ja aikuisille. Yhteistyössä Suomen lautapeliseura ryn kanssa."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa pelaamaan erilaisia lautapelejä joka torstai klo 17-20!<br><br> Martinlaakson kirjaston lautapelikerho on suunnattu nuorille ja aikuisille. Huomaathan että osassa peleistä tekstit ja säännöt ovat englanniksi.<br><br> Kerhon järjestää Suomen lautapeliseura ry.</p><p>Pelitietoa: <a href=\"https://lautapeliseura.fi/\">lautapeliseura.fi</a></p><p>Kuva: Pixabay.com</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:258173/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:250728",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?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:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2578,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:52.363859Z",
                    "last_modified_time": "2024-02-06T13:38:18.690807Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{01207B38-3272-47FF-9C7B-D7AA8655856D}/76557",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2578/?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:46:13.896587Z",
            "last_modified_time": "2023-11-12T15:21:15.851679Z",
            "date_published": "2022-12-28T13:57:00Z",
            "start_time": "2023-10-12T14:00:00Z",
            "end_time": "2023-10-12T17: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,
            "name": {
                "fi": "Harrastelijasoittajien jamit - avoin ryhmä"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Musiikkiosasto, 1. krs"
            },
            "short_description": {
                "fi": "Tule soittelemaan ja laulamaan helppoja ja tuttuja lauluja Tikkurilan kirjaston musiikkiosaston soittohuoneeseen torstaisin klo 17-20."
            },
            "info_url": null,
            "description": {
                "fi": "</p><p>Tule soittelemaan ja laulamaan helppoja ja tuttuja lauluja Tikkurilan kirjaston musiikkiosaston soittohuoneeseen torstai-iltaisin.</p><p>Soitetaan ensin alkuperäisartistien tulkintojen mukana, minkä jälkeen porukka itse päättää mihin suuntaan edetään ja millaisia lauluja soitetaan. Apuvälineinä ovat soittohuoneen äänen- ja kuvantoistolaitteet. Sointumerkinnät ja rajallinen määrä nuotteja ovat käytettävissä. Kaikenlaiset soittimet ovat tervetulleita.</p><p>Ei ennakkoilmoittautumista. Maksuton.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:250728/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268545",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2577,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:51.467089Z",
                    "last_modified_time": "2024-02-06T13:38:18.601860Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BEFEF0D1-0268-4938-8B30-4A52D0E09590}/82643",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2577/?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-20T09:47:18.253626Z",
            "last_modified_time": "2023-11-12T15:21:15.766353Z",
            "date_published": "2020-01-01T10:34:00Z",
            "start_time": "2023-10-12T13:00:00Z",
            "end_time": "2023-10-12T16: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,
            "name": {
                "fi": "Lautapelikerho"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Akseli-sali"
            },
            "short_description": {
                "fi": "Lautapeliseuran lautapelikerho kokoontuu torstaisin ympäri vuoden"
            },
            "info_url": null,
            "description": {
                "fi": "<h3>Torstaisin klo 16-19.45 Akseli-salissa</h3></p><p>Lautapeliseuran järjestämä aikuisille suunnattu pelikerho.</p><p> <br> Lisätietoja ja poikkeusaikoja ja -paikkoja: <strong><a href=\"http://www.lautapeliseura.fi/foorumi/\">foorumi</a> </strong><br><br> Pelitietoa <a href=\"http://www.lautapeliseura.fi\">http://www.lautapeliseura.fi</a> <a href=\"https://www.facebook.com/pages/Suomen-lautapeliseura/164470176919869\">Facebookissa</a></p><p>Tervetuloa!<br><br> * * * <br><br> Lautapelikerho jatkuu torstaisin ympäri vuoden. Poikkeuksena sellaiset juhlapyhät, jolloin kirjasto on suljettuna. Jos kirjasto suljetaan klo 18, niin lautapelikerho on klo 17.45 asti.</p><p>Kuva <a href=\"https://unsplash.com/@introspectivedsgn\">Erik Mclean</a></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268545/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268856",
            "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: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: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"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2576,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:51.105464Z",
                    "last_modified_time": "2023-08-15T15:26:51.105487Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5FCD13A3-ADB3-4CED-9860-565E17F28B18}/79321",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2576/?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:p6165/?format=api"
                }
            ],
            "created_time": "2023-09-26T11:16:57.246884Z",
            "last_modified_time": "2023-11-12T15:21:15.685683Z",
            "date_published": "2023-09-07T13:50:00Z",
            "start_time": "2023-10-12T15:00:00Z",
            "end_time": "2023-10-12T16: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,
            "name": {
                "fi": "Puhutaan suomea!"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan suomeksi."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Haluatko harjoitella suomen puhumista mukavassa ja turvallisessa ryhmässä? Tule mukaan Hakunilan kirjaston Puhutaan suomea -keskustelukerhoon.</p><p>Voit tulla mukaan myös harjoittelukaveriksi suomea opettelevalle. </p><p>HUOM! Keskustelukerho ei kokoonnu torstaina 12.10.</p><p>Kysy lisää:<br> Paula Puustinen<br> paula.puustinen(at)vantaa.fi<br> puh: 040 480 1828</p><p> <br> Kuva: Unsplash.com / Pricilla du Preez</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268856/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264930",
            "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:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3009,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:46:13.663788Z",
                    "last_modified_time": "2023-08-15T15:46:13.663808Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{C1441E8D-AA0B-41A6-BD74-A1C3D5627481}/104776",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3009/?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:46:12.793069Z",
            "last_modified_time": "2023-11-12T15:21:15.610310Z",
            "date_published": "2023-08-08T10:20:34.280000Z",
            "start_time": "2023-10-12T15:30:00Z",
            "end_time": "2023-10-12T16: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,
            "name": {
                "fi": "Ogeli live: Riku Turpeinen Greatest"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Illassa esiintyy Riku Turpeinen bändinsä kanssa. Tervetuloa kuuntelemaan!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Ogeli live -illoissa nautitaan akustisesta musiikista vaihtuvien esiintyjien kera. </p><p>Riku Turpeinen Greatest performanssi käsittelee hänen hienoa musiikkitaivaltaan oman populaarimusiikin parissa, jota hän laulaa pääasiassa englanniksi.</p><p>Rikun tuotantoon vuosien varrella on kertynyt monta bändiä, joiden kanssa Riku on päässyt viihdyttämään ja todistamaan yleisölle ja levyjensä kuuntelijoille olevansa the hardest working man in show business. Vuodet tuovat aina lisää uusia tuulia kun kehitystä tapahtuu, tuotanto paranee koko ajan ja nyt näyttää siltä, että viimeinen iso huipennus on vasta edessäpäin ja tulossa pian. </p><p>Tule Oulunkylän kirjastoon kuuntelemaan niin saat aidon kokemuksen ja tunteen Rikun parhaasta livevedosta. Keikalla esiintyy myös legendaarinen Riku and the Night visions, joka soittaa omia uusia ja vanhoja tarttuvia rakkaita biisejä laidasta laitaan. </p><p>Tervetuloa nauttimaan musiikista!</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Oulunkylan_kirjasto\">Oulunkylän kirjasto</a> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264930/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264354",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2944,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:36:02.543176Z",
                    "last_modified_time": "2024-02-06T13:38:37.137112Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{858A52AB-14B7-4D48-A33B-132EE7EFDB9A}/104632",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2944/?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:46:10.695841Z",
            "last_modified_time": "2023-11-12T15:21:15.531970Z",
            "date_published": "2023-07-28T07:36:24.180000Z",
            "start_time": "2023-10-12T15:00:00Z",
            "end_time": "2023-10-12T16: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,
            "name": {
                "fi": "Feministinen lukupiiri: Oikeusjuttu (Susanna Vehkoo)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Ryhmätyötila Otso, 1. krs"
            },
            "short_description": {
                "fi": "Kerran kuussa Kallion kirjastossa keskustellaan kirjallisuudesta feministisen linssin läpi..."
            },
            "info_url": null,
            "description": {
                "fi": "<h3>Tule keskustelemaan kirjallisuudesta feministisen linssin läpi.</h3><p>Feministinen lukupiiri kokoontuu kerran kuussa torstaisin Kallion kirjaston ryhmätyötila Otsossa klo 18-19.30. Lokakuun tapaamisen kirja on:</p><p> to 12.10.23 <strong>Johanna Vehkoo</strong>: <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2469414__SVehkoo%2C%20Johanna%2C__Orightresult__X4?lang=fin&amp;suite=cobalt\">Oikeusjuttu</a></p><p>Ilmoittaudu <strong>lokakuun</strong> lukupiiriin tämän sivun alalaidassa kohdassa \"ilmoittaudu tapahtumaan.\" Mikäli et pääsekään paikan päälle, voit perua ilmottautumisesi vahvistussähköpostin ohjeiden mukaan.</p><p>Jos haluat, voit myös liittyä feministisen lukupiirin postituslistalle klikkaamalla linkkiä: <a href=\"https://helmet.us20.list-manage.com/subscribe?u=a4337025d5c655773186b1728&amp;id=4e3136583a\">https://bit.ly/feministinen</a>. Postituslistan kautta saat ensimmäisenä tiedon seuraavan kauden lukupiirin kirjoista ja ilmottautumisajankohdista, ja muistutuksen seuraavasta tapaamiskerrasta.</p><p>Muistathan ilmoittautua syksyn jokaiselle kerralle erikseen!</p><p>Lukupiirin kirjoja on varattu osallistujille noudettavaksi Kallion kirjaston asiakaspalvelupisteestä noin kuukausi ennen seuraavan lukupiirin ajankohtaa.</p><p> ***</p><p>Kuvaus lokakuun teoksesta Oikeusjuttu: </p><p>”Toimittaja, kirjailija ja verkkojulkaisu Long Playn perustajajäsen Johanna Vehkoo on kirjoittanut kirjoja ja artikkeleita verkkovihasta, misinformaatiosta ja sananvapaudesta. Aihevalinnoillaan hän on päätynyt laitaoikeiston tutkan alle ja saanut kokea monenlaista häiriköintiä. </p><p>Marraskuussa 2016 Vehkoo kirjoitti Facebookissa rajatun porukan nähtäväksi kirjoituksen, jossa käytti sanoja natsipelle, rasisti ja natsi asiayhteydessä tunnettuun pohjoissuomalaiseen poliitikkoon ja vaikuttajaan. Kirjoitus ei jäänytkään vain pienen porukan nähtäville ja johti oikeuskäsittelyyn kunnianloukkauksesta. </p><p>Nyt Vehkoo on kirjoittanut Franz Kafkan hengessä Oikeusjutuksi (Kosmos, 2021) nimeämänsä tapauskertomuksen prosessista, joka saattaa osaltaan määritellä, mitä Suomessa saa sanoa.” (kulttuuritoimitus.fi) </p><p>***</p><p> <strong>Esteettömyystiedot</strong> </p><p>Ulko-ovi</p><p>Kallion kirjaston esteetön sisäänkäynti sijaitsee Porthaninkadun puolella. Ovelle johtaa kivinen luiska, jonka molemmin puolin on kaiteet. Luiska on kapeimmillaan 99 cm leveä. Ulko-ovi aukeaa automaattisesti lähestyttäessä. Oviaukon leveys on 87 cm. Oven kynnyksen korkeus on 1 cm.</p><p>Ryhmätila Otso</p><p>Ryhmätila Otso sijaitsee kirjaston 1. kerroksessa pääovien lähistöllä. Ryhmätilan oviaukon leveys on n. 82 cm. Oven kynnyksen korkeus on n. 1,5 cm.</p><p>Wc-tilat</p><p>Kirjaston 1. kerroksen Kupolisalissa on kaksi asiakas-wc:tä. Wc-tilojen oviaukot ovat 82 cm leveät. Kirjaston 3. kerroksessa on kaksi lasten ja lapsiperheiden käytössä olevaa wc:tä, joista toisessa on lastenhoitopöytä ja tilaa lastenrattaille.</p><p>Hissi (ei tarvita lukupiirin kokoontumiseen tultaessa)<br><br> Hissin oviaukon leveys on 88 cm. Hissikorin leveys on 102 cm ja syvyys 138 cm. Hissin ovi avataan kahvasta vetämällä.</p><p>***</p><p>Lisätietoja: anna.koskimies@hel.fi</p><p>Kallion kirjasto<br> Viides linja 11<br> 00530 Helsinki</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}