Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27041,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1072&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1070&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "helmet:270683",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5990,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-13T19:22:53.160646Z",
                    "last_modified_time": "2023-11-13T19:22:53.160664Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{ED8CB632-F203-426C-8935-513FE87A6AF6}/107464",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5990/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-13T19:22:53.133062Z",
            "last_modified_time": "2023-11-14T06:22:14.006708Z",
            "date_published": "2023-11-13T18:30:00Z",
            "start_time": "2023-11-18T10:30:00Z",
            "end_time": "2023-11-18T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Marraskuun pimeydessä ja sateessa muuttuva ja moniulotteinen Kallio Kipinöi jälleen. Asukkaat, alueen toimijat, taiteilijat ja muusikot kokoontuvat eri puolilla Kalliota viettämään aikaa toistensa kanssa ainutlaatuisten tapahtumien parissa. Yhteisvoimin saamme aikaiseksi jotain kaunista, mikä antaa iloa ja voimaa arkeen ja inspiroi uusiin seikkailuihin.<br><br> Kipinöi-viikon aikana pääset kuuntelemaan, katsomaan ja kokemaan juuri sitä, mistä itse tykkäät. Tänäkin vuonna ohjelma tarjoaa jokaiselle jotakin.</p><p> <strong>Avajaiskonsertti Kallion kirjaston Kupolisalissa </strong> <em>(1. krs)</em> <strong> lauantaina 18.11.2023 klo 12.30-16</strong> </p><p>Ohjelma:</p><p>klo 12.30-16: <strong>Kallion Kulttuuriverkosto</strong> on järjestänyt Kallio Kipinöi -festivaalia jo 25 vuoden ajan! Tule tutustumaan festivaalin historiaan ja Kallion Kulttuuriverkoston toimintaan! </p><p>klo 13: <strong>Helsinki Harps Folk Group</strong> on ryhmiä irlantilaisia ja suomalaisia muusikoita, jotka soittavat rouheita perinteisiä kansanlauluja.</p><p>klo 14.45: <strong>Ruby Lips Sounds</strong>. Division Line - sävellyksen ensiesitys on Kallio kipinöi -festivaaleilla. Teoksen esittävät <strong>Ninel Grönholm</strong> ja <strong>Tomi Christiansson</strong>, soittimina ovat kitara, lyömäsoittimet ja piano. Teos sisältää vapaita osioita, joten pituus on jätetty avoimeksi. Konsertissa esitetään myös muuta Matilda Mother band -alkuperäismateriaalia.</p><p> <em>Division Line - the first performance of the composition is at the Kallio kipinöi festival Sat 18.11.2023 at 14:45 at the Kallio library. The performers are Ninel Grönholm and Tomi Christiansson on guitar, percussion and keyboards/piano. The work contains free sections, so the length is left open. In concert you can hear also other original material from Matilda Mother band. </em> </p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 850 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p>"
            },
            "name": {
                "fi": "KallioKipinöi: Avajaiskonsertti"
            },
            "location_extra_info": {
                "fi": "Kupolisali, 1. krs"
            },
            "short_description": {
                "fi": "Kallion Kulttuuriverkosto on järjestänyt Kallio Kipinöi -festivaalia jo 25 vuoden ajan! Tule tutustumaan festivaalin historiaan ja Kallion Kulttuuriverkoston toimintaan! Lue lisää..."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270683/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270525",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8269/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5925,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-09T15:24:27.811959Z",
                    "last_modified_time": "2023-11-09T15:24:27.811979Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{59DEAF88-AAD0-4350-8908-211FD5412CCC}/107379",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5925/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-09T15:24:27.793398Z",
            "last_modified_time": "2023-11-14T06:22:13.937218Z",
            "date_published": "2023-11-09T14:24:00Z",
            "start_time": "2023-11-18T11:30:00Z",
            "end_time": "2023-11-18T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kimonotapahtumassa esitellään japanilaisen kimonon historiaa vaatteen alkuajoista nykypäivään. Kimono on muotoutunut vuosisatojen saatossa Japanin hoviylimystön asusta koko kansan vaatteeksi, mutta nykypäivänä sitä käytetään lähinnä juhlatilaisuuksissa.</p><p> <u>Ohjelma:</u> </p><ul> <li>13:30-14:40 Tervetulosanat ja koto-esitys</li> <li>13:40-14:30 Luento kimonon historiasta ja nykypäivästä </li> <li>14:30-15:30 Kimonon pukemisnäytös</li> </ul><p> <br> Vapaa pääsy. Tervetuloa!</p><p>Tapahtuman järjestää <strong>Suomalais-Japanilainen yhdistys ry</strong>.</p>"
            },
            "name": {
                "fi": "Kimonotapahtuma"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Kimonotapahtumassa esitellään japanilaisen kimonon historiaa vaatteen alkuajoista nykypäivään"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270525/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270386",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8143/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10652/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10655/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10814/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11835/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:23/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5878,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-06T16:23:42.029983Z",
                    "last_modified_time": "2023-11-06T16:23:42.030007Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D6B3BC27-299A-4715-A8DA-07D364523859}/107283",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5878/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-06T16:23:42.003326Z",
            "last_modified_time": "2023-11-14T06:22:13.800357Z",
            "date_published": "2023-11-06T12:26:00Z",
            "start_time": "2023-11-18T12:00:00Z",
            "end_time": "2023-11-18T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Marras-joulukuussa HeRoLan kirjastoissa kuullaan paikallisten muusikoiden esittämää musiikkia. Laajasalolainen <a href=\"https://open.spotify.com/artist/2SlCB0guGr12XjJcOEeenw\">Future Chroma</a> soittaa Laajasalon kirjaston monitoimitila Fokassa kaunista ja kuulasta syntetisaattorimusiikkia. Tilaisuuteen on vapaa pääsy. Tervetuloa!</p>"
            },
            "name": {
                "fi": "Support Your Local! Future Chroma"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Kuulasta syntetisaattorimusiikkia Laajasalon kirjastossa."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270386/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:268936",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5011,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-10-04T13:56:54.133162Z",
                    "last_modified_time": "2023-10-04T13:56:54.133182Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{280181B4-C1C6-4DBC-8A93-3E7B8ADC1E6B}/106412",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5011/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-10-04T13:56:53.989807Z",
            "last_modified_time": "2023-11-14T06:22:13.734644Z",
            "date_published": "2023-10-04T12:25:00Z",
            "start_time": "2023-11-06T17:00:00Z",
            "end_time": "2023-11-18T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<h3>Peliviikon kunniaksi Myyrmäen kirjastossa ratkotaan uutta pakohuonemysteeriä.</h3><p>Pakohuone on loppuunvarattu. <a href=\"http://link.webropolsurveys.com/Participation/Public/00f46bc0-192c-447e-a737-eb6cf3b20b2f?displayId=Fin2901960\">Mahdolliset peruutuspaikat löytyvät täältä</a>.</p><p>Yksi kyläläisistä on kadonnut. Löydättekö hänet ennen kuin on liian myöhäistä? Tehtävä ei tule olemaan helppo, koska esteenänne on päättelykykyä testaavia pulmia.</p><p>Kokoa siis 2-6 hengen ryhmä ja hyppää seikkailuun. Pakohuoneeseen ovat tervetulleita niin vasta-alkajat kuin kokeneemmatkin pelaajat. Peliaikaa on 45 minuuttia. Pelinjohtaja on tavoitettavissanne koko pelin ajan ja antaa pyydettäessä vihjeitä.</p><p>Huone on pelattavissa vain suomeksi. Alle 12-vuotiaat aikuisen seurassa.</p><p>Peliaikoja on rajoitetusti. <a href=\"https://link.webropol.com/s/maahistenmailla\">Varaa omasi täältä</a>.</p><p>*****</p><p>Myyrmäen kirjasto viettää kansallista Peliviikkoa tänä vuonna peräti kahden viikon ajan. Luvassa ohjelmaa kaikenikäisille:</p><ul> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Noita__Peliidean_pitka_matka_nayttely(269126)\">6.-19.11. Noita: peli-idean pitkä matka -näyttely </a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Maahisten_mailla_pakohuone(268936)\">6.-18.11. Maahisten mailla -pakohuone</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Pulmapeliilta(269070)\">8.11. Pulmapeli-ilta klo 16-19</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Mario_Kart_Live_pelailua(269094)\">15.11. Mario Kart Live! -pelailua klo 15-16</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Astraterraroolipeli(269110)\">18.11. Astraterra-roolipeli klo 10-12</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Astraterraroolipeli(269121)\">18.11. Astraterra-roolipeli klo 13-15</a> </li> </ul></p><p>*****</p><p>Kuva: <a href=\"https://pixabay.com/illustrations/night-forest-glowworm-light-3078326/\">Yuri_B / Pixabay</a> ja Julia / Myyrmäen kirjasto</p><p>Asiasana: Peliviikko</p>"
            },
            "name": {
                "fi": "Maahisten mailla -pakohuone"
            },
            "location_extra_info": {
                "fi": "Pimiö, 2. kerros"
            },
            "short_description": {
                "fi": "Peliviikon ohjelmaa: kirjastossa ratkotaan uutta pakohuonemysteeriä! Kokoa ryhmä ja ilmoittaudu mukaan!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268936/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269122",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11383/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4999,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-10-03T14:02:36.703328Z",
                    "last_modified_time": "2023-10-03T14:02:36.703350Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{EB9BB93D-FD03-421C-BDB6-C2A84C61A17A}/106397",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4999/?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": "2023-10-08T19:29:47.004349Z",
            "last_modified_time": "2023-11-14T06:22:13.663198Z",
            "date_published": "2023-10-06T21:00:00Z",
            "start_time": "2023-11-18T13:00:00Z",
            "end_time": "2023-11-18T13:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kutsumme kaikki kiinnostuneet teatterilliseen ''Paras kaikista'' konserttiin, jossa on nukketeatterielementtejä. Esitys järjestetään <strong>la 18.11. klo 15.00 Sellon kirjastossa</strong>, lavalla. Konsertin esittää Lasten kulttuurikeskus \"Musikantit\".</p><p>Mitä mieltä olet, kuka on paras kaikista? Se, joka osaa laulaa paremmin? Vai ehkä se, joka tanssii paremmin? Tai ehkä se, joka soittaa viulua tai pelaa jääkiekkoa paremmin? Ja kuinka voi tietää, että joku on parempi kuin toinen, ja voiko kukaan olla paras kaikista?</p><p>Vastaus on yksinkertainen - jokainen teistä, jokainen meistä on paras kaikista! Sinä olet paras kaikista! Ja ystäväsi on paras kaikista! Ja se tyttö palmikot päässään on paras kaikista! Sanotte, että sellaista ei ole? On kyllä! Ettekö usko? Tulkaa sitten teatterilliseen \"Paras kaikista\" konserttiimme, ja tulette vakuuttumaan siitä, että jokainen, joka osallistuu siihen, ja jokainen, joka tulee tähän konserttiin, on paras kaikista!</p><p>Konsertin kesto on 45 minuuttia.</p><p>Tapahtuma striimataan fb-ryhmässä <a href=\"https://www.facebook.com/HelmetPoRusski\">Helmet по-русски.</a></p><p>Vapaa pääsy. Tervetuloa!</p><p>Tapahtuman kielet: venäjä ja suomi</p><p>***********<br> Tapahtuma kuuluu Venäjänkielisen kirjaston kulttuurimaratonin ohjelmaan. Kulttuurimaraton pidetään 13.-26.11.2023. Projekti on Suomen Opetus- ja kulttuuriministeriön rahoittama ja sen iskulause on \"Kulttuuri yhdistää ihmiset\".</p><p> <a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Vinkit/Venajankielisen_kirjaston_kulttuurimarat(269330)\">Kulttuurimaratonin koko ohjelma</a> </p> </p>",
                "ru": "<p>Приглашаем всех желающих на театрализованный концерт с элементами кукольного спектакля \"Лучше всех\" <strong>в субботу 18 ноября в 15.00 в библиотеке Селло</strong>, сцена. Концерт представляет Детский центр культуры “<a href=\"https://www.musikantit.fi/ru\">Музыканты</a>\".</p><p>Как вы думаете, кто лучше всех? Тот, кто умеет лучше петь? Или, может быть тот, кто умеет лучше танцевать? А может тот, кто умеет лучше всех играть на скрипке или в хоккей? А как понять, что кто-то лучше другого и может ли быть кто-то лучше всех? </p> <p>Ответ прост - каждый из вас, каждый из нас лучше всех! Ты - лучше всех! И твой друг лучше всех! И вот та девчонка с косичками лучше всех! Скажете, такого не бывает? Бывает! Не верите? Тогда приходите на наш театрализованный концерт “ЛУЧШЕ ВСЕХ”, и вы убедитесь, что каждый, кто принимает в нем участие и каждый, кто пришел на этот концерт - лучше всех! </p><p> Длительность концерта 45 мин. </p><p>Будет вестись прямая трансляция в фэйсбук-группе <a href=\"https://www.facebook.com/HelmetPoRusski\">Helmet по-русски.</a></p><p>Вход свободный. Добро пожаловать!</p><p>***********<br> Мероприятие входит в программу \"Культурного марафона Русскоязычной библиотеки Финляндии\", проходящего с 13 по 26 ноября 2023. \"Культурный марафон Русскоязычной библиотеки\" проходит при поддержке Министерства образования и культуры Финляндии. Слоган проекта: \"Культура объединяет людей\".</p><p> <a href=\"https://www.helmet.fi/ru-RU/Rekomenduem/Chto_pochitat/Kulturnyi_marafon_Russkoiazychnoi_biblio(269318)\">Полная программа Культурного марафона</a> </p> </p>"
            },
            "name": {
                "fi": "Lasten konsertti \"Paras kaikista\"",
                "ru": "Театрализованный концерт \"Лучше всех\""
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tulkaa sitten teatterilliseen \"Paras kaikista\" konserttiimme, ja tulette vakuuttumaan siitä, että jokainen, joka osallistuu siihen, ja jokainen, joka tulee tähän konserttiin, on paras kaikista!",
                "ru": "Приходите на наш театрализованный концерт “Лучше всех”, и вы убедитесь, что каждый, кто принимает в нем участие и каждый, кто пришел на этот концерт - лучше всех!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270305",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5845,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-03T13:22:42.464780Z",
                    "last_modified_time": "2023-11-03T13:22:42.464799Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{171DA4B8-1DFE-4C6C-AC73-FD6053272410}/107243",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5845/?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:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-03T13:22:42.447623Z",
            "last_modified_time": "2023-11-14T06:22:13.595887Z",
            "date_published": "2023-11-03T08:59:41.583000Z",
            "start_time": "2023-11-18T08:30:00Z",
            "end_time": "2023-11-18T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tule leikkimään puisilla leluilla Rikhardinkadun kirjaston lastenosastolle.</p><p>Tapahtuman järjestäjänä ja leikittäjänä on Touch Wood -ryhmä.</p>",
                "en": "<p>Come and play with wooden toys at the children´s department of the library.</p><p>The event is organized by the group Touch Wood. </p>"
            },
            "name": {
                "fi": "Pop-up puulelutapahtuma Rikhardinkadun kirjastossa",
                "en": "Wooden Toys Pop-up Event"
            },
            "location_extra_info": {
                "fi": "Lastenosasto, 1. krs",
                "en": "Children´s department, 1st floor"
            },
            "short_description": {
                "fi": "Tule leikkimään puisilla leluilla!",
                "en": "Come and play with wooden toys!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270305/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269895",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5598,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-10-23T13:26:15.989616Z",
                    "last_modified_time": "2023-10-23T13:26:15.989635Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{6B7391D1-A27B-4BF8-8DE3-0A82EAB1131C}/106997",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5598/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-10-23T13:26:15.964637Z",
            "last_modified_time": "2023-11-14T06:22:13.527770Z",
            "date_published": "2023-10-23T11:23:30.570000Z",
            "start_time": "2023-11-18T12:00:00Z",
            "end_time": "2023-11-18T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Finnish Blues Societyn Juuristo-klubilla on tarjolla mannaa marraskuuhun, kun jo yli 40-vuotisen ansiokkaan urataipaleen taittanut rock- blues-valtionainen Marjo Leinonen saapuu kirjaston estradille musisoimaan &amp; tarinoimaan. Iltapäivän aikana Marjo kertoo mm. vaiherikkaasta, boheemista musapolustaan läpi vuosikymmenten, luovimisestaan miehisessä musaskenessä sekä myös elämänkertakirjastaan ”Punaisia päin” (Tommi E.Virtanen &amp; Marjo Leinonen, Johnny Kniga 2023).</p><p>Musisoinnissa Marjon keralla nähdään &amp; kuullaan konkarit kitaristi Gona Lehtinen ja basisti Jan Smedberg.<br><br> Tilaisuus on kaikille avoin, tervetuloa! <br><br> Järjestää Finnish Blues Society ja Töölön kirjasto<br><br> Kuva: Juha Seila</p>"
            },
            "name": {
                "fi": "Rock-blues-valtionainen Marjo Leinonen Töölön kirjastossa"
            },
            "location_extra_info": {
                "fi": "Mika Waltari -sali, 4. krs"
            },
            "short_description": {
                "fi": "Marjo Leinonen saapuu kirjaston estradille musisoimaan & tarinoimaan, tervetuloa mukaan!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269895/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270236",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10840/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5801,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-01T17:24:51.584244Z",
                    "last_modified_time": "2023-11-01T17:24:51.584261Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{87857476-A178-4914-B14A-66E240F41339}/107205",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5801/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-01T17:24:51.559390Z",
            "last_modified_time": "2023-11-14T06:22:13.458369Z",
            "date_published": "2023-11-01T15:33:00Z",
            "start_time": "2023-11-18T11:00:00Z",
            "end_time": "2023-11-18T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "sv": "<p>Ett rimmande fyrverkeri för barn och andra poesiälskare lördagen 18.11 2023 kl. 13.00 <strong>~</strong> 15 på Richardsgatans biblotek.</p><p>Program:</p><p>Finlandssvenska barnboksförfattare och illustratörer presenterar sina egna och varandras diktbilderböcker i en rolig show där vad som helst kan hända.</p><p>Paus med gratis servering och boklotteri</p><p>Teater Tapirs vilda och rekvisitaspäckade diktsvarieté <em>Röjsfasoner </em></p><p>I samarbete med <a href=\"https://www.sets.fi/\">Schildts &amp; Söderströms</a>, <a href=\"https://forlaget.com/\">Förlaget</a>, <a href=\"https://www.kulturfonden.fi/\">Svenska Kulturfonden</a> och <a href=\"https://www.foundationweb.net/nygren/\">Nygréns stiftelse</a>.</p><p>Bild: Linda Bondestam</p>"
            },
            "name": {
                "sv": "Poesiparaden"
            },
            "location_extra_info": {
                "sv": "Läsesal, 3:e vån"
            },
            "short_description": {
                "sv": "Ett rimmande fyrverkeri för barn och andra poesiälskare."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270236/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270449",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5890,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-07T15:21:54.932621Z",
                    "last_modified_time": "2023-11-07T15:21:54.932637Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{0E0F12C4-DA52-4DCA-A313-7E610C96EBC8}/107316",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5890/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-07T15:21:54.921570Z",
            "last_modified_time": "2023-11-14T06:22:13.389569Z",
            "date_published": "2023-11-07T10:19:01.037000Z",
            "start_time": "2023-11-18T08:00:00Z",
            "end_time": "2023-11-18T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jaetaan yhdessä jouluiloa: lähetä kortti tuntemattomalle ikäihmiselle! </p><p>Tule Myyrmäen kirjastoon askartelemaan joulukortti ja jätä kortti kirjaston keräyspisteeseen. Joulupostia ikäihmisille on Siskot ja Simot –yhteisön jokavuotinen kampanja, jossa kerätään joulukortteja kotihoidon ja asumispalvelujen ikääntyneille asiakkaille. </p><h3>Ohjeet kortin tekoon: </h3><p>Askartele kortti tai kortteja kirjaston korttipajassa. </p><p>Kirjoita korttiin terveisesi, nimesi ja Siskot ja Simot (esimerkiksi Hyvää joulua! Toivottaa Maija ja Siskot&amp;Simot) </p><p>Jätä kortti kirjaston keräyslaatikkoon. Me toimitamme kortit eteenpäin. </p><p>Järjestämme kampanjan aikana yhteensä 3 korttipajaa seuraavina lauantaina: 18.11., 25.11. ja 2.12. klo 10–15. </p><p>Voit myös tuoda valmiin kortin kirjaston keräyslaatikkoon. Keräysaika on 13.11.–4.12.2023.</p><p> <a href=\"http://siskotjasimot.fi\">Löydät lisätietoa Siskot ja Simot-yhteisön toiminnasta täältä.</a> </p><p>Kuva: Siskot ja Simot</p>",
                "sv": "<p>Låt oss sprida julglädje tillsammans: skicka ett kort till en åldring!</p><p>Kom och gör ett julkort i Myrbacka biblioteks julkortsverkstad. Verkstad ordnas tre gånger: 18.11., 25.11. och 2.12. kl. 10-15.</p><p>Gör så här:</p><p>Pyssla ett julkort i bibliotekeks julkortverkstad (eller ta ett färdigt kort med dig).</p><p>Skriv ditt namn på kortet samt Siskot ja Simot tex: God Jul! Önskar Siskot ja Simot och Maja.</p><p>Sätt kortet i biblioteks insamlingslådan.</p><p>Siskot ja Simot, samfundet för kreativ omsorg, arrangerar kampanjen Julpost till åldringar årligen. Under kampanjen samlas julkort till åldringar inom hemvård och serviceboende.</p><p>Insamlingstid: 13.11.-4.12.2023</p><p>Bild: Siskot ja Simot</p>",
                "en": "<p>Let's share Christmas spirit together: send a Christmas card to an elderly person!</p><p>In respect of Christmas Post to the Elderly - campaign, Myyrmäki library organises three Christmas card workshops: 18.11., 25.11. and 2.12. at 10am-3pm. </p><p>How to participate:</p><p>Make a card in library workshop (or bring a store bought /self-made card).</p><p>Write your name on the card and in addition Siskot ja Simot (e.g.: Merry Xmas! Greetings Siskot ja Simot and Martin).</p><p>Drop the card in library collection box.</p><p>Collecting period: 13.11.-4.12.2023</p><p>Siskot ja Simot, the society of creative caring, arranges the “Christmas Post to the Elderly” campaign every year. The aim is to collect Christmas cards for the elderly clients of home care and housing services.</p><p>Picture: Siskot ja Simot</p>"
            },
            "name": {
                "fi": "Joulupostia ikäihmisille -korttipaja",
                "sv": "Julpost ti åldringar -julkortsverkstad",
                "en": "Christmas post to the elderly: card workshop"
            },
            "location_extra_info": {
                "fi": "1. kerros",
                "sv": "1. våning",
                "en": "1. floor"
            },
            "short_description": {
                "fi": "Jaa jouluiloa! Tule kirjastoon askartelemaan joulukortti ja jätä kortti kirjaston keräyspisteeseen. Joulupostia ikäihmisille -kampanja on käynnissä 13.11.-4.12.2023.",
                "sv": "Låt oss sprida julglädje tillsammans: kom och gör ett julkort i Myrbacka biblioteks julkortsverkstad.",
                "en": "Let's share Christmas spirit together: send a Christmas card to an elderly person!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270449/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269212",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8362/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5043,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-10-05T18:58:18.001697Z",
                    "last_modified_time": "2023-10-05T18:58:18.001719Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{8E42A0B2-1268-407E-9255-058D73183B3C}/106509",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5043/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-05T18:58:17.839409Z",
            "last_modified_time": "2023-11-14T06:22:13.316403Z",
            "date_published": "2023-10-05T12:05:00Z",
            "start_time": "2023-11-18T12:00:00Z",
            "end_time": "2023-11-18T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>“Vahtikoira Veikolla on tylsää. Sikatylsää! Ei vaan KOIRATYLSÄÄ!<br> Mitähän kaikkea Veikko keksii jäädessään yksin kotiin? Ainakin leivotaan Vahtikoiran vieraanvaraa ja leikitetään kirppusirkusta. Ja tanssitaan Shabadidabadidaa!\"</p><p>Tuija Rantalainen ja Vahtikoira Veikko -duo esiintyy Paloheinän kirjastossa la 18.11.2023 klo 14. Lasten musiikkiteatteriesitys pohjautuu Anja Erämajan teokselle Veikko tahtoo ulos. Esitys on osa Art Jazz Helsinki -festivaalia.</p><p>Esityksen kesto: 45 min.<br> Esityksen ikäsuositus: 3+<br> Vapaa pääsy.</p><p>Työryhmä:<br> Käsikirjoitus: Anja Erämaja<br> Musiikin sävellys ja sovitus: Tuija Rantalainen<br> Ohjaus: Elina Hagelin<br> Esiintyjät: Veini Nupponen, näyttelijä (Vahtikoira Veikko) ja Tuija Rantalainen, muusikko-laulaja<br> Puvustus: Annina Nevantaus ja Jenni Nykänen<br> Lavastus: Hanna Erämaja</p>"
            },
            "name": {
                "fi": "Veikko tahtoo ulos - lasten musiikkiteatteriesitys"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tuija Rantalainen ja Vahtikoira Veikko esiintyvät Paloheinän kirjastossa"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269212/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269121",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5010,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-10-04T13:56:47.532805Z",
                    "last_modified_time": "2023-10-04T13:56:47.532829Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{083F5164-9982-4C2E-95C5-BD1BDCC4DA7D}/106395",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5010/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-04T13:56:52.599747Z",
            "last_modified_time": "2023-11-14T06:22:13.246800Z",
            "date_published": "2023-10-04T12:20:00Z",
            "start_time": "2023-11-18T11:00:00Z",
            "end_time": "2023-11-18T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kiinnostaako seikkailu kaukaisessa galaksissa? Oletko aina halunnut päästä kokeilemaan roolipelaamista? Tervetuloa kokeilemaan Astraterra-roolipeliä!</p><p>Astraterra on höyryfantasiaroolipeli, joka sopii pelaajille lapsesta senioriin. Myyrmäen kirjastossa pelautettava peli on kirjaston työntekijän mukauttama valmispeli, jossa käytetään valmiita pelihahmoja. Myös pelin sääntöjä sovelletaan tapahtumakäyttöön sopivammiksi. Peli antaa silti mainion esimaun roolipelaamisesta ja sen maailmasta.</p><p>Sama peli peluutetaan päivän aikana kaksi kertaa (klo 10 ja klo 13) ja kumpaankin peliin mahtuu mukaan viisi pelaajaa. Mukaan tarvitset vain innokkaan ja kokemushaluisen mielen, sillä nopat ja muut varusteet löytyvät paikanpäältä.</p><p>Mikäli kiinnostuit, niin täytä sivun lopussa oleva ennakkoilmoittautuminen mahdollisimman pian. Jos et pääsekään paikalle, niin peruthan ilmoittautumisesi suoraan osoitteeseen reija.karvonen(at)vantaa.fi.</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Astraterraroolipeli(269110)\">Klo 10 alkavan pelin ilmoittautuminen löytyy täältä.</a> </p><p>*****</p><p>Myyrmäen kirjasto viettää kansallista Peliviikkoa tänä vuonna peräti kahden viikon ajan. Luvassa ohjelmaa kaikenikäisille: </p><ul> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Noita__Peliidean_pitka_matka_nayttely(269126)\">6.-19.11. Noita – Peli-idean pitkä matka -näyttely</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Maahisten_mailla_pakohuone(268936)\">6.-18.11. Maahisten mailla -pakohuone</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Pulmapeliilta(269070)\">8.11. Pulmapeli-ilta klo 16-19</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Mario_Kart_Live_pelailua(269094)\">15.11. Mario Kart Live! -pelailua klo 15-16</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Astraterraroolipeli(269110)\">18.11. Astraterra-roolipeli klo 10-12</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Astraterraroolipeli(269121)\">18.11. Astraterra-roolipeli klo 13-15</a> </li> </ul></p><p>*****</p><p>Kuvituskuva: Hans Zenjuga / Interscope Press</p><p>Asiasana: Peliviikko</p>"
            },
            "name": {
                "fi": "Astraterra-roolipeli"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Peliviikon ohjelmaa: kiinnostaako seikkailu kaukaisessa galaksissa? Oletko aina halunnut päästä kokeilemaan roolipelaamista? Ilmoittaudu mukaan ja tule kokeilemaan Astraterra-roolipeliä!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269121/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262006",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8288/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2731,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:30:44.463702Z",
                    "last_modified_time": "2023-08-15T15:30:44.463818Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{05A8B63E-1EE3-42B0-9F63-8FD982CA3EBE}/103210",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2731/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T16:01:09.883829Z",
            "last_modified_time": "2023-11-14T06:22:13.178017Z",
            "date_published": "2023-06-21T10:45:25.007000Z",
            "start_time": "2023-11-18T11:00:00Z",
            "end_time": "2023-11-18T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tapulikaupungin kirjaston lukupiirin syksyn 2023 teema on erilaiset perhesuhteet. Lukupiiri kokoontuu kerran kuukaudessa lauantaisin klo 13.00-14.30.</p><p> <strong>Syksyn ohjelma:</strong> </p><p>26.8. Alice Munro: Hyvän naisen rakkaus<br> 16.9. Alex Schulman: Eloonjääneet<br> 21.10. Minna Canth: Kauppa-Lopo &amp; Agnes<br> 18.11. Ann-Luise Bertell: Ikävän jälkeen<br> 16.12. Ann Patchett: Hollantilainen talo</p><p>Lukupiirikirjoja on varattu lukupiiriläisille ja kirjan voi hakea kirjaston tiskiltä.</p><p>Lukupiiri kokoontuu kirjaston perällä olevalla lukualueella. Toivotamme kaikki uudet ja vanhat lukupiiriläiset lämpimästi tervetulleiksi mukaan lukupiiriin!</p><p> <em>Kuva: Kadyn Pierce, Unsplash</em> </p>"
            },
            "name": {
                "fi": "Tapulikaupungin kirjaston lukupiiri"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa mukaan lukupiiriin!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262006/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:265435",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18658/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3030,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T16:01:08.873176Z",
                    "last_modified_time": "2023-08-15T16:01:08.873196Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D176880B-0DA7-4160-A780-AA9AD741199D}/104929",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T16:01:08.438096Z",
            "last_modified_time": "2023-11-14T06:22:13.108990Z",
            "date_published": "2023-08-15T09:54:00Z",
            "start_time": "2023-11-18T11:00:00Z",
            "end_time": "2023-11-18T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Pointin kirjasto saa kirjailijavieraaksi Enni Mustosen lauantaina 18.11. klo 13-14. </p><p>Tapahtuma on osa Vantaan kirjastojen syksyn 2023 kirjailijavieraskiertuetta, jossa nähdään asiakkaiden toivomia kirjailijavieraita. </p><p>Vantaan kaupunginkirjaston keväällä 2023 järjestämässä kyselyssä eniten ääniä saaneet kirjailijat saapuvat vierailulle Hakunilan, Koivukylän, Lumon, Länsimäen, Martinlaakson, Mosaiikin, Myyrmäen, Pointin ja Tikkurilan kirjastoihin. Tutustu kirjailijavieraskiertueen ohjelmaan <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Hakunilan_kirjasto/Juttuja_kirjastosta/Kirjailijavieraskiertue_syksyn_toivotut_(264997)\">Helmet-sivustolla</a>.</p><p>kuva: Otava: Jonne Räsänen</p>"
            },
            "name": {
                "fi": "Syksyn toivotut: kirjailijavieraana Enni Mustonen"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Pointin kirjasto saa kirjailijavieraaksi Enni Mustosen la 18.11. klo 13-14. Tapahtuma on osa Vantaan kirjastojen syksyn 2023 kirjailijavieraskiertuetta, jossa nähdään asiakkaiden toivomia kirjailijavieraita."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265435/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:264151",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2629,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:28:22.474612Z",
                    "last_modified_time": "2023-08-15T15:28:22.474634Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{09A3471A-BF1D-432C-9E00-A10C7D2ECA94}/104550",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2629/?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:p4354/?format=api"
                }
            ],
            "created_time": "2023-08-15T16:01:08.064746Z",
            "last_modified_time": "2023-11-14T06:22:13.036280Z",
            "date_published": "2023-07-19T10:55:00Z",
            "start_time": "2023-11-18T11:00:00Z",
            "end_time": "2023-11-18T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.</p><p>Kiinankielinen satutunti on suunnattu kiinankielisille lapsille, jotka ovat kiinnostuneita kiinan kielen oppimisesta. Satutunnit järjestetään kirjaston lastenosastolla.</p>",
                "en": "<p>Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture.</p><p>The story times are arranged at the library's children's section.</p>"
            },
            "name": {
                "fi": "Kiinankielinen satutunti",
                "en": "Chinese Story Time"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.",
                "en": "Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264151/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:266727",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11202/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 3708,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-25T08:43:50.656069Z",
                    "last_modified_time": "2023-08-25T08:43:50.656091Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{52525431-DA01-47BF-9A07-A406040AAF0A}/105213",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3708/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-25T09:18:04.174209Z",
            "last_modified_time": "2023-11-14T06:22:12.967535Z",
            "date_published": "2023-08-25T06:00:00Z",
            "start_time": "2023-11-18T10:00:00Z",
            "end_time": "2023-11-18T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "ru": "<p>Добро пожаловать в книжный клуб ! </p><p>Приглашаем тебя, 10-14 летний подросток, если ты любишь читать и общаться на разные темы. Книжный клуб бесплатный и к нему не нужно готовиться заранее.</p><p>На встрече мы все вместе читаем/слушаем короткий текст на русском языке, а потом разговариваем об этом тексте и просто о жизни. Каждый участник имеет право высказать то, что он думает, или просто послушать других, думая о своём.</p><p>В осеннем сезоне 2023 встречи книжного клуба проходят три раза в месяц <strong>по субботам с 12 до 13:30.</strong></p><p> <strong>Место встреч:</strong> Robohuone, Tikkurilan kirjasto.</p><p> <strong>Даты встреч:</strong> 2, 9 и 23 сентября </p><p> 7, 21 и 28 октября</p><p> 4, 11 и 18 ноября</p><p> 2, 9 и 16 декабря</p><p>Ведущие клуба: переводчик с английского Анастасия Басова и детский писатель Анна Анисимова.</p><p>Photo by <a href=\"https://unsplash.com/@tommyskywalker?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText\">Qihao Wang</a> on <a href=\"https://unsplash.com/photos/BEeC31IpMEg?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText\">Unsplash</a></p>"
            },
            "name": {
                "ru": "Книжный клуб для подростков"
            },
            "location_extra_info": {
                "ru": "Robohuone, Tikkurilan kirjasto."
            },
            "short_description": {
                "ru": "Добро пожаловать в наш книжный клуб!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266727/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269853",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4873,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-21T13:45:10.402198Z",
                    "last_modified_time": "2023-09-21T13:45:10.402216Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{53BF1B34-EF8E-482C-9C3C-519E0CC5BE98}/106047",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4873/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-10-20T10:55:54.173922Z",
            "last_modified_time": "2023-11-14T06:22:12.899500Z",
            "date_published": "2023-10-20T09:09:00Z",
            "start_time": "2023-11-18T08:00:00Z",
            "end_time": "2023-11-18T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "sv": "<p>Vill du bli detektiv? Välkommen till Nordsjö biblioteks detektivskola! Lös gåtor och hemliga meddelanden, sök efter ledtrådar, avslöja de misstänkta – det kommer att finnas flera olika klurigheter att ta del av och detektivböcker att låna.</p><p>Detektivskolan ordnas flera gånger under hösten i olika bibliotek:</p><p>- Gårdsbacka bibliotek 11.11</p><p>- Kasbergets bibliotek 25.11</p><p>bild: freepik.com</p>"
            },
            "name": {
                "sv": "Detektivskola"
            },
            "location_extra_info": null,
            "short_description": {
                "sv": "Kom till Nordsjö biblioteks deckarskola!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269853/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270228",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18658/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5793,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-01T13:24:30.673845Z",
                    "last_modified_time": "2023-11-01T13:24:30.673861Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D795B68C-DB49-40C9-B544-508F5D9EA890}/107196",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5793/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-01T13:24:30.649652Z",
            "last_modified_time": "2023-11-14T06:22:12.832358Z",
            "date_published": "2023-11-01T11:49:00Z",
            "start_time": "2023-11-18T09:00:00Z",
            "end_time": "2023-11-18T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ideoi, äänestä ja vaikuta. Vantaan osallistuvassa budjetoinnissa asukkaat päättävät kaupungin rahojen käytöstä. Budjetti 1,2 miljoonaa euroa jakaantuu Vantaan 7 suuralueelle asukasluvun mukaan.</p><p>Pointin kirjaston Pop up -neuvonnassa pääset tutustumaan osallistuvaan budjetointiin ja antamaan ideasi. Miten sinä kehittäisit kaupunkia ja asuinaluettasi?</p><p>Pop up neuvonta on ennen Pointin kirjaston Enni Mustosen kirjailijavierailua.</p><p>Aviapoliksen suuralueeseen kuuluvat Kartanokosken, Pakkalan, Tammiston, Veromiehen, Viinikkalan ja Ylästön kaupunginosat. Osallistuvassa budjetoinnissa käytössä on 105 000 euroa Aviapoliksen alueella.</p>"
            },
            "name": {
                "fi": "Osallistuvan budjetoinnin Pop up neuvonta"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Ideoi, äänestä ja vaikuta. Vantaan osallistuvassa budjetoinnissa asukkaat päättävät kaupungin rahojen käytöstä."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270228/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269852",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 4873,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-21T13:45:10.402198Z",
                    "last_modified_time": "2023-09-21T13:45:10.402216Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{53BF1B34-EF8E-482C-9C3C-519E0CC5BE98}/106047",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4873/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-20T10:55:54.052471Z",
            "last_modified_time": "2023-11-14T06:22:12.764433Z",
            "date_published": "2023-10-20T09:05:00Z",
            "start_time": "2023-11-18T08:00:00Z",
            "end_time": "2023-11-18T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Olisiko sinusta etsiväksi? Tule Salapoliisikouluun Vuosaaren kirjastoon! </p><p>Ratko arvoituksia, selvitä salattuja viestejä, etsi johtolankoja, paljasta syyllisiä – luvassa monta hauskaa puuhapistettä! </p><p>Salapoliisikoulun Kahoot -tietokilpailu kello 12 sekä paljon salapoliisikirjoja lainattavaksi. </p><p>*****</p><p>Jos ajankohta ei ole sopiva, pääset Salapoliisikouluun syksyn aikana myös muissa Idän kirjastoissa</p><p>- Kontulan kirjaston Salapoliisikoulu 11.11.</p><p>- Roihuvuoren kirjaston Salapoliisikoulu 25.11.</p><p>kuva: freepik.com</p>"
            },
            "name": {
                "fi": "Salapoliisikoulu"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule Salapoliisikouluun Vuosaaren kirjastoon!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269852/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270534",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5930,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-10T10:23:42.439814Z",
                    "last_modified_time": "2023-11-10T10:23:42.439844Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{33CC3C85-BB24-44B9-991B-32624C674343}/107388",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5930/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-10T09:21:34.183496Z",
            "last_modified_time": "2023-11-14T06:22:12.688706Z",
            "date_published": "2023-11-10T08:30:00Z",
            "start_time": "2023-11-18T08:00:00Z",
            "end_time": "2023-11-18T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kallion kirjaston Satubrunssilla hypätään satujen maailmaan! Tervetuloa kirjaston lastenosastolle (3. krs) klo 10-12. Tapahtuma on ilmainen ja suunnattu 2-6-vuotiaille lapsille perheineen.</p><p>Satubrunssin ohjelma:</p><p>Satulinnassa:</p><p> <strong>Klo 10.15 Runojumppa</strong> <br> Kasvatetaan ruokahalua leikkimällä runojen tahtiin. Sopii kaikenikäisille, pienimmät leikkivät yhdessä vanhemman kanssa. Kesto noin 20 minuuttia.</p><p> <strong>Klo 10.45 10.45 Sagostund på svenska</strong>, För alla i åldersgruppen 2-6 som orkar sitta och lyssna. Vi läser och filosoferar kring temat mat. Ungefär 20 minuter.</p><p> <strong>Klo 11.15 Satutuokio</strong>: Syömään! Valpuri tilaa erikoisaamiaisen, mutta saakin sen sijaan epäilyttävää puuroa. Mollia hirvittävät herneet ja tiikerit taas törttöilevät ruokapöydässä ihan miten sattuu. Luetaan syömiseen ja ruokaan liittyviä kuvakirjoja. Sopii kaikille jotka jaksavat kuunnella. Kesto noin 20 minuuttia.</p><p>Lastenosastolla:<br> Koko tapahtuman ajan voit piirtää yhteistä satumetsää, askarrella ja lainata herkullista luettavaa. Kirjasto tarjoaa pientä purtavaa. Myös omia eväitä voi ottaa mukaan.</p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 850 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p><p>Tapahtuma on osa Kallio Kipinöi -kaupunkifestivaalia<br><a href=\"https://www.facebook.com/hashtag/kalliokipin%C3%B6i?__eep__=6&amp;__cft__[0]=AZUmQJz56ijlQecmzD3RobM3npOwQV1qyZngflvI-CqFhOIHKLeL7nmJPae6WG7s2ScUZjG-JT8sO25bFNr3jMQycq3JCEaamLGiwQpRwd5JFDb_aLcPAH6_rlSNCHjsiAU&amp;__tn__=q\">#KallioKipinöi</a> <a href=\"https://www.facebook.com/hashtag/kallionkirjasto?__eep__=6&amp;__cft__[0]=AZUmQJz56ijlQecmzD3RobM3npOwQV1qyZngflvI-CqFhOIHKLeL7nmJPae6WG7s2ScUZjG-JT8sO25bFNr3jMQycq3JCEaamLGiwQpRwd5JFDb_aLcPAH6_rlSNCHjsiAU&amp;__tn__=q\">#KallionKirjasto</a> </p><p>Näytä vähemmän</p>",
                "sv": "<p>Berghälls biblioteks Sagobrunch dyker in i sagornas värld! Välkomna till barnavdelningen (3. våningen) kl 10-12.</p><p>Evenemanget är gratis och är riktat till barn i 2-6 års ålder med familj.</p><p>Sagobrunchens program:</p><p>I Sagoslottet:</p><p>10.15 Runojumppa på finska. Lek i takt med dikter. Passar för alla åldrar, de minsta leker tillsammans med föräldern. Ungefär 20 minuter.</p><p>kl 10.45 Sagostund på svenska, för alla i åldersgruppen 2-6 som orkar sitta och lyssna. Vi läser och filosoferar kring temat mat. Ungefär 20 minuter.</p><p>kl 11.15 Finskspråkig sagostund: Syömään! Bilderböcker med temat mat och ätande. Passar för alla som orkar lyssna. Ungefär 20 minuter.</p><p>På barnavdelningen, under hela evenemanget:</p><p>Här kan du delta i att rita varelser och andra detaljer till en gemensam stor sagoskog. Du kan också pyssla, och låna smaskiga böcker att läsa. Biblioteket bjuder på smått tilltugg. Man kan också äta egen vägkost på avdelningen.</p>"
            },
            "name": {
                "fi": "KallioKipinöi: Satubrunssi",
                "sv": "KallioKipinöi: Sagobrunchen"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Kallion kirjaston Satubrunssilla hypätään satujen maailmaan! Lue lisää...",
                "sv": "Berghälls biblioteks Sagobrunch dyker in i sagornas värld!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270534/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269110",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5010,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-10-04T13:56:47.532805Z",
                    "last_modified_time": "2023-10-04T13:56:47.532829Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{083F5164-9982-4C2E-95C5-BD1BDCC4DA7D}/106395",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5010/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-10-04T13:56:47.395531Z",
            "last_modified_time": "2023-11-14T06:22:12.619555Z",
            "date_published": "2023-10-04T12:22:00Z",
            "start_time": "2023-11-18T08:00:00Z",
            "end_time": "2023-11-18T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kiinnostaako seikkailu kaukaisessa galaksissa? Oletko aina halunnut päästä kokeilemaan roolipelaamista? Tervetuloa kokeilemaan Astraterra-roolipeliä!</p><p>Astraterra on höyryfantasiaroolipeli, joka sopii pelaajille lapsesta senioriin. Myyrmäen kirjastossa pelautettava peli on kirjaston työntekijän mukauttama valmispeli, jossa käytetään valmiita pelihahmoja. Myös pelin sääntöjä sovelletaan tapahtumakäyttöön sopivammiksi. Peli antaa silti mainion esimaun roolipelaamisesta ja sen maailmasta.</p><p>Sama peli peluutetaan päivän aikana kaksi kertaa (klo 10 ja klo 13) ja kumpaankin peliin mahtuu mukaan viisi pelaajaa. Mukaan tarvitset vain innokkaan ja kokemushaluisen mielen, sillä nopat ja muut varusteet löytyvät paikanpäältä.</p><p>Mikäli kiinnostuit, niin täytä sivun lopussa oleva ennakkoilmoittautuminen mahdollisimman pian. Jos et pääsekään paikalle, niin peruthan ilmoittautumisesi suoraan osoitteeseen reija.karvonen(at)vantaa.fi.</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Astraterraroolipeli(269121)\">Klo 13 alkavan pelin ilmoittautuminen löytyy täältä.</a> </p><p>*****</p><p>Myyrmäen kirjasto viettää kansallista Peliviikkoa tänä vuonna peräti kahden viikon ajan. Luvassa ohjelmaa kaikenikäisille: </p><ul> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Noita__Peliidean_pitka_matka_nayttely(269126)\">6.-19.11. Noita – Peli-idean pitkä matka -näyttely</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Maahisten_mailla_pakohuone(268936)\">6.-18.11. Maahisten mailla -pakohuone</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Pulmapeliilta(269070)\">8.11. Pulmapeli-ilta klo 16-19</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Mario_Kart_Live_pelailua(269094)\">15.11. Mario Kart Live! -pelailua klo 15-16</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Astraterraroolipeli(269110)\">18.11. Astraterra-roolipeli klo 10-12</a> </li> <li> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myyrmaen_kirjasto/Tapahtumat/Astraterraroolipeli(269121)\">18.11. Astraterra-roolipeli klo 13-15</a> </li> </ul></p><p>*****</p><p>Kuvituskuva: Hans Zenjuga / Interscope Press</p><p>Asiasana: Peliviikko</p>"
            },
            "name": {
                "fi": "Astraterra-roolipeli"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Peliviikon ohjelmaa: kiinnostaako seikkailu kaukaisessa galaksissa? Oletko aina halunnut päästä kokeilemaan roolipelaamista? Ilmoittaudu mukaan ja tule kokeilemaan Astraterra-roolipeliä!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269110/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}