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

{
    "meta": {
        "count": 27175,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=657",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=655"
    },
    "data": [
        {
            "id": "helmet:282659",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8154",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:38.106783Z",
                "last_modified_time": "2024-02-06T13:09:55.741684Z",
                "custom_data": null,
                "email": "rikhardinkadun_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 354,
                "image": 7811,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.946783,
                        60.166336
                    ]
                },
                "street_address": {
                    "fi": "Rikhardinkatu 3",
                    "sv": "Richardsgatan 3",
                    "en": "Rikhardinkatu 3"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Rikhardinkadun kirjasto",
                    "sv": "Richardsgatans bibliotek",
                    "en": "Rikhardinkatu Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85013"
                },
                "description": null,
                "info_url": {
                    "fi": "http://www.helmet.fi/rikhardinkadunkirjasto",
                    "sv": "http://www.helmet.fi/richardsgatansbibliotek",
                    "en": "http://www.helmet.fi/rikhardinkatulibrary"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10840",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:20:02.009690Z",
                    "last_modified_time": "2024-02-06T13:24:29.951609Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 187,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Rikhardinkadun kirjasto ",
                        "sv": "Richardsgatans bibliotek",
                        "en": "Rikhardinkatu Library"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10840/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11699",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.241364Z",
                    "last_modified_time": "2024-02-06T13:24:08.826070Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2655,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Opastukset ja kurssit",
                        "sv": "Undervisning och kurser",
                        "en": "Training and courses",
                        "ru": "Курсы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2149",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "opastaminen",
                        "opastukset",
                        "vägledning"
                    ],
                    "created_time": "2023-08-16T05:13:22.316826Z",
                    "last_modified_time": "2023-08-16T05:13:22.316842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3278,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opastus",
                        "sv": "guidning",
                        "en": "guidance"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9270",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:05.397638Z",
                    "last_modified_time": "2023-08-16T05:18:05.397655Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 18874,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kurssit",
                        "sv": "kurser",
                        "en": "courses (societal objects)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 5717,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-10-27T07:23:45.903563Z",
                    "last_modified_time": "2024-02-06T13:39:22.696000Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{969698C7-835A-4C05-A781-F8F0AB3DCFB8}/107070",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5717/?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": "2024-03-11T09:23:33.422223Z",
            "last_modified_time": "2024-03-11T09:23:33.523903Z",
            "date_published": "2023-08-14T11:39:00Z",
            "start_time": "2024-02-09T07:30:00Z",
            "end_time": "2024-02-09T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Digitukea ajanvarauksella"
            },
            "description": {
                "fi": "<p>Ongelmia tietokoneen tai tabletin kanssa? Nyt on mahdollisuus saada apua tietoteknisiin ongelmiin.</p><p>Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Opastukseen voi tuoda oman laitteen mukaan. Digitalkkarina toimii tieto- ja viestintätekniikan opiskelija, joka suorittaa kirjastossa opintoihinsa liittyvää harjoittelujaksoa.</p><p>Digitalkkari on tavattavissa Rikhardinkadun kirjastossa perjantaisin <strong>9.2. - 17.5.2024 klo 9.30–15</strong>.</p><p>Varaa opastusaika puhelimitse: 09 3108 5013, kirjaston asiakaspalvelupisteestä tai sähköisestä ajanvarauskalenterista: <a href=\"https://outlook.office365.com/owa/calendar/Rikhardinkadunkirjasto@helsinginkaupunki.onmicrosoft.com/bookings/\">Digitalkkari ajanvaraus</a></p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Varaa aika opastukseen!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282659/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4rgum",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4210,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66oi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.151726Z",
                    "last_modified_time": "2023-12-13T11:20:12.151743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2779,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Leppävaara",
                        "sv": "Alberga",
                        "en": "Leppävaara"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66tq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.193875Z",
                    "last_modified_time": "2023-12-13T11:20:12.193895Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 425,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kilo",
                        "sv": "Kilo",
                        "en": "Kilo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67oi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.407707Z",
                    "last_modified_time": "2023-12-13T11:20:12.407727Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 134,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kera",
                        "sv": "Kera",
                        "en": "Kera"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8616,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5095,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-03-11T09:16:05.904225Z",
            "last_modified_time": "2024-03-11T09:16:05.904247Z",
            "date_published": null,
            "start_time": "2024-04-09T13:00:00Z",
            "end_time": "2024-04-09T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Musse ja Helium - fantasiatyöpaja ",
                "sv": "Musse & Helium – fantasiverkstad ",
                "en": "Musse and Helium- fantasy workshop (The event is in Finnish and Swedish)"
            },
            "description": {
                "fi": "<p>\"Talon seinään on ilmestynyt salaperäinen kolo! Uskallatko astua sisään maagiseen satumaailmaan?\"  <br>Työpaja on kaksikielinen (ruotsi ja suomi) seikkailu perheille Musse ja Helium -kirjasarjan tunnelmissa. <br>Pajassa pääset luomaan oman fantasiamaailmasi. Ikäsuositus: perheet ja 5–9-vuotiaat. Paikka: Jaminurkka </p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p>",
                "sv": "<p>En dag uppstår det ett hål i väggen! Vågar du stiga in i den magiska sagovärlden? <br>Välkommen med på en tvåspråkig (finska och svenska) verkstad inspirerad av Musse &amp; Helium-bokserien. I verkstaden skapar du en egen fantasivärld. Verkstaden passar speciellt bra för familjer och barn i åldern 5–9. Plats: Jaminurkka.</p><p>Evenemanget är en del av Helmet-bibliotekens gemensamma Magiska vecka, som bjuder in fantasy-litteraturfantaster i olika åldrar till biblioteket. Du hittar alla veckans evenemang med sökordet Magiska veckan.</p>",
                "en": "<p>\"A mysterious hole has appeared in the wall of the house! Dare you enter a magical fairytale world?\"  <br>The workshop is a bilingual (Swedish and Finnish) adventure for families in the style of the Musse and Helium book series. <br>In the workshop, you get to create your own fantasy world. Age recommendation: families and children aged 5-9. Place: Jaminurkka</p><p>The event is part of the Helmet Libraries' collective Magical Week, which invites fantasy literature lovers of all ages to the library. You can find all the events of the week by searching for Maaginen viikko.</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Työpaja on kaksikielinen (ruotsi ja suomi) seikkailu perheille Musse ja Helium -kirjasarjan tunnelmissa. ",
                "sv": "Välkommen med på en tvåspråkig (finska och svenska) verkstad inspirerad av Musse & Helium-bokserien.",
                "en": "The workshop is a bilingual (Swedish and Finnish) adventure for families in the style of the Musse and Helium book series."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rgum/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4rgx4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1869,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1927,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1921,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1978,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1730,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8616,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5095,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1164,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-03-11T09:05:17.972661Z",
            "last_modified_time": "2024-03-11T09:06:27.308963Z",
            "date_published": null,
            "start_time": "2024-04-14T11:00:00Z",
            "end_time": "2024-04-14T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Fantasiahahmoja fimo-massasta (ruotsinkielinen tapahtuma)",
                "sv": "Fantasifigurer i miniatyr av fimolera",
                "en": "Fantasy characters from fimo modelling clay (The event is in Swedish)"
            },
            "description": {
                "fi": "<p>Lohikäärme, haltija tai peikko? Miltä näyttää sinun tarinasi sankari tai roisto?<br>Valmistamme Pajassa miniatyyrihahmoja fimo-massasta. Espoon ruotsinkieliset kirjastopedagogit antavat myös kirjavinkkejä kaikenikäisille fantasiafaneille. Paja sopii kaikille, mutta etenkin jo 6-vuotta täyttäneille. Välkommen med! </p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p>",
                "sv": "<p>En drake, en alv eller ett troll? Hur ser hjälten eller boven ut i ditt fantasiäventyr? <br>I Paja-verkstaden skapar vi riktigt små fantasifigurer av fimolera. Dessutom ger Esbo svenska bibliotekspedagoger svenskspråkiga boktips för fantasyälskare i alla åldrar. Verkstaden passar för alla, men speciellt bra för 6-år och uppåt. Välkommen med! </p><p>Evenemanget är en del av Helmet-bibliotekens gemensamma Magiska vecka, som bjuder in fantasy-litteraturfantaster i olika åldrar till biblioteket. Du hittar alla veckans evenemang med sökordet Magiska veckan.</p>",
                "en": "<p>Dragon, leprechaun or troll? What does the hero or the villain in your story look like?<br>In the workshop, we make miniature characters from fimo modelling clay. Espoo's Swedish-speaking library pedagogues will also give book tips for fantasy fans of all ages. The workshop is suitable for everyone, but especially for children over 6 years old. Välkommen med!</p><p>The event is part of the Helmet Libraries' collective Magical Week, which invites fantasy literature lovers of all ages to the library. You can find all the events of the week by searching for Maaginen viikko.</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Valmistamme Pajassa miniatyyrihahmoja fimo-massasta.  Välkommen med! ",
                "sv": "I Paja-verkstaden skapar vi riktigt små fantasifigurer av fimolera.  Välkommen med! ",
                "en": "In the Workshop we make miniature figures from fimo modelling clay.  Välkommen med!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rgx4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:275099",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8184",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:39.190761Z",
                "last_modified_time": "2024-11-30T06:09:27.009846Z",
                "custom_data": null,
                "email": "itakeskuksen_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 909,
                "image": 7815,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.080221,
                        60.21196
                    ]
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Itäkeskuksen kirjasto",
                    "sv": "Östra centrums bibliotek",
                    "en": "Itäkeskus Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85090"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84927",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84927",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84927"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11699",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.241364Z",
                    "last_modified_time": "2024-02-06T13:24:08.826070Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2655,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Opastukset ja kurssit",
                        "sv": "Undervisning och kurser",
                        "en": "Training and courses",
                        "ru": "Курсы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2149",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "opastaminen",
                        "opastukset",
                        "vägledning"
                    ],
                    "created_time": "2023-08-16T05:13:22.316826Z",
                    "last_modified_time": "2023-08-16T05:13:22.316842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3278,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opastus",
                        "sv": "guidning",
                        "en": "guidance"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9270",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:05.397638Z",
                    "last_modified_time": "2023-08-16T05:18:05.397655Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 18874,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kurssit",
                        "sv": "kurser",
                        "en": "courses (societal objects)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2756,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:31:13.435226Z",
                    "last_modified_time": "2024-02-06T13:38:09.040503Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{6A38E3A1-9019-473A-8E4D-A1D88D298078}/79018",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2756/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-12-19T15:21:59.204328Z",
            "last_modified_time": "2024-03-11T03:24:09.012317Z",
            "date_published": "2021-12-21T22:00:00Z",
            "start_time": "2024-02-27T14:00:00Z",
            "end_time": "2024-02-27T17: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,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Arabian- ja englanninkielistä digitukea",
                "en": "Digital guidance in Arabic and English"
            },
            "description": {
                "fi": "<h2>Digital guidance in Arabic and English<br> التوجيه والارشاد الرقمي</h2><p>Työväenopiston digitukea Itäkeskuksen kirjastossa tiistaisin 9.1.-28.5.2024 Klo 16–19.15.</p><p>Apua Windows-tietokoneen, tabletin ja älypuhelimen, internetin ja sähköpostin käyttöön sekä sähköiseen asiointiin, mm. sähköisten lomakkeiden täyttämiseen ja lähettämiseen virastoihin (Kela, TE-toimisto).</p><p>Noudatathan terveysturvallisuusohjeita.</p><p>Opastajan yhteystiedot:<br><a href=\"mailto:islam.al-badri@edu.hel.fi\">islam.al-badri@edu.hel.fi</a><br> Voit ottaa yhteyttä opastajaan myös puhelimitse opastusajankohtana puh. 046 597 4563.</p><p>Vapaa pääsy, ei ilmoittautumista.</p><p> <strong> Stoa, Itäkeskus </strong> </p><p> Turunlinnantie 1 </p>",
                "en": "<p>Digital guidance in Itäkeskus Library on Tuesdays 9.1.-28.5.2024 at 16.00-19.15. You can get help with using your Windows computer, tablet and smartphone, internet and e-mail, as well assistance filling and sending electronic forms to agencies (e.g. Kela, TE office). Free admission, no enrolment.</p><p>We kindly remind you to follow safety precautions.</p><p>Contacts:<br> islam.al-badri@edu.hel.fi<br> You can contact by phone 046 597 4563 during the guidance hours</p>",
                "ar": "<p> <strong>التوجيه والإرشاد الرقمي</strong> </p><p>يمكنك هنا الحصول على مساعدة بشأن استخدام الكمبيوتر الذي يعمل بنظام وندوز والكمبيوتر اللوحي والهاتف الذكي والإنترنت والبريدالإلكتروني وكذلك المساعدة بتعبئة وإرسال النماذج </p><p>مثلا الى كيلا و مكتب العمل،</p><p>المشاركه لاتتطلب التسجيل مقدما. يمكن القدوم الى مكان الارشاد مباشرةَ. قم بالألتزام بأرشادات الأمن والسلامه السارية المعمول بها حاليآ. نذكركم بغسل ايديكم قبل الارشاد التوجيه والحفاظ على مسافة كافية وارتداء كمامة أثناء الإرشاد. دعونا نبقى آمنين نحمي أنفسنا والآخرين.</p><p> <strong> Stoa, Itäkeskus </strong> </p><p> <strong>مكتبة ايتاكيسكوس</strong> </p><p>كل خميس 9.1. – 28.5.2024</p><p>خلال الاوقات 16 – 19.15</p><p> Turunlinnantie 1 </p><p>لمزيد من المعلومات</p><p> <a href=\"mailto:islam.al-badri@edu.hel.fi\"> islam.al-badri@edu.hel.fi </a> </p><p>الهاتف 0465974563</p><p>يقوم المرشد بالأجابه على الهاتف فقط أثناء الأوقات المخصصه للتوجيه والأرشاد الرقمي</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Arabian- ja englanninkielistä digitukea, التوجيه والارشاد الرقمي",
                "en": "Digital guidance in Arabic and English, التوجيه والارشاد الرقمي"
            },
            "location_extra_info": {
                "fi": "Turunlinnantie 1",
                "en": "Turunlinnantie 1"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:275099/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282333",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:51342",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vironniemi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vironniemi",
                            "sv": "Estnäs"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    }
                ],
                "created_time": "2023-08-15T12:11:22.597441Z",
                "last_modified_time": "2024-04-12T05:09:52.010183Z",
                "custom_data": null,
                "email": "oodi@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1220,
                "image": 9855,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.938158,
                        60.17397
                    ]
                },
                "street_address": {
                    "fi": "Töölönlahdenkatu 4",
                    "sv": "Tölöviksgatan 4",
                    "en": "Töölönlahdenkatu 4"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Keskustakirjasto Oodi",
                    "sv": "Helsingfors centrumbibliotek Ode",
                    "en": "Helsinki Central Library Oodi"
                },
                "telephone": {
                    "fi": "+358 9 310 85000"
                },
                "description": {
                    "fi": "Oodi on tapahtumapaikka, lukemisen talo ja monipuolinen kaupunkikokemus.\nOodi tarjoaa tietoja, taitoja ja tarinoita, ja sinne on helppo tulla oppimaan,\neläytymään, nauttimaan ja työskentelemään. Kaikille avoin uuden ajan kirjasto\non elävä ja toiminnallinen kohtaamispaikka.",
                    "sv": "Ode är en evenemangsplats, ett läsandets hus och en mångsidig stadsupplevelse. Det bjuder på kunskap, nya färdigheter och berättelser, och är lättillgänglig för inlärning, inlevelse, arbete och avkoppling. Det är ett modernt bibliotek och en levande och funktionell mötesplats till för alla stadsbor.",
                    "en": "Oodi is a venue for events, a house of reading and a diverse urban experience.\nIt will provide its users with knowledge, new skills and stories, and will be an\neasy place to access for learning, story immersion, work and relaxation. Oodi\nis a library of a new era, a living and functional meeting place open for all."
                },
                "info_url": {
                    "fi": "https://www.oodihelsinki.fi/",
                    "sv": "https://oodihelsinki.fi/sv/",
                    "en": "https://oodihelsinki.fi/en/"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11193",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.465802Z",
                    "last_modified_time": "2024-02-06T13:24:10.002830Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 989,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kirjallisuus",
                        "sv": "Litteratur",
                        "en": "Literature",
                        "ru": "Литературные события"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11893",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.282484Z",
                    "last_modified_time": "2024-02-06T13:25:26.452402Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 178,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Keskustakirjasto Oodi",
                        "sv": "Helsingfors centrumbibliotek Ode",
                        "en": "Helsinki Central Library Oodi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11039,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-26T13:30:28.662080Z",
                    "last_modified_time": "2024-02-26T13:30:28.662104Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{CD855AD1-DC4F-42F0-BEA9-3DA070C6AB68}/109804",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11039/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-09T21:25:25.404562Z",
            "last_modified_time": "2024-03-09T21:25:25.494283Z",
            "date_published": "2024-02-26T12:28:36.380000Z",
            "start_time": "2024-03-09T13:00:00Z",
            "end_time": "2024-03-09T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "en": "Runosvengi Open Mic"
            },
            "description": {
                "en": "<p>Runosvengi welcomes everyone to Oodi's Book Heaven for a Women's day afterparty on Sat 9.3. at 3 PM. <br><br> After the performance there is an opportunity for everyone to read their own poetry. <br> All languages are welcome - poetry knows no borders.</p><p>You don't have to register beforehand. <br> The event is open for everyone. There is enough space, supportive host and a kind audience. </p><p>The event is organised by Runosvengi<br> You can read about <a href=\"http://runosvengi.wixsite.com/runosvengi/\">Runosvengi here</a><a href=\"https://runosvengi.wixsite.com/runosvengi/\">.</a> (website is in Finnish)</p>"
            },
            "info_url": null,
            "short_description": {
                "en": "Runosvengi welcomes everyone to Oodi's Book Heaven for a Women's day afterparty on Sat 9.3. at 3 PM."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282333/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281893",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:51342",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vironniemi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vironniemi",
                            "sv": "Estnäs"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kluuvi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kluuvi",
                            "sv": "Gloet"
                        }
                    }
                ],
                "created_time": "2023-08-15T12:11:22.597441Z",
                "last_modified_time": "2024-04-12T05:09:52.010183Z",
                "custom_data": null,
                "email": "oodi@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1220,
                "image": 9855,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.938158,
                        60.17397
                    ]
                },
                "street_address": {
                    "fi": "Töölönlahdenkatu 4",
                    "sv": "Tölöviksgatan 4",
                    "en": "Töölönlahdenkatu 4"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Keskustakirjasto Oodi",
                    "sv": "Helsingfors centrumbibliotek Ode",
                    "en": "Helsinki Central Library Oodi"
                },
                "telephone": {
                    "fi": "+358 9 310 85000"
                },
                "description": {
                    "fi": "Oodi on tapahtumapaikka, lukemisen talo ja monipuolinen kaupunkikokemus.\nOodi tarjoaa tietoja, taitoja ja tarinoita, ja sinne on helppo tulla oppimaan,\neläytymään, nauttimaan ja työskentelemään. Kaikille avoin uuden ajan kirjasto\non elävä ja toiminnallinen kohtaamispaikka.",
                    "sv": "Ode är en evenemangsplats, ett läsandets hus och en mångsidig stadsupplevelse. Det bjuder på kunskap, nya färdigheter och berättelser, och är lättillgänglig för inlärning, inlevelse, arbete och avkoppling. Det är ett modernt bibliotek och en levande och funktionell mötesplats till för alla stadsbor.",
                    "en": "Oodi is a venue for events, a house of reading and a diverse urban experience.\nIt will provide its users with knowledge, new skills and stories, and will be an\neasy place to access for learning, story immersion, work and relaxation. Oodi\nis a library of a new era, a living and functional meeting place open for all."
                },
                "info_url": {
                    "fi": "https://www.oodihelsinki.fi/",
                    "sv": "https://oodihelsinki.fi/sv/",
                    "en": "https://oodihelsinki.fi/en/"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11193",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.465802Z",
                    "last_modified_time": "2024-02-06T13:24:10.002830Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 989,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kirjallisuus",
                        "sv": "Litteratur",
                        "en": "Literature",
                        "ru": "Литературные события"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11893",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.282484Z",
                    "last_modified_time": "2024-02-06T13:25:26.452402Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 178,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Keskustakirjasto Oodi",
                        "sv": "Helsingfors centrumbibliotek Ode",
                        "en": "Helsinki Central Library Oodi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 10892,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-15T16:27:41.946573Z",
                    "last_modified_time": "2024-02-15T16:27:41.946596Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{35623550-5876-4C26-9F73-33B4272E056E}/109557",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10892/?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": "2024-02-15T16:27:41.904194Z",
            "last_modified_time": "2024-03-09T21:25:25.344453Z",
            "date_published": "2024-02-15T15:36:00Z",
            "start_time": "2024-03-09T13:00:00Z",
            "end_time": "2024-03-09T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Runosvengi svengaa Oodissa"
            },
            "description": {
                "fi": "<p>Runosvengi svengaa ja toivottaa tervetulleeksi naistenpäivän jatkoille lauantaina 9.3.2024 klo 15-16 Keskustakirjasto Oodin Kirjataivaan Saarikoskimatolle!</p><p>Runosvengin jälkeen yleisö saa mahdollisuuden esittää omia runoja.<br> Kaikki runouden kielet ovat tervetulleita, sillä runous ei tunne kieli- eikä kulttuurirajoja.</p><p>Ilmoittautumista ei edellytetä etukäteen.</p><p>Tilaisuus on kaikille avoin. Ympärillä on tilaa hengittää, kannustava juontaja, tukeva lattia ja lempeä yleisö.</p><p>Mahdollisuus on myös ostaa runokirjojamme lahjaksi itselle tai ystävälle.<br><br> Voit lukea lisää meistä <a href=\"https://runosvengi.wixsite.com/runosvengi/\">täältä.</a></p><p>Tapahtuman järjestää Runosvengi.</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Runosvengi svengaa ja toivottaa tervetulleeksi naistenpäivän jatkoille 9.3.2024 klo 15-16 Keskustakirjasto Oodin Kirjataivaan Saarikoskimatolle!"
            },
            "location_extra_info": {
                "fi": "3. krs. Saarikoski-matto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281893/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282284",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4210,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10657",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-11-30T19:19:46.905579Z",
                    "last_modified_time": "2024-02-24T00:28:55.821526Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Афиша",
                        "ru": "Афиша"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10657/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10670",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:20:27.514757Z",
                    "last_modified_time": "2024-02-24T00:28:55.846650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 19,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lapset",
                        "ru": "Детям"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10670/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10737",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.911434Z",
                    "last_modified_time": "2024-02-06T13:24:10.386541Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 255,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helmet",
                        "sv": "Helmet",
                        "en": "Helmet",
                        "ru": "Helmet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10844",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:20:31.382165Z",
                    "last_modified_time": "2024-03-12T15:19:19.756890Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 147,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Sellon kirjasto ",
                        "sv": "Sellobiblioteket",
                        "ru": "Библиотека Селло"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11383",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T15:26:27.514853Z",
                    "last_modified_time": "2024-02-06T13:37:47.200418Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 154,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Афиша",
                        "ru": "Афиша"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11383/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11779",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2024-02-24T00:28:55.750384Z",
                    "last_modified_time": "2024-02-24T00:28:55.798951Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Русскоязычная библиотека",
                        "ru": "Русскоязычная библиотека"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11779/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11781",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-22T14:18:11.702963Z",
                    "last_modified_time": "2024-02-06T13:37:49.128860Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 77,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Афиша",
                        "ru": "Афиша"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11781/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11876",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-29T10:18:40.394124Z",
                    "last_modified_time": "2024-02-23T21:28:42.373573Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 19,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Афиша",
                        "ru": "Афиша"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11876/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:23",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:20:04.364748Z",
                    "last_modified_time": "2024-02-23T21:28:42.342827Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 57,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helmet",
                        "sv": "Helmet",
                        "ru": "Helmet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:23/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2171,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10545,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11023,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-24T00:31:00.779946Z",
                    "last_modified_time": "2024-02-24T00:31:00.779969Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{2E47E503-017A-41C6-9FCF-AB6916EE5044}/109780",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11023/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-26T08:25:28.106789Z",
            "last_modified_time": "2024-03-09T16:26:02.549068Z",
            "date_published": "2024-02-25T22:00:00Z",
            "start_time": "2024-03-09T14:00:00Z",
            "end_time": "2024-03-09T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Konsertti \"Lauluja rakkaudesta\" Shaika Balalaika",
                "ru": "Концерт \" Песни о любви\" Шайка Балалайка"
            },
            "description": {
                "fi": "<p> <strong>Konsertti </strong> <strong> <em>\"Lauluja rakkaudesta\" </em> </strong> </p><p> <strong>Shaika Balalaika </strong> </p><p> <strong>esiintyy Sello-kirjaston lavalla </strong> </p><p> <em> <strong>9.3.2024 klo 16.00.</strong> </em> </p><p> <strong>Tervetuloa!</strong> </p><p> <strong>Esitys suomeksi ja venäjäksi</strong> </p><p> <strong>--------------------------------------------</strong> </p><p> <strong>Концерт <em>\" Песни о любви\"</em></strong> </p><p> <b> музыкальный коллектив </b> </p><p> <strong>Шайка Балалайка </strong> </p><p> <strong>выступит на сцене библиотеки Селло </strong> </p><p> <em> <strong>9.3.2024 в 16.00</strong> </em> </p><p> <strong>Добро пожаловать</strong> </p><p> <strong>Исполнение на финском и русском языках</strong> </p>",
                "ru": "<p> <strong>Концерт </strong> <strong> <em>\" Песни о любви\"</em> </strong> </p><p> <b> музыкальный коллектив </b> </p><p> <strong>Шайка Балалайка </strong> </p><p> <strong>выступит на сцене библиотеки Селло </strong> </p><p> <em> <strong>9.3.2024 в 16.00</strong> </em> </p><p> <strong>Добро пожаловать</strong> </p><p> <strong>Исполнение на финском и русском языках</strong> </p><p> <strong>----------------------------------------------------------------</strong> </p><p> <strong>Konsertti </strong> <strong> <em>\"Lauluja rakkaudesta\" </em> </strong> </p><p> <strong>Shaika Balalaika </strong> </p><p> <strong>esiintyy Sello-kirjaston lavalla </strong> </p><p> <em> <strong>9.3.2024 klo 16.00.</strong> </em> </p><p> <strong>Tervetuloa!</strong> </p><p> <strong>Esitys suomeksi ja venäjäksi</strong> </p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Konsertti \"Lauluja rakkaudesta\"\nShaika Balalaika\nesiintyy Sello-kirjaston lavalla\n9.3.2024 klo 16.00.\nTervetuloa!\nEsitys suomeksi ja venäjäksi",
                "ru": "Концерт \" Песни о любви\" музыкального коллектива Шайка Балалайка Руководитель и солистка коллектива Хели Йорманайнен\nКонцерт посвящён началу весны!"
            },
            "location_extra_info": {
                "fi": "Sellon kirjaston lavalla",
                "ru": "Сцена библиотеки Селло"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282612",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8192",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:39.318952Z",
                "last_modified_time": "2024-02-06T13:09:55.947599Z",
                "custom_data": null,
                "email": "malmin_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 229,
                "image": 7816,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.014954,
                        60.25052
                    ]
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Malmin kirjasto",
                    "sv": "Malms bibliotek",
                    "en": "Malmi Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85070"
                },
                "description": null,
                "info_url": {
                    "fi": "http://www.helmet.fi/malminkirjasto",
                    "sv": "http://www.helmet.fi/malmbibliotek",
                    "en": "http://www.helmet.fi/malmilibrary"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10595",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.573028Z",
                    "last_modified_time": "2024-02-06T13:24:05.656107Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3157,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lapset ja perheet",
                        "sv": "Barn och familjer",
                        "en": "Children and families",
                        "ru": "Lapset ja perheet RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:12005",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:45.085373Z",
                    "last_modified_time": "2024-02-06T13:24:08.630047Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3415,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lasten tapahtumat",
                        "sv": "Barn",
                        "en": "Kids",
                        "ru": "Детям"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13050",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:15:07.041577Z",
                    "last_modified_time": "2023-08-16T05:15:07.041594Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2890,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapsiperheet",
                        "sv": "barnfamiljer",
                        "en": "families with children"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10545,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11283,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-07T13:26:21.126573Z",
                    "last_modified_time": "2024-03-07T13:26:21.126601Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{16802278-1760-43B8-99BF-76E1AF3B9E86}/110027",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11283/?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": "2024-03-07T13:26:21.099788Z",
            "last_modified_time": "2024-03-09T12:25:53.149550Z",
            "date_published": "2024-03-07T12:39:00Z",
            "start_time": "2024-04-13T07:00:00Z",
            "end_time": "2024-04-13T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Taikametsä – lasten lauantai"
            },
            "description": {
                "fi": "<p>Astu maagiseen metsään, jota asuttavat niin keijut, örkit kuin taikaeläimetkin.<br> Taikametsästä löytyy kaikenlaista puuhaa lapsiperheille aina askartelusta kirjastosuunnistukseen.<br> Teeman mukainen pukeutuminen sallittua.<br><br> Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Astu maagiseen metsään, jota asuttavat niin keijut, örkit kuin taikaeläimetkin.\nTaikametsästä löytyy kaikenlaista puuhaa lapsille perheineen."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282612/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282608",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8192",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:39.318952Z",
                "last_modified_time": "2024-02-06T13:09:55.947599Z",
                "custom_data": null,
                "email": "malmin_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 229,
                "image": 7816,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.014954,
                        60.25052
                    ]
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Malmin kirjasto",
                    "sv": "Malms bibliotek",
                    "en": "Malmi Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85070"
                },
                "description": null,
                "info_url": {
                    "fi": "http://www.helmet.fi/malminkirjasto",
                    "sv": "http://www.helmet.fi/malmbibliotek",
                    "en": "http://www.helmet.fi/malmilibrary"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.512501Z",
                    "last_modified_time": "2024-02-06T13:24:05.510383Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2460,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat",
                        "sv": "Övriga evenemang",
                        "en": "Other events",
                        "ru": "Другие "
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11288,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-07T14:25:45.352644Z",
                    "last_modified_time": "2024-03-07T14:25:45.352659Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{F0AEC91A-2D25-4125-A702-C4F43DE4C8AD}/110031",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11288/?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": "2024-03-07T14:25:45.324117Z",
            "last_modified_time": "2024-03-09T12:25:21.635937Z",
            "date_published": "2024-03-07T13:46:00Z",
            "start_time": "2024-03-20T16:00:00Z",
            "end_time": "2024-03-20T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Helsingin pormestari Juhana Vartiainen Malmin kirjastossa"
            },
            "description": {
                "fi": "<p>Kuka hän on? Mitä hän ajattelee? Mikä häntä motivoi ja vie eteenpäin vaativassa tehtävässään kaupungin ylimpänä johtajana ja luottamushenkilönä? </p><p> <strong>Pormestari kertoo ajatuksiaan ja näkemyksiään työstään ja elämästään.</strong> </p><p>Pormestaria haastattelee Malmin seurakunnan yhteiskunnallisen työn pastori <strong>Kirsi Ojansuu-Kaunisto</strong>.</p><p>Tilaisuudessa on varattu aikaa yleisökysymyksille.</p><p>Järjestetään yhteistyössä Malmin seurakunnan kanssa.</p><p>Lampimästi tervetuloa!</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Pastori Kirsi Ojansuu-Kaunisto haastattelee. Tilaisuus järjestetään yhdessä Malmin seurakunnan kanssa. Tervetuloa!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282608/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281794",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1351,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10673",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.802978Z",
                    "last_modified_time": "2024-02-06T13:24:11.621016Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 890,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuoret",
                        "sv": "Unga",
                        "en": "Youth",
                        "ru": "Nuoret RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8693,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2171,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15287,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6654,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-15T16:23:15.208200Z",
                    "last_modified_time": "2024-02-06T13:38:56.286395Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{420AFCBB-04DF-479C-B9BF-AFDCAE0B2D83}/108099",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6654/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-14T12:28:43.210193Z",
            "last_modified_time": "2024-03-09T12:25:12.547511Z",
            "date_published": "2023-12-15T14:14:00Z",
            "start_time": "2024-03-14T15:00:00Z",
            "end_time": "2024-03-14T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Flamenco kitarakurssi aloittelijoille",
                "en": "Learning Guitar Flamenco Together"
            },
            "description": {
                "fi": "<h2>Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024</h2></p><p>Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi.</p><p> <br> Torstaisin 25.1, 1.2, 8.2,15.2, 22.2, 29.2, 7.3 ja 14.3<br> klo 17.00-18.00<br><br><strong>Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.</strong><br><br><br> Lisätietoa kurssista: lauri.iljin@espoo.fi<br><br><br><br> Ensimmäinen kurssi aloittelijoille sisältää neljä harjoituskertaa seuraavasti:</p><p> <strong>Jakso 1: Johdatus kitaraan ja soittamiseen</strong> <br> <br> Tutustutaan kitaran osiin, esim. kielet, nauhat, viritystapit ja koppa.<br><br> Opetellaan kitarankäsittelyn perustekniikoita, kuten oikeaa soittoasentoa, käsien asettamista ja kielten näppäilyä. Käydään läpi kitaran perusterminologia, kuten nuotit, soinnut ja komppaustekniikat.<br><br><br><strong>Jakso 2: Kitaran virittäminen ja yksinkertaisten melodioiden soittaminen</strong><br><br> Opetellaan kitaran viritys viritysmittarin avulla. Käydään läpi sävelten ja yksinkertaisten melodioiden soittaminen avoimilla kielillä ja perussoinnuilla. Harjoitellaan yksinkertaisia harjoituksia sormien kätevyyden ja koordinaation kehittämiseksi.<br><br><br><strong>Jakso 3: Perussointujen ja sointujen oppiminen</strong><br><br> Harjoitellaan avoimia perussointuja, kuten G, C, D, A ja E ja siirtymistä sointujen välillä sujuvasti. Opetellaan peruskomppausta sointujen säestykseen ja rytmin luomiseen.<br><br><strong>Jakso 4: Kokoaminen yhteen: Yksinkertaisten kappaleiden soittaminen</strong><br><br> Yhdistetään aiemmilla tunneilla opitut taidot ja lisäksi soitetaan yksinkertaisia kappaleita</p><p>#musiikki #kitara #kurssi</p>",
                "en": "<h2>Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024</h2></p><p>Would be great if you bring your own guitar, but if you have not bought yet, No Worry! there are some guitars in library for borrowing in the course. The course is held in English and Finnish.</p><p>Thursdays 25th of Jan, 1st of Feb, 8th of Feb, 15th of Feb, 22th of Feb, 29th of Feb, 7th of Mar, 14th of Mar at 17:00-18:00</p><p> <strong>Pre-registration on the Helmet website, 10 participant can attend the class. Participation is free of charge.</strong> </p><p>more information about class: lauri.iljin@espoo.fi<br> </p><p>First course for beginners contains four session as bellow:</p><p> <strong>Session 1: Introduction to the Guitar and Basic Anatomy</strong> </p> <li>Familiarize the student with the parts of the guitar, including the strings, frets, tuning pegs, bridge, and soundhole.</li> <li>Teach basic guitar handling techniques, such as proper posture, hand positioning, and string plucking.</li> <li>Introduce basic guitar terminology, such as notes, chords, and strumming patterns.</li> <li></li> <p> <strong>Session 2: Tuning the Guitar and Playing Simple Melodies</strong> </p> <li>Teach the student how to tune the guitar using a tuner or an electronic tuning device.</li> <li>Introduce the concept of fretting notes and playing simple melodies using open strings and basic chords.</li> <li>Practice simple exercises to develop finger dexterity and coordination.</li> <li></li> <p> <strong>Session 3: Learning Basic Chords and Strumming Patterns</strong> </p> <li>Introduce basic open chords, such as G, C, D, A, and E.</li> <li>Practice transitioning between chords smoothly.</li> <li>Teach basic strumming patterns to accompany chords and create rhythm.</li> <li></li> <p> <strong>Session 4: Putting it All Together: Playing Simple Songs</strong> </p> <li>Combine the skills learned in previous sessions to play simple songs.</li> <li>Start with easy folk songs or nursery rhymes that utilize the basic chords and strumming patterns.</li> <li>Encourage the student to practice regularly and develop confidence in their playing.</li> </p><p>#music #guitar #playing </p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024! Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi. Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.",
                "en": "Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024. Session 1: Introduction to the Guitar and Basic Anatomy, Session 2: Tuning the Guitar and Playing Simple Melodies, Session 3: Learning Basic Chords and Strumming Patterns, Session 4: Putting it All Together: Playing Simple Songs"
            },
            "location_extra_info": {
                "fi": "soittohuone",
                "en": "music room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281794/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281792",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1351,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10673",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.802978Z",
                    "last_modified_time": "2024-02-06T13:24:11.621016Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 890,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuoret",
                        "sv": "Unga",
                        "en": "Youth",
                        "ru": "Nuoret RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8693,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2171,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15287,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6654,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-15T16:23:15.208200Z",
                    "last_modified_time": "2024-02-06T13:38:56.286395Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{420AFCBB-04DF-479C-B9BF-AFDCAE0B2D83}/108099",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6654/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-14T12:28:26.363053Z",
            "last_modified_time": "2024-03-09T12:25:01.132055Z",
            "date_published": "2023-12-15T14:14:00Z",
            "start_time": "2024-03-07T15:00:00Z",
            "end_time": "2024-03-07T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Flamenco kitarakurssi aloittelijoille",
                "en": "Learning Guitar Flamenco Together"
            },
            "description": {
                "fi": "<h2>Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024</h2></p><p>Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi.</p><p> <br> Torstaisin 25.1, 1.2, 8.2,15.2, 22.2, 29.2, 7.3 ja 14.3<br> klo 17.00-18.00<br><br><strong>Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.</strong><br><br><br> Lisätietoa kurssista: lauri.iljin@espoo.fi<br><br><br><br> Ensimmäinen kurssi aloittelijoille sisältää neljä harjoituskertaa seuraavasti:</p><p> <strong>Jakso 1: Johdatus kitaraan ja soittamiseen</strong> <br> <br> Tutustutaan kitaran osiin, esim. kielet, nauhat, viritystapit ja koppa.<br><br> Opetellaan kitarankäsittelyn perustekniikoita, kuten oikeaa soittoasentoa, käsien asettamista ja kielten näppäilyä. Käydään läpi kitaran perusterminologia, kuten nuotit, soinnut ja komppaustekniikat.<br><br><br><strong>Jakso 2: Kitaran virittäminen ja yksinkertaisten melodioiden soittaminen</strong><br><br> Opetellaan kitaran viritys viritysmittarin avulla. Käydään läpi sävelten ja yksinkertaisten melodioiden soittaminen avoimilla kielillä ja perussoinnuilla. Harjoitellaan yksinkertaisia harjoituksia sormien kätevyyden ja koordinaation kehittämiseksi.<br><br><br><strong>Jakso 3: Perussointujen ja sointujen oppiminen</strong><br><br> Harjoitellaan avoimia perussointuja, kuten G, C, D, A ja E ja siirtymistä sointujen välillä sujuvasti. Opetellaan peruskomppausta sointujen säestykseen ja rytmin luomiseen.<br><br><strong>Jakso 4: Kokoaminen yhteen: Yksinkertaisten kappaleiden soittaminen</strong><br><br> Yhdistetään aiemmilla tunneilla opitut taidot ja lisäksi soitetaan yksinkertaisia kappaleita</p><p>#musiikki #kitara #kurssi</p>",
                "en": "<h2>Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024</h2></p><p>Would be great if you bring your own guitar, but if you have not bought yet, No Worry! there are some guitars in library for borrowing in the course. The course is held in English and Finnish.</p><p>Thursdays 25th of Jan, 1st of Feb, 8th of Feb, 15th of Feb, 22th of Feb, 29th of Feb, 7th of Mar, 14th of Mar at 17:00-18:00</p><p> <strong>Pre-registration on the Helmet website, 10 participant can attend the class. Participation is free of charge.</strong> </p><p>more information about class: lauri.iljin@espoo.fi<br> </p><p>First course for beginners contains four session as bellow:</p><p> <strong>Session 1: Introduction to the Guitar and Basic Anatomy</strong> </p> <li>Familiarize the student with the parts of the guitar, including the strings, frets, tuning pegs, bridge, and soundhole.</li> <li>Teach basic guitar handling techniques, such as proper posture, hand positioning, and string plucking.</li> <li>Introduce basic guitar terminology, such as notes, chords, and strumming patterns.</li> <li></li> <p> <strong>Session 2: Tuning the Guitar and Playing Simple Melodies</strong> </p> <li>Teach the student how to tune the guitar using a tuner or an electronic tuning device.</li> <li>Introduce the concept of fretting notes and playing simple melodies using open strings and basic chords.</li> <li>Practice simple exercises to develop finger dexterity and coordination.</li> <li></li> <p> <strong>Session 3: Learning Basic Chords and Strumming Patterns</strong> </p> <li>Introduce basic open chords, such as G, C, D, A, and E.</li> <li>Practice transitioning between chords smoothly.</li> <li>Teach basic strumming patterns to accompany chords and create rhythm.</li> <li></li> <p> <strong>Session 4: Putting it All Together: Playing Simple Songs</strong> </p> <li>Combine the skills learned in previous sessions to play simple songs.</li> <li>Start with easy folk songs or nursery rhymes that utilize the basic chords and strumming patterns.</li> <li>Encourage the student to practice regularly and develop confidence in their playing.</li> </p><p>#music #guitar #playing </p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024! Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi. Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.",
                "en": "Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024. Session 1: Introduction to the Guitar and Basic Anatomy, Session 2: Tuning the Guitar and Playing Simple Melodies, Session 3: Learning Basic Chords and Strumming Patterns, Session 4: Putting it All Together: Playing Simple Songs"
            },
            "location_extra_info": {
                "fi": "soittohuone",
                "en": "music room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281792/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281793",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1351,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10673",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.802978Z",
                    "last_modified_time": "2024-02-06T13:24:11.621016Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 890,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuoret",
                        "sv": "Unga",
                        "en": "Youth",
                        "ru": "Nuoret RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8693,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2171,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15287,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6654,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-15T16:23:15.208200Z",
                    "last_modified_time": "2024-02-06T13:38:56.286395Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{420AFCBB-04DF-479C-B9BF-AFDCAE0B2D83}/108099",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6654/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-14T12:28:09.580159Z",
            "last_modified_time": "2024-03-09T12:24:50.844359Z",
            "date_published": "2023-12-15T14:14:00Z",
            "start_time": "2024-02-29T15:00:00Z",
            "end_time": "2024-02-29T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Flamenco kitarakurssi aloittelijoille",
                "en": "Learning Guitar Flamenco Together"
            },
            "description": {
                "fi": "<h2>Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024</h2></p><p>Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi.</p><p> <br> Torstaisin 25.1, 1.2, 8.2,15.2, 22.2, 29.2, 7.3 ja 14.3<br> klo 17.00-18.00<br><br><strong>Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.</strong><br><br><br> Lisätietoa kurssista: lauri.iljin@espoo.fi<br><br><br><br> Ensimmäinen kurssi aloittelijoille sisältää neljä harjoituskertaa seuraavasti:</p><p> <strong>Jakso 1: Johdatus kitaraan ja soittamiseen</strong> <br> <br> Tutustutaan kitaran osiin, esim. kielet, nauhat, viritystapit ja koppa.<br><br> Opetellaan kitarankäsittelyn perustekniikoita, kuten oikeaa soittoasentoa, käsien asettamista ja kielten näppäilyä. Käydään läpi kitaran perusterminologia, kuten nuotit, soinnut ja komppaustekniikat.<br><br><br><strong>Jakso 2: Kitaran virittäminen ja yksinkertaisten melodioiden soittaminen</strong><br><br> Opetellaan kitaran viritys viritysmittarin avulla. Käydään läpi sävelten ja yksinkertaisten melodioiden soittaminen avoimilla kielillä ja perussoinnuilla. Harjoitellaan yksinkertaisia harjoituksia sormien kätevyyden ja koordinaation kehittämiseksi.<br><br><br><strong>Jakso 3: Perussointujen ja sointujen oppiminen</strong><br><br> Harjoitellaan avoimia perussointuja, kuten G, C, D, A ja E ja siirtymistä sointujen välillä sujuvasti. Opetellaan peruskomppausta sointujen säestykseen ja rytmin luomiseen.<br><br><strong>Jakso 4: Kokoaminen yhteen: Yksinkertaisten kappaleiden soittaminen</strong><br><br> Yhdistetään aiemmilla tunneilla opitut taidot ja lisäksi soitetaan yksinkertaisia kappaleita</p><p>#musiikki #kitara #kurssi</p>",
                "en": "<h2>Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024</h2></p><p>Would be great if you bring your own guitar, but if you have not bought yet, No Worry! there are some guitars in library for borrowing in the course. The course is held in English and Finnish.</p><p>Thursdays 25th of Jan, 1st of Feb, 8th of Feb, 15th of Feb, 22th of Feb, 29th of Feb, 7th of Mar, 14th of Mar at 17:00-18:00</p><p> <strong>Pre-registration on the Helmet website, 10 participant can attend the class. Participation is free of charge.</strong> </p><p>more information about class: lauri.iljin@espoo.fi<br> </p><p>First course for beginners contains four session as bellow:</p><p> <strong>Session 1: Introduction to the Guitar and Basic Anatomy</strong> </p> <li>Familiarize the student with the parts of the guitar, including the strings, frets, tuning pegs, bridge, and soundhole.</li> <li>Teach basic guitar handling techniques, such as proper posture, hand positioning, and string plucking.</li> <li>Introduce basic guitar terminology, such as notes, chords, and strumming patterns.</li> <li></li> <p> <strong>Session 2: Tuning the Guitar and Playing Simple Melodies</strong> </p> <li>Teach the student how to tune the guitar using a tuner or an electronic tuning device.</li> <li>Introduce the concept of fretting notes and playing simple melodies using open strings and basic chords.</li> <li>Practice simple exercises to develop finger dexterity and coordination.</li> <li></li> <p> <strong>Session 3: Learning Basic Chords and Strumming Patterns</strong> </p> <li>Introduce basic open chords, such as G, C, D, A, and E.</li> <li>Practice transitioning between chords smoothly.</li> <li>Teach basic strumming patterns to accompany chords and create rhythm.</li> <li></li> <p> <strong>Session 4: Putting it All Together: Playing Simple Songs</strong> </p> <li>Combine the skills learned in previous sessions to play simple songs.</li> <li>Start with easy folk songs or nursery rhymes that utilize the basic chords and strumming patterns.</li> <li>Encourage the student to practice regularly and develop confidence in their playing.</li> </p><p>#music #guitar #playing </p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024! Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi. Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.",
                "en": "Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024. Session 1: Introduction to the Guitar and Basic Anatomy, Session 2: Tuning the Guitar and Playing Simple Melodies, Session 3: Learning Basic Chords and Strumming Patterns, Session 4: Putting it All Together: Playing Simple Songs"
            },
            "location_extra_info": {
                "fi": "soittohuone",
                "en": "music room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281793/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:280351",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8215",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:torkkelinmäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Torkkelinmäki",
                            "sv": "Torkelsbacken"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:40.497052Z",
                "last_modified_time": "2024-02-06T13:09:56.149787Z",
                "custom_data": null,
                "email": "kallion_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 305,
                "image": 7820,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.95356,
                        60.18372
                    ]
                },
                "street_address": {
                    "fi": "Viides linja 11",
                    "sv": "Femte linjen 11",
                    "en": "Viides linja 11"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Kallion kirjasto",
                    "sv": "Berghälls bibliotek",
                    "en": "Kallio Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85053"
                },
                "description": null,
                "info_url": {
                    "fi": "http://www.helmet.fi/kallionkirjasto",
                    "sv": "http://www.helmet.fi/berghallsbibliotek",
                    "en": "http://www.helmet.fi/kalliolibrary"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11193",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.465802Z",
                    "last_modified_time": "2024-02-06T13:24:10.002830Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 989,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kirjallisuus",
                        "sv": "Litteratur",
                        "en": "Literature",
                        "ru": "Литературные события"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11996",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:54.068960Z",
                    "last_modified_time": "2024-02-06T13:24:09.663957Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 159,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Etätapahtumat",
                        "ru": "Удалённые мероприятия"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11996/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p26626",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "distansdeltagande"
                    ],
                    "created_time": "2023-08-16T05:16:56.313702Z",
                    "last_modified_time": "2023-08-16T05:16:56.313725Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 262,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "etäosallistuminen",
                        "sv": "deltagande på distans",
                        "en": "remote participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 7368,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-25T15:30:21.994031Z",
                    "last_modified_time": "2024-02-06T13:40:58.623591Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{28C5B95F-6172-44C4-82F8-BA410A98E21A}/108949",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7368/?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": "2024-01-25T15:30:21.957143Z",
            "last_modified_time": "2024-03-09T12:24:46.162091Z",
            "date_published": "2024-01-25T14:10:00Z",
            "start_time": "2024-02-27T16:00:00Z",
            "end_time": "2024-02-27T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Kalevalan naisten uusia tarinoita ti 27.2.2024"
            },
            "description": {
                "fi": "<p> <strong>Tervetuloa Kalevalan päivän etkoille paikan päälle Kallion kirjastoon tai etänä Facebook-liveen!</strong> <br> <br> Kalevalaisten Naisten Liitto järjestää yhdessä Kallion kirjaston ja Hertta Kustannuksen kanssa Kalevalan päivän etkot, jossa FT <strong>Merja Leppälahti</strong> haastattelee Tinarinnat – Kalevalan naisten uudet tarinat –teoksen kirjailijoita <strong>Anu Holopaista</strong> ja <strong>J. S. Meresmaata</strong>.<br> <br> Miltä Kalevalan naisten tarinat kuulostavat nykyajan kirjailijoiden kertomina? Miksi Kalevalassa kuvatut naishahmot pitää tulkita uusista näkökulmista? Tule kuulemaan lisää aiheesta!<br> <br> Tinarinnat-teoksessa 11 suomalaista kirjailijaa kertoo oman tulkintansa valitsemastaan Kalevalan naishahmosta. Vuonna 2023 ilmestyneen kokoelman ovat toimittaneet tamperelaiset kirjailijat <strong>J. S. Meresmaa</strong> ja <strong>Anni Kuu Nupponen</strong> (<a href=\"https://www.herttakustannus.fi/tuote/tinarinnat\">herttakustannus/tinarinnat</a>).<br> <br> Tilaisuuteen Kallion kirjaston Kupolisaliin (1. krs) on vapaa pääsy ja sitä voi seurata suorana verkossa: <strong><a href=\"https://www.facebook.com/kirjastokallio/live\">facebook.com/kirjastokallio/live</a> tiistaina 27.2.2024 klo 18-19</strong><br> Tallenne jää katsottavaksi.<br><br><em>”Joskus naiselle ei jää muuta vaihtoehtoa kuin muuttua suunnattomaksi petolinnuksi”</em></p><p>Tinarinnat Helmet-kirjastoissa: <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2538757\">https://haku.helmet.fi/iii/encore/record/C__Rb2538757</a></p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 850 53</p><p> <br> </p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Miltä Kalevalan naisten tarinat kuulostavat nykyajan kirjailijoiden kertomina? Miksi Kalevalassa kuvatut naishahmot pitää tulkita uusista näkökulmista? Lue lisää..."
            },
            "location_extra_info": {
                "fi": "Kupolisali, 1. krs"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280351/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281791",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1351,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10673",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.802978Z",
                    "last_modified_time": "2024-02-06T13:24:11.621016Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 890,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuoret",
                        "sv": "Unga",
                        "en": "Youth",
                        "ru": "Nuoret RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8693,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2171,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15287,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6654,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-15T16:23:15.208200Z",
                    "last_modified_time": "2024-02-06T13:38:56.286395Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{420AFCBB-04DF-479C-B9BF-AFDCAE0B2D83}/108099",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6654/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-14T12:27:51.436862Z",
            "last_modified_time": "2024-03-09T12:24:40.588863Z",
            "date_published": "2023-12-15T14:14:00Z",
            "start_time": "2024-02-22T15:00:00Z",
            "end_time": "2024-02-22T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Flamenco kitarakurssi aloittelijoille",
                "en": "Learning Guitar Flamenco Together"
            },
            "description": {
                "fi": "<h2>Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024</h2></p><p>Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi.</p><p> <br> Torstaisin 25.1, 1.2, 8.2,15.2, 22.2, 29.2, 7.3 ja 14.3<br> klo 17.00-18.00<br><br><strong>Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.</strong><br><br><br> Lisätietoa kurssista: lauri.iljin@espoo.fi<br><br><br><br> Ensimmäinen kurssi aloittelijoille sisältää neljä harjoituskertaa seuraavasti:</p><p> <strong>Jakso 1: Johdatus kitaraan ja soittamiseen</strong> <br> <br> Tutustutaan kitaran osiin, esim. kielet, nauhat, viritystapit ja koppa.<br><br> Opetellaan kitarankäsittelyn perustekniikoita, kuten oikeaa soittoasentoa, käsien asettamista ja kielten näppäilyä. Käydään läpi kitaran perusterminologia, kuten nuotit, soinnut ja komppaustekniikat.<br><br><br><strong>Jakso 2: Kitaran virittäminen ja yksinkertaisten melodioiden soittaminen</strong><br><br> Opetellaan kitaran viritys viritysmittarin avulla. Käydään läpi sävelten ja yksinkertaisten melodioiden soittaminen avoimilla kielillä ja perussoinnuilla. Harjoitellaan yksinkertaisia harjoituksia sormien kätevyyden ja koordinaation kehittämiseksi.<br><br><br><strong>Jakso 3: Perussointujen ja sointujen oppiminen</strong><br><br> Harjoitellaan avoimia perussointuja, kuten G, C, D, A ja E ja siirtymistä sointujen välillä sujuvasti. Opetellaan peruskomppausta sointujen säestykseen ja rytmin luomiseen.<br><br><strong>Jakso 4: Kokoaminen yhteen: Yksinkertaisten kappaleiden soittaminen</strong><br><br> Yhdistetään aiemmilla tunneilla opitut taidot ja lisäksi soitetaan yksinkertaisia kappaleita</p><p>#musiikki #kitara #kurssi</p>",
                "en": "<h2>Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024</h2></p><p>Would be great if you bring your own guitar, but if you have not bought yet, No Worry! there are some guitars in library for borrowing in the course. The course is held in English and Finnish.</p><p>Thursdays 25th of Jan, 1st of Feb, 8th of Feb, 15th of Feb, 22th of Feb, 29th of Feb, 7th of Mar, 14th of Mar at 17:00-18:00</p><p> <strong>Pre-registration on the Helmet website, 10 participant can attend the class. Participation is free of charge.</strong> </p><p>more information about class: lauri.iljin@espoo.fi<br> </p><p>First course for beginners contains four session as bellow:</p><p> <strong>Session 1: Introduction to the Guitar and Basic Anatomy</strong> </p> <li>Familiarize the student with the parts of the guitar, including the strings, frets, tuning pegs, bridge, and soundhole.</li> <li>Teach basic guitar handling techniques, such as proper posture, hand positioning, and string plucking.</li> <li>Introduce basic guitar terminology, such as notes, chords, and strumming patterns.</li> <li></li> <p> <strong>Session 2: Tuning the Guitar and Playing Simple Melodies</strong> </p> <li>Teach the student how to tune the guitar using a tuner or an electronic tuning device.</li> <li>Introduce the concept of fretting notes and playing simple melodies using open strings and basic chords.</li> <li>Practice simple exercises to develop finger dexterity and coordination.</li> <li></li> <p> <strong>Session 3: Learning Basic Chords and Strumming Patterns</strong> </p> <li>Introduce basic open chords, such as G, C, D, A, and E.</li> <li>Practice transitioning between chords smoothly.</li> <li>Teach basic strumming patterns to accompany chords and create rhythm.</li> <li></li> <p> <strong>Session 4: Putting it All Together: Playing Simple Songs</strong> </p> <li>Combine the skills learned in previous sessions to play simple songs.</li> <li>Start with easy folk songs or nursery rhymes that utilize the basic chords and strumming patterns.</li> <li>Encourage the student to practice regularly and develop confidence in their playing.</li> </p><p>#music #guitar #playing </p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024! Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi. Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.",
                "en": "Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024. Session 1: Introduction to the Guitar and Basic Anatomy, Session 2: Tuning the Guitar and Playing Simple Melodies, Session 3: Learning Basic Chords and Strumming Patterns, Session 4: Putting it All Together: Playing Simple Songs"
            },
            "location_extra_info": {
                "fi": "soittohuone",
                "en": "music room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281791/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:274198",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1351,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10673",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.802978Z",
                    "last_modified_time": "2024-02-06T13:24:11.621016Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 890,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuoret",
                        "sv": "Unga",
                        "en": "Youth",
                        "ru": "Nuoret RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8693,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2171,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15287,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6654,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-15T16:23:15.208200Z",
                    "last_modified_time": "2024-02-06T13:38:56.286395Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{420AFCBB-04DF-479C-B9BF-AFDCAE0B2D83}/108099",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6654/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-12-15T16:23:28.536440Z",
            "last_modified_time": "2024-03-09T12:24:31.882096Z",
            "date_published": "2023-12-15T14:14:00Z",
            "start_time": "2024-02-15T15:00:00Z",
            "end_time": "2024-02-15T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Flamenco kitarakurssi aloittelijoille",
                "en": "Learning Guitar Flamenco Together"
            },
            "description": {
                "fi": "<h2>Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024</h2></p><p>Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi.</p><p> <br> Torstaisin 25.1, 1.2, 8.2,15.2, 22.2, 29.2, 7.3 ja 14.3<br> klo 17.00-18.00<br><br><strong>Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.</strong><br><br><br> Lisätietoa kurssista: lauri.iljin@espoo.fi<br><br><br><br> Ensimmäinen kurssi aloittelijoille sisältää neljä harjoituskertaa seuraavasti:</p><p> <strong>Jakso 1: Johdatus kitaraan ja soittamiseen</strong> <br> <br> Tutustutaan kitaran osiin, esim. kielet, nauhat, viritystapit ja koppa.<br><br> Opetellaan kitarankäsittelyn perustekniikoita, kuten oikeaa soittoasentoa, käsien asettamista ja kielten näppäilyä. Käydään läpi kitaran perusterminologia, kuten nuotit, soinnut ja komppaustekniikat.<br><br><br><strong>Jakso 2: Kitaran virittäminen ja yksinkertaisten melodioiden soittaminen</strong><br><br> Opetellaan kitaran viritys viritysmittarin avulla. Käydään läpi sävelten ja yksinkertaisten melodioiden soittaminen avoimilla kielillä ja perussoinnuilla. Harjoitellaan yksinkertaisia harjoituksia sormien kätevyyden ja koordinaation kehittämiseksi.<br><br><br><strong>Jakso 3: Perussointujen ja sointujen oppiminen</strong><br><br> Harjoitellaan avoimia perussointuja, kuten G, C, D, A ja E ja siirtymistä sointujen välillä sujuvasti. Opetellaan peruskomppausta sointujen säestykseen ja rytmin luomiseen.<br><br><strong>Jakso 4: Kokoaminen yhteen: Yksinkertaisten kappaleiden soittaminen</strong><br><br> Yhdistetään aiemmilla tunneilla opitut taidot ja lisäksi soitetaan yksinkertaisia kappaleita</p><p>#musiikki #kitara #kurssi</p>",
                "en": "<h2>Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024</h2></p><p>Would be great if you bring your own guitar, but if you have not bought yet, No Worry! there are some guitars in library for borrowing in the course. The course is held in English and Finnish.</p><p>Thursdays 25th of Jan, 1st of Feb, 8th of Feb, 15th of Feb, 22th of Feb, 29th of Feb, 7th of Mar, 14th of Mar at 17:00-18:00</p><p> <strong>Pre-registration on the Helmet website, 10 participant can attend the class. Participation is free of charge.</strong> </p><p>more information about class: lauri.iljin@espoo.fi<br> </p><p>First course for beginners contains four session as bellow:</p><p> <strong>Session 1: Introduction to the Guitar and Basic Anatomy</strong> </p> <li>Familiarize the student with the parts of the guitar, including the strings, frets, tuning pegs, bridge, and soundhole.</li> <li>Teach basic guitar handling techniques, such as proper posture, hand positioning, and string plucking.</li> <li>Introduce basic guitar terminology, such as notes, chords, and strumming patterns.</li> <li></li> <p> <strong>Session 2: Tuning the Guitar and Playing Simple Melodies</strong> </p> <li>Teach the student how to tune the guitar using a tuner or an electronic tuning device.</li> <li>Introduce the concept of fretting notes and playing simple melodies using open strings and basic chords.</li> <li>Practice simple exercises to develop finger dexterity and coordination.</li> <li></li> <p> <strong>Session 3: Learning Basic Chords and Strumming Patterns</strong> </p> <li>Introduce basic open chords, such as G, C, D, A, and E.</li> <li>Practice transitioning between chords smoothly.</li> <li>Teach basic strumming patterns to accompany chords and create rhythm.</li> <li></li> <p> <strong>Session 4: Putting it All Together: Playing Simple Songs</strong> </p> <li>Combine the skills learned in previous sessions to play simple songs.</li> <li>Start with easy folk songs or nursery rhymes that utilize the basic chords and strumming patterns.</li> <li>Encourage the student to practice regularly and develop confidence in their playing.</li> </p><p>#music #guitar #playing </p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024! Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi. Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.",
                "en": "Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024. Session 1: Introduction to the Guitar and Basic Anatomy, Session 2: Tuning the Guitar and Playing Simple Melodies, Session 3: Learning Basic Chords and Strumming Patterns, Session 4: Putting it All Together: Playing Simple Songs"
            },
            "location_extra_info": {
                "fi": "soittohuone",
                "en": "music room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:274198/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:274200",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1351,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10673",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.802978Z",
                    "last_modified_time": "2024-02-06T13:24:11.621016Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 890,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Nuoret",
                        "sv": "Unga",
                        "en": "Youth",
                        "ru": "Nuoret RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10675",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.674749Z",
                    "last_modified_time": "2024-02-06T13:24:09.413772Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2300,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seniorit",
                        "sv": "Seniorer",
                        "en": "Senior citizens"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10690",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.435139Z",
                    "last_modified_time": "2024-02-06T13:24:05.676676Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 3875,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoo",
                        "sv": "Esbo",
                        "en": "Espoo",
                        "ru": "Espoo RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11686",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.599909Z",
                    "last_modified_time": "2024-02-06T13:24:15.412278Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki",
                        "sv": "Musik",
                        "en": "Music",
                        "ru": "Музыка"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8693,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2171,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15287,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6654,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-15T16:23:15.208200Z",
                    "last_modified_time": "2024-02-06T13:38:56.286395Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{420AFCBB-04DF-479C-B9BF-AFDCAE0B2D83}/108099",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6654/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-12-15T16:23:23.865446Z",
            "last_modified_time": "2024-03-09T12:24:21.971826Z",
            "date_published": "2023-12-15T14:14:00Z",
            "start_time": "2024-02-08T15:00:00Z",
            "end_time": "2024-02-08T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Flamenco kitarakurssi aloittelijoille",
                "en": "Learning Guitar Flamenco Together"
            },
            "description": {
                "fi": "<h2>Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024</h2></p><p>Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi.</p><p> <br> Torstaisin 25.1, 1.2, 8.2,15.2, 22.2, 29.2, 7.3 ja 14.3<br> klo 17.00-18.00<br><br><strong>Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.</strong><br><br><br> Lisätietoa kurssista: lauri.iljin@espoo.fi<br><br><br><br> Ensimmäinen kurssi aloittelijoille sisältää neljä harjoituskertaa seuraavasti:</p><p> <strong>Jakso 1: Johdatus kitaraan ja soittamiseen</strong> <br> <br> Tutustutaan kitaran osiin, esim. kielet, nauhat, viritystapit ja koppa.<br><br> Opetellaan kitarankäsittelyn perustekniikoita, kuten oikeaa soittoasentoa, käsien asettamista ja kielten näppäilyä. Käydään läpi kitaran perusterminologia, kuten nuotit, soinnut ja komppaustekniikat.<br><br><br><strong>Jakso 2: Kitaran virittäminen ja yksinkertaisten melodioiden soittaminen</strong><br><br> Opetellaan kitaran viritys viritysmittarin avulla. Käydään läpi sävelten ja yksinkertaisten melodioiden soittaminen avoimilla kielillä ja perussoinnuilla. Harjoitellaan yksinkertaisia harjoituksia sormien kätevyyden ja koordinaation kehittämiseksi.<br><br><br><strong>Jakso 3: Perussointujen ja sointujen oppiminen</strong><br><br> Harjoitellaan avoimia perussointuja, kuten G, C, D, A ja E ja siirtymistä sointujen välillä sujuvasti. Opetellaan peruskomppausta sointujen säestykseen ja rytmin luomiseen.<br><br><strong>Jakso 4: Kokoaminen yhteen: Yksinkertaisten kappaleiden soittaminen</strong><br><br> Yhdistetään aiemmilla tunneilla opitut taidot ja lisäksi soitetaan yksinkertaisia kappaleita</p><p>#musiikki #kitara #kurssi</p>",
                "en": "<h2>Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024</h2></p><p>Would be great if you bring your own guitar, but if you have not bought yet, No Worry! there are some guitars in library for borrowing in the course. The course is held in English and Finnish.</p><p>Thursdays 25th of Jan, 1st of Feb, 8th of Feb, 15th of Feb, 22th of Feb, 29th of Feb, 7th of Mar, 14th of Mar at 17:00-18:00</p><p> <strong>Pre-registration on the Helmet website, 10 participant can attend the class. Participation is free of charge.</strong> </p><p>more information about class: lauri.iljin@espoo.fi<br> </p><p>First course for beginners contains four session as bellow:</p><p> <strong>Session 1: Introduction to the Guitar and Basic Anatomy</strong> </p> <li>Familiarize the student with the parts of the guitar, including the strings, frets, tuning pegs, bridge, and soundhole.</li> <li>Teach basic guitar handling techniques, such as proper posture, hand positioning, and string plucking.</li> <li>Introduce basic guitar terminology, such as notes, chords, and strumming patterns.</li> <li></li> <p> <strong>Session 2: Tuning the Guitar and Playing Simple Melodies</strong> </p> <li>Teach the student how to tune the guitar using a tuner or an electronic tuning device.</li> <li>Introduce the concept of fretting notes and playing simple melodies using open strings and basic chords.</li> <li>Practice simple exercises to develop finger dexterity and coordination.</li> <li></li> <p> <strong>Session 3: Learning Basic Chords and Strumming Patterns</strong> </p> <li>Introduce basic open chords, such as G, C, D, A, and E.</li> <li>Practice transitioning between chords smoothly.</li> <li>Teach basic strumming patterns to accompany chords and create rhythm.</li> <li></li> <p> <strong>Session 4: Putting it All Together: Playing Simple Songs</strong> </p> <li>Combine the skills learned in previous sessions to play simple songs.</li> <li>Start with easy folk songs or nursery rhymes that utilize the basic chords and strumming patterns.</li> <li>Encourage the student to practice regularly and develop confidence in their playing.</li> </p><p>#music #guitar #playing </p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Kitarakurssi aloittelijoille Ison Omenan kirjastossa keväällä 2024! Kurssille kannattaa tuoda oma kitara, sillä kirjastolla ei ole montaa lainattavaa kitaraa. Kurssi järjestetään suomeksi ja englanniksi. Ennakkoilmoittautumalla Helmet-sivulla varmistat paikan kurssilla. Tunnille mahtuu 10 osallistujaa. Osallistuminen on maksutonta.",
                "en": "Guitar Flamenco learning course for beginners in Iso Omena library in Spring 2024. Session 1: Introduction to the Guitar and Basic Anatomy, Session 2: Tuning the Guitar and Playing Simple Melodies, Session 3: Learning Basic Chords and Strumming Patterns, Session 4: Putting it All Together: Playing Simple Songs"
            },
            "location_extra_info": {
                "fi": "soittohuone",
                "en": "music room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:274200/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:278944",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8150",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Haaga",
                            "sv": "Haga"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:etelä-haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Etelä-Haaga",
                            "sv": "Södra Haga"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Haaga",
                            "sv": "Haga"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:37.983945Z",
                "last_modified_time": "2025-08-06T05:09:26.152118Z",
                "custom_data": null,
                "email": "etela-haagan_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 61,
                "image": 1423650,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.891476,
                        60.213963
                    ]
                },
                "street_address": {
                    "fi": "Isonnevantie 16 B",
                    "sv": "Stormyrvägen 16 B",
                    "en": "Isonnevantie 16 B"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Etelä-Haagan kirjasto",
                    "sv": "Södra Haga bibliotek",
                    "en": "Etelä-Haaga Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85032"
                },
                "description": null,
                "info_url": {
                    "fi": "http://www.helmet.fi/etelahaagankirjasto",
                    "sv": "http://www.helmet.fi/sodrahagabibliotek",
                    "en": "http://www.helmet.fi/etelahaagalibrary"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8150/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10786",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:56.660120Z",
                    "last_modified_time": "2024-02-06T13:24:38.523512Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 35,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Etelä-Haagan kirjasto"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10786/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11687",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.722776Z",
                    "last_modified_time": "2024-02-06T13:24:07.827439Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 794,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Pelitapahtumat",
                        "sv": "Spel",
                        "en": "Games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3553,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2625,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:11.499680Z",
                    "last_modified_time": "2024-02-06T13:38:57.774996Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{FEB7724D-0FA2-4B14-B868-82686D1AEF22}/98759",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2625/?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": "2024-01-11T18:27:24.309942Z",
            "last_modified_time": "2024-03-09T11:26:32.494977Z",
            "date_published": "2024-01-11T11:55:00Z",
            "start_time": "2024-05-16T14:00:00Z",
            "end_time": "2024-05-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lautapeli-illat aikuisille"
            },
            "description": {
                "fi": "<p>Rentoa pelailua hyvässä seurassa! Etelä-Haagan kirjaston lautapeli-iltaan ovat tervetulleita sekä vasta-alkajat että harrastajat. Illan isäntä (Jani) valitsee pelin tai pelit etukäteen, mutta pelitoiveita voi lähettää osoitteeseen: jani.keranen@hel.fi. Jani huolehtii myös sääntöjen selittämisestä ja niiden noudattamisesta, ja mielellään pelaa itsekin mukana! Ennakkoon ei siis tarvitse valmistautua mitenkään. Tervetuloa pelaamaan!</p><p>Peli-illat järjestetään kerran kuussa, torstaisin klo 17.00 alkaen.</p><p>Kevään peli-illat: 25.1., 14.3., 11.4., ja 16.5. Huom! 15.2. peli-ilta on peruutettu!</p><p> <strong>25.1. </strong>- Illan pelinä on <strong><a href=\"https://boardgamegeek.com/boardgame/204472/sub-terra\">Sub terra</a>, </strong>jossa yhdessä ystäviesi kanssa yritätte selviytyä hengissä ulos vaarallisesta luolastosta ennen kuin taskulamput sammuvat. </p><p> <strong>14.3.</strong> - Illan pelinä on <strong><a href=\"https://www.lautapeliopas.fi/peliarvostelut/lost-ruins-of-arnak/\">Arnak - kadonneet rauniot</a></strong>, jossa pelaajat etsivät aarteita muinaisten hirviöiden suojelemilta kaivausalueilta. Peli voitti vuoden strategiapelipalkinnon vuonna 2023.</p><p> <strong>11.4. </strong>Peli ilmoitetaan myöhemmin!</p><p> <strong>16.5. </strong>Peli ilmoitetaan myöhemmin!</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Rentoa pelailua hyvässä seurassa! Etelä-Haagan lautapeli-iltaan ovat tervetulleita sekä vasta-alkajat että harrastajat. Peli(t) valitaan etukäteen, mutta toivomuksia voi esittää."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278944/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:275092",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8184",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:39.190761Z",
                "last_modified_time": "2024-11-30T06:09:27.009846Z",
                "custom_data": null,
                "email": "itakeskuksen_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 909,
                "image": 7815,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.080221,
                        60.21196
                    ]
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Itäkeskuksen kirjasto",
                    "sv": "Östra centrums bibliotek",
                    "en": "Itäkeskus Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85090"
                },
                "description": null,
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84927",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84927",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84927"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10672",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.706978Z",
                    "last_modified_time": "2024-02-06T13:24:09.688763Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2814,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Maahanmuuttajat",
                        "sv": "Immigranter",
                        "en": "Immigrants",
                        "ru": "Maahanmuuttajat RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11699",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.241364Z",
                    "last_modified_time": "2024-02-06T13:24:08.826070Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2655,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Opastukset ja kurssit",
                        "sv": "Undervisning och kurser",
                        "en": "Training and courses",
                        "ru": "Курсы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2149",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "opastaminen",
                        "opastukset",
                        "vägledning"
                    ],
                    "created_time": "2023-08-16T05:13:22.316826Z",
                    "last_modified_time": "2023-08-16T05:13:22.316842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3278,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opastus",
                        "sv": "guidning",
                        "en": "guidance"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2212,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9270",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:05.397638Z",
                    "last_modified_time": "2023-08-16T05:18:05.397655Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 18874,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kurssit",
                        "sv": "kurser",
                        "en": "courses (societal objects)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2756,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:31:13.435226Z",
                    "last_modified_time": "2024-02-06T13:38:09.040503Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{6A38E3A1-9019-473A-8E4D-A1D88D298078}/79018",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2756/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-12-19T15:22:38.516506Z",
            "last_modified_time": "2024-03-09T11:26:28.535028Z",
            "date_published": "2021-12-21T22:00:00Z",
            "start_time": "2024-05-14T13:00:00Z",
            "end_time": "2024-05-14T16: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,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Arabian- ja englanninkielistä digitukea",
                "en": "Digital guidance in Arabic and English"
            },
            "description": {
                "fi": "<h2>Digital guidance in Arabic and English<br> التوجيه والارشاد الرقمي</h2><p>Työväenopiston digitukea Itäkeskuksen kirjastossa tiistaisin 9.1.-28.5.2024 Klo 16–19.15.</p><p>Apua Windows-tietokoneen, tabletin ja älypuhelimen, internetin ja sähköpostin käyttöön sekä sähköiseen asiointiin, mm. sähköisten lomakkeiden täyttämiseen ja lähettämiseen virastoihin (Kela, TE-toimisto).</p><p>Noudatathan terveysturvallisuusohjeita.</p><p>Opastajan yhteystiedot:<br><a href=\"mailto:islam.al-badri@edu.hel.fi\">islam.al-badri@edu.hel.fi</a><br> Voit ottaa yhteyttä opastajaan myös puhelimitse opastusajankohtana puh. 046 597 4563.</p><p>Vapaa pääsy, ei ilmoittautumista.</p><p> <strong> Stoa, Itäkeskus </strong> </p><p> Turunlinnantie 1 </p>",
                "en": "<p>Digital guidance in Itäkeskus Library on Tuesdays 9.1.-28.5.2024 at 16.00-19.15. You can get help with using your Windows computer, tablet and smartphone, internet and e-mail, as well assistance filling and sending electronic forms to agencies (e.g. Kela, TE office). Free admission, no enrolment.</p><p>We kindly remind you to follow safety precautions.</p><p>Contacts:<br> islam.al-badri@edu.hel.fi<br> You can contact by phone 046 597 4563 during the guidance hours</p>",
                "ar": "<p> <strong>التوجيه والإرشاد الرقمي</strong> </p><p>يمكنك هنا الحصول على مساعدة بشأن استخدام الكمبيوتر الذي يعمل بنظام وندوز والكمبيوتر اللوحي والهاتف الذكي والإنترنت والبريدالإلكتروني وكذلك المساعدة بتعبئة وإرسال النماذج </p><p>مثلا الى كيلا و مكتب العمل،</p><p>المشاركه لاتتطلب التسجيل مقدما. يمكن القدوم الى مكان الارشاد مباشرةَ. قم بالألتزام بأرشادات الأمن والسلامه السارية المعمول بها حاليآ. نذكركم بغسل ايديكم قبل الارشاد التوجيه والحفاظ على مسافة كافية وارتداء كمامة أثناء الإرشاد. دعونا نبقى آمنين نحمي أنفسنا والآخرين.</p><p> <strong> Stoa, Itäkeskus </strong> </p><p> <strong>مكتبة ايتاكيسكوس</strong> </p><p>كل خميس 9.1. – 28.5.2024</p><p>خلال الاوقات 16 – 19.15</p><p> Turunlinnantie 1 </p><p>لمزيد من المعلومات</p><p> <a href=\"mailto:islam.al-badri@edu.hel.fi\"> islam.al-badri@edu.hel.fi </a> </p><p>الهاتف 0465974563</p><p>يقوم المرشد بالأجابه على الهاتف فقط أثناء الأوقات المخصصه للتوجيه والأرشاد الرقمي</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Arabian- ja englanninkielistä digitukea, التوجيه والارشاد الرقمي",
                "en": "Digital guidance in Arabic and English, التوجيه والارشاد الرقمي"
            },
            "location_extra_info": {
                "fi": "Turunlinnantie 1",
                "en": "Turunlinnantie 1"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:275092/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:278947",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8150",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Haaga",
                            "sv": "Haga"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:etelä-haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Etelä-Haaga",
                            "sv": "Södra Haga"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Haaga",
                            "sv": "Haga"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:37.983945Z",
                "last_modified_time": "2025-08-06T05:09:26.152118Z",
                "custom_data": null,
                "email": "etela-haagan_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 61,
                "image": 1423650,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.891476,
                        60.213963
                    ]
                },
                "street_address": {
                    "fi": "Isonnevantie 16 B",
                    "sv": "Stormyrvägen 16 B",
                    "en": "Isonnevantie 16 B"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Etelä-Haagan kirjasto",
                    "sv": "Södra Haga bibliotek",
                    "en": "Etelä-Haaga Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85032"
                },
                "description": null,
                "info_url": {
                    "fi": "http://www.helmet.fi/etelahaagankirjasto",
                    "sv": "http://www.helmet.fi/sodrahagabibliotek",
                    "en": "http://www.helmet.fi/etelahaagalibrary"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8150/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10786",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:56.660120Z",
                    "last_modified_time": "2024-02-06T13:24:38.523512Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 35,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Etelä-Haagan kirjasto"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10786/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11687",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.722776Z",
                    "last_modified_time": "2024-02-06T13:24:07.827439Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 794,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Pelitapahtumat",
                        "sv": "Spel",
                        "en": "Games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3553,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2625,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:11.499680Z",
                    "last_modified_time": "2024-02-06T13:38:57.774996Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{FEB7724D-0FA2-4B14-B868-82686D1AEF22}/98759",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2625/?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": "2024-01-11T18:26:36.113866Z",
            "last_modified_time": "2024-03-09T11:25:52.987243Z",
            "date_published": "2024-01-11T11:55:00Z",
            "start_time": "2024-04-11T14:00:00Z",
            "end_time": "2024-04-11T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lautapeli-illat aikuisille"
            },
            "description": {
                "fi": "<p>Rentoa pelailua hyvässä seurassa! Etelä-Haagan kirjaston lautapeli-iltaan ovat tervetulleita sekä vasta-alkajat että harrastajat. Illan isäntä (Jani) valitsee pelin tai pelit etukäteen, mutta pelitoiveita voi lähettää osoitteeseen: jani.keranen@hel.fi. Jani huolehtii myös sääntöjen selittämisestä ja niiden noudattamisesta, ja mielellään pelaa itsekin mukana! Ennakkoon ei siis tarvitse valmistautua mitenkään. Tervetuloa pelaamaan!</p><p>Peli-illat järjestetään kerran kuussa, torstaisin klo 17.00 alkaen.</p><p>Kevään peli-illat: 25.1., 14.3., 11.4., ja 16.5. Huom! 15.2. peli-ilta on peruutettu!</p><p> <strong>25.1. </strong>- Illan pelinä on <strong><a href=\"https://boardgamegeek.com/boardgame/204472/sub-terra\">Sub terra</a>, </strong>jossa yhdessä ystäviesi kanssa yritätte selviytyä hengissä ulos vaarallisesta luolastosta ennen kuin taskulamput sammuvat. </p><p> <strong>14.3.</strong> - Illan pelinä on <strong><a href=\"https://www.lautapeliopas.fi/peliarvostelut/lost-ruins-of-arnak/\">Arnak - kadonneet rauniot</a></strong>, jossa pelaajat etsivät aarteita muinaisten hirviöiden suojelemilta kaivausalueilta. Peli voitti vuoden strategiapelipalkinnon vuonna 2023.</p><p> <strong>11.4. </strong>Peli ilmoitetaan myöhemmin!</p><p> <strong>16.5. </strong>Peli ilmoitetaan myöhemmin!</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Rentoa pelailua hyvässä seurassa! Etelä-Haagan lautapeli-iltaan ovat tervetulleita sekä vasta-alkajat että harrastajat. Peli(t) valitaan etukäteen, mutta toivomuksia voi esittää."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278947/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:278946",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8150",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Haaga",
                            "sv": "Haga"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:etelä-haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Etelä-Haaga",
                            "sv": "Södra Haga"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:haaga",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Haaga",
                            "sv": "Haga"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:37.983945Z",
                "last_modified_time": "2025-08-06T05:09:26.152118Z",
                "custom_data": null,
                "email": "etela-haagan_kirjasto@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 61,
                "image": 1423650,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.891476,
                        60.213963
                    ]
                },
                "street_address": {
                    "fi": "Isonnevantie 16 B",
                    "sv": "Stormyrvägen 16 B",
                    "en": "Isonnevantie 16 B"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "name": {
                    "fi": "Etelä-Haagan kirjasto",
                    "sv": "Södra Haga bibliotek",
                    "en": "Etelä-Haaga Library"
                },
                "telephone": {
                    "fi": "+358 9 310 85032"
                },
                "description": null,
                "info_url": {
                    "fi": "http://www.helmet.fi/etelahaagankirjasto",
                    "sv": "http://www.helmet.fi/sodrahagabibliotek",
                    "en": "http://www.helmet.fi/etelahaagalibrary"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8150/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helmet:1",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.498337Z",
                    "last_modified_time": "2024-02-06T13:24:05.489393Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 14585,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapahtumat",
                        "sv": "Evenemang",
                        "en": "Events",
                        "ru": "Tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10592",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.401744Z",
                    "last_modified_time": "2024-02-06T13:24:05.432038Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 5727,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yleinen",
                        "sv": "Allmänt",
                        "en": "General",
                        "ru": "Yleinen RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10689",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.454486Z",
                    "last_modified_time": "2024-02-06T13:24:05.464056Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 8055,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Helsinki",
                        "sv": "Helsingfors",
                        "en": "Helsinki",
                        "ru": "Helsinki RU"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:10786",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:56.660120Z",
                    "last_modified_time": "2024-02-06T13:24:38.523512Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 35,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Etelä-Haagan kirjasto"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10786/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11687",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T12:19:49.722776Z",
                    "last_modified_time": "2024-02-06T13:24:07.827439Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 794,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Pelitapahtumat",
                        "sv": "Spel",
                        "en": "Games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3553,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2625,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:11.499680Z",
                    "last_modified_time": "2024-02-06T13:38:57.774996Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{FEB7724D-0FA2-4B14-B868-82686D1AEF22}/98759",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2625/?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": "2024-01-11T18:25:54.274722Z",
            "last_modified_time": "2024-03-09T11:25:14.855637Z",
            "date_published": "2024-01-11T11:55:00Z",
            "start_time": "2024-03-14T15:00:00Z",
            "end_time": "2024-03-14T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lautapeli-illat aikuisille"
            },
            "description": {
                "fi": "<p>Rentoa pelailua hyvässä seurassa! Etelä-Haagan kirjaston lautapeli-iltaan ovat tervetulleita sekä vasta-alkajat että harrastajat. Illan isäntä (Jani) valitsee pelin tai pelit etukäteen, mutta pelitoiveita voi lähettää osoitteeseen: jani.keranen@hel.fi. Jani huolehtii myös sääntöjen selittämisestä ja niiden noudattamisesta, ja mielellään pelaa itsekin mukana! Ennakkoon ei siis tarvitse valmistautua mitenkään. Tervetuloa pelaamaan!</p><p>Peli-illat järjestetään kerran kuussa, torstaisin klo 17.00 alkaen.</p><p>Kevään peli-illat: 25.1., 14.3., 11.4., ja 16.5. Huom! 15.2. peli-ilta on peruutettu!</p><p> <strong>25.1. </strong>- Illan pelinä on <strong><a href=\"https://boardgamegeek.com/boardgame/204472/sub-terra\">Sub terra</a>, </strong>jossa yhdessä ystäviesi kanssa yritätte selviytyä hengissä ulos vaarallisesta luolastosta ennen kuin taskulamput sammuvat. </p><p> <strong>14.3.</strong> - Illan pelinä on <strong><a href=\"https://www.lautapeliopas.fi/peliarvostelut/lost-ruins-of-arnak/\">Arnak - kadonneet rauniot</a></strong>, jossa pelaajat etsivät aarteita muinaisten hirviöiden suojelemilta kaivausalueilta. Peli voitti vuoden strategiapelipalkinnon vuonna 2023.</p><p> <strong>11.4. </strong>Peli ilmoitetaan myöhemmin!</p><p> <strong>16.5. </strong>Peli ilmoitetaan myöhemmin!</p>"
            },
            "info_url": null,
            "short_description": {
                "fi": "Rentoa pelailua hyvässä seurassa! Etelä-Haagan lautapeli-iltaan ovat tervetulleita sekä vasta-alkajat että harrastajat. Peli(t) valitaan etukäteen, mutta toivomuksia voi esittää."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278946/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}