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

{
    "meta": {
        "count": 27042,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=677",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=675"
    },
    "data": [
        {
            "id": "helmet:252938",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11065,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-27T11:28:03.190119Z",
                    "last_modified_time": "2024-02-27T11:28:03.190135Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{342D6E23-7744-4588-8108-29A76D151984}/109641",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11065/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-27T11:28:03.163434Z",
            "last_modified_time": "2024-02-28T10:28:46.958456Z",
            "date_published": "2023-01-13T09:17:00Z",
            "start_time": "2024-04-11T13:00:00Z",
            "end_time": "2024-04-11T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Vuosaaren kirjaston maaginen ilta"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Illan aikana kirjasto täyttyy lohikäärmeistä ja yksisarvisista."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<h3>Illan aikana kirjasto täyttyy lohikäärmeistä ja yksisarvisista. Luo oma nukkesi varjoteatteripajassa tai tutustu aarteisiin lohikäärmeen luolassa! Lisäksi paljon muuta taianomaista tekemistä.</h3><p>Ohjelma (maksuton): </p><p> <strong>Klo 16-19</strong>:</p><p>Lohikäärme- ja yksisarvisaskartelua lastenalueella</p><p>Lohikäärmeen luola, Lukupesä</p><p>Omatoiminen etsintärata lastenalueella</p><p>Kirja-arvonta</p><p> <strong>Klo 16 ja 18</strong> </p><p>Kasvata oma lohikäärmeesi -sanataidepaja, Kokoushuone Jyrki. Tila on rajallinen, joten mukaan mahtuu 12 ensimmäistä. Pajan kesto n. 45 min. </p><p> <strong>Klo 17 ja 18 </strong> </p><p>Varjoteatterityöpaja Kokoushuone Mosaiikissa. Pajan kesto n. 30 min. Ennakkoilmoittautuminen: vuosaaren.lapsetjanuoret(ät)hel.fi</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:252938/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282408",
            "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:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11101,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-28T10:28:15.706948Z",
                    "last_modified_time": "2024-02-28T10:28:15.706967Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{72A56D92-9FDF-41D2-8DFE-9C4364C260D0}/109874",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11101/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-02-28T10:28:15.684266Z",
            "last_modified_time": "2024-02-28T10:28:15.775821Z",
            "date_published": "2024-02-28T09:21:00Z",
            "start_time": "2024-03-27T15:30:00Z",
            "end_time": "2024-03-27T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Omatoiminen varautuminen"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Tapahtumatila, 4. krs"
            },
            "short_description": {
                "fi": "Luennolla saat tietoa, miten jokaisen kannattaa varautua siihen, että tavallinen arki voi häiriintyä onnettomuuden tai poikkeustilanteen takia ja mikä on kotivara. Tervetuloa!"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p> <strong>Mitä voin tehdä ennalta sekä miten olla avuksi häiriö- ja poikkeusoloissa?</strong> <br><br> Jokaisen kannattaa varautua siihen, että tavallinen arki voi häiriintyä onnettomuuden tai poikkeustilanteen takia. Varautuminen on ennaltaehkäisyä ja harjoittelua siltä varalta, että jotakin odottamatonta voi tapahtua. Pitkittynyt sähkökatko on esimerkki häiriötilanteesta, jonka takia yhteiskunnan tarjoamat palvelut häiriintyvät tai jopa keskeytyvät.<br><br> Kodeissa olisi hyvä olla vähintään kolmeksi vuorokaudeksi ruokaa ja lääkkeitä. Olisi myös tärkeää tuntea varautumisen perusteet eli tietää, mistä saa oikeaa tietoa häiriötilanteessa ja miten esimerkiksi pärjätä kylmenevässä asunnossa.<br><br> Luennon tavoitteena on lisätä tietoa, miten jokaisen kannattaa varautua siihen, että tavallinen arki voi häiriintyä onnettomuuden tai poikkeustilanteen takia ja mikä on kotivara.<br><br> Luennoitsijana on Niki Haake, varautumisen ja valmiuden asiantuntija (Suomen Punaisen Risti Helsingin- ja Uudenmaan piiri)<br><br> Ilmoittaudu mukaan luennolle: <a href=\"mailto:toolo@punainenristi.fi\">toolo@punainenristi.fi</a> (kahvitarjoilun vuoksi).</p><p>Tervetuloa!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282408/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282237",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11002,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-22T18:32:08.174452Z",
                    "last_modified_time": "2024-02-22T18:32:08.174485Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D7D73DB5-4425-41B3-9D33-DFDE2546D872}/109731",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11002/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-22T18:32:21.870400Z",
            "last_modified_time": "2024-02-28T09:28:43.166337Z",
            "date_published": "2024-02-22T17:18:00Z",
            "start_time": "2024-04-12T11:00:00Z",
            "end_time": "2024-04-12T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maaginen viikko 2024: Piirretään ja maalataan taikaolentoja"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Hakunilan kirjaston maaginen viikko huipentuu perjantaina 12.4. Silloin piirretään ja maalataan taikaolentoja kello 14-15."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Maagista viikkoa vietetään Hakunilan kirjastossa 8.-12.4.2024. Viikon ajan luvassa on paljon hauskaa maagista ohjelmaa, jota et halua missata!</p><p>Perjantaina 12.4. viikko huipentuu taikaolentojen piirtämiseen ja maalaamiseen. Tule suunnittelemaan oma taikaolentosi ja herätä se henkiin paperille.</p><p>Kirjasto tarjoaa askartelutarvikkeet. Vapaa pääsy. Ei ennakkoilmoittautumista.</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282237/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282236",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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: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/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11002,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-22T18:32:08.174452Z",
                    "last_modified_time": "2024-02-22T18:32:08.174485Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D7D73DB5-4425-41B3-9D33-DFDE2546D872}/109731",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11002/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-22T18:32:19.737831Z",
            "last_modified_time": "2024-02-28T09:28:41.168965Z",
            "date_published": "2024-02-22T17:13:00Z",
            "start_time": "2024-04-11T14:00:00Z",
            "end_time": "2024-04-11T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maaginen viikko 2024: Maaginen Kahoot-tietovisa"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Maaginen Kahoot-tietovisa Hakunilan kirjastossa torstaina 11.4. kello 17-18."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Maagista viikkoa vietetään Hakunilan kirjastossa 8.-12.4.2024. Viikon ajan luvassa on paljon hauskaa maagista ohjelmaa, jota et halua missata!</p><p>Torstaina 11.4. järjestetään maaginen Kahoot-tietovisa. Luvassa on hauskoja taianomaisia tietovisakysymyksiä. Osaatko vastata kaikkiin?</p><p>Osallistumiseen tarvitset oman laitteen. Voit myös lainata kirjastosta tabletin, mikäli sinulla on voimassa oleva Helmet-kirjastokortti. Huomioithan, että tabletteja on rajoitettu määrä.</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282236/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282235",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11002,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-22T18:32:08.174452Z",
                    "last_modified_time": "2024-02-22T18:32:08.174485Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D7D73DB5-4425-41B3-9D33-DFDE2546D872}/109731",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11002/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-22T18:32:13.702788Z",
            "last_modified_time": "2024-02-28T09:28:35.332335Z",
            "date_published": "2024-02-22T17:07:00Z",
            "start_time": "2024-04-10T07:00:00Z",
            "end_time": "2024-04-10T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maaginen viikko 2024: Maaginen satutuokio"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Hakunilan kirjastossa luetaan maaginen satu maagisen viikon maagisessa satutuokiossa keskiviikkona 10.4. kello 10."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Maagista viikkoa vietetään Hakunilan kirjastossa 8.-12.4.2024. Viikon ajan luvassa on paljon hauskaa maagista ohjelmaa, jota et halua missata!</p><p>Keskiviikkona 10.4. vuorossa on maaginen satutuokio kello 10. Satutuokiossa luetaan taianomainen satu. Vapaa pääsy.</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282235/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282234",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11002,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-22T18:32:08.174452Z",
                    "last_modified_time": "2024-02-22T18:32:08.174485Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D7D73DB5-4425-41B3-9D33-DFDE2546D872}/109731",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11002/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-22T18:32:08.145960Z",
            "last_modified_time": "2024-02-28T09:28:30.093359Z",
            "date_published": "2024-02-22T16:55:00Z",
            "start_time": "2024-04-08T13:00:00Z",
            "end_time": "2024-04-08T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maaginen viikko 2024: Taikasauvapaja & Loitsupaja"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Maaginen viikko pyörähtää käyntiin Hakunilan kirjastossa maanantaina 8.4. taikasauvapajalla klo 16-17 ja heti perään loitsupajalla kello 17-18."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Maagista viikkoa vietetään Hakunilan kirjastossa 8.-12.4.2024. Viikon ajan luvassa on paljon hauskaa maagista ohjelmaa, jota et halua missata!</p><p>Maanantaina 8.4. maaginen viikko pyörähtää käyntiin taikasauvapajalla kello 16-17. Taikasauvapajassa askarrellaan omat taikasauvat.</p><p>Taikasauvapajan jälkeen otetaan uudet taikasauvat heti käyttöön, kun vuorossa on loitsupaja kello 17-18. Loitsupajassa harjoitellaan kirjastolaisen johdolla erilaisia loitsuja. Osallistujat pääsevät myös keksimään omia loitsujaan.</p><p>Kirjasto tarjoaa askartelutarvikkeet. Vapaa pääsy. Ei ennakkoilmoittautumista.</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282234/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282406",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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: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/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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11097,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-28T09:27:19.981234Z",
                    "last_modified_time": "2024-02-28T09:27:19.981253Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{B6E25453-2183-4F03-A60E-5760BCA4461D}/100539",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11097/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-28T09:27:19.958244Z",
            "last_modified_time": "2024-02-28T09:27:20.080790Z",
            "date_published": "2024-02-28T08:10:28.900000Z",
            "start_time": "2024-03-07T13:00:00Z",
            "end_time": "2024-03-07T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Albaniankielinen satutuokio"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa sukeltamaan satumaailmaan ja kuuntelemaan satua albaniaksi!"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa sukeltamaan satumaailmaan ja kuuntelemaan satua albaniaksi! </p><p>Satakielikuukauden aikana Itäkeskuksen kirjaston lastenosaston pelinurkassa koetaan elämyksellisiä satutuokioita eri kielillä. Tuokiot ovat suunnattu kaikenikäisille 3-vuotiaista ylöspäin. Satuhetken pituus on noin 30 minuuttia.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282406/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282405",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10791/?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/helmet:11699/?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:12006/?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:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11096,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-28T09:27:09.683394Z",
                    "last_modified_time": "2024-02-28T09:27:09.683419Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{882C055D-26D2-429A-8F03-05711DE3D90A}/109865",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11096/?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:p16486/?format=api"
                }
            ],
            "created_time": "2024-02-28T09:27:09.654742Z",
            "last_modified_time": "2024-02-28T09:27:09.815978Z",
            "date_published": "2024-02-28T07:46:21.067000Z",
            "start_time": "2024-03-05T07:15:00Z",
            "end_time": "2024-03-05T09:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten musiikkihetket"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Itä-Helsingin musiikkiopiston lastenkonsertit Kodaly-viikon merkeissä Itäkeskuksen kirjastossa"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<h2></h2><h2>Itä-Helsingin musiikkiopiston opettajien ja oppilaiden musiikkiesityksiä ja yhteislaululeikkejä lapsille</h2><p> <br> <strong>Itä-Helsingin musiikkiopisto (IHMO)</strong> järjestää Itäkeskuksen kirjastossa kaksi konserttia/musiikkihetkeä kirjaston asiakkaille ti 5.3. klo 9:15 ja 10:30. Konserttien kesto on 30–40 min. Konsertit ovat osa 35 vuotta täyttävää Kansainvälistä Kodály-viikkoa, jonka ”Musiikki kuuluu kaikille” -teeman mukaisesti konsertteja järjestetään myös kirjastoissa.</p><p>Juontajina ja laulattajina toimivat IHMO:n muskariopettajat <strong>Milja Angervo</strong> ja <strong>Tuuli Ingman</strong>. Kitaralla säestää <strong>Kalle Rinne</strong>. Konserteissa saamme nähdä ja kuulla myös soitinesittelyjä.<br> </p><p> <strong>Ohjelma:</strong> </p><p> <strong>Klo 9:15 <em>Diminuendo</em></strong> </p><p> <strong>Klo 10:30 <em>Marcato</em></strong> </p><p> <br> <em>Tilaisuuteen on vapaa pääsy. Tervetuloa!</em> <br> <br> <a href=\"https://ihmo.fi/ihmo/\">https://ihmo.fi/ihmo/</a> <br> <br> <br> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282405/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282276",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:11767/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11025,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-24T12:27:19.341290Z",
                    "last_modified_time": "2024-02-24T12:27:19.341308Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{83E5ADCF-8B60-4356-B4F1-8C3CB96362D4}/109782",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11025/?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": "2024-02-24T12:27:19.909343Z",
            "last_modified_time": "2024-02-28T09:27:05.496089Z",
            "date_published": "2024-02-24T10:52:00Z",
            "start_time": "2024-03-02T11:00:00Z",
            "end_time": "2024-03-02T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kevätaskartelua romaniaksi",
                "en": "Romanian Spring Crafts"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Lasten tapahtumatila, 3. krs",
                "en": "The Event Space, 3rd floor"
            },
            "short_description": {
                "fi": "Tervetuloa keväiseen askarteluun!",
                "en": "Welcome to do Spring Crafts!"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Kevät saapuu, totta kai vielä ulkona on paljon lunta, mutta se ei estä meitä juhlimasta kevättä, eikö niin?</p><p>Ja miten muuten voisimme juhlia sitä kauniimmin kuin leikkien, lukien ja laulaen?</p><p>Tapaa meidät Oodissa 2. maaliskuuta klo 13:00, 3. kerroksessa, lähellä Satuhuonetta, missä teemme yhdessä Martisoareja, Romanian kevään symbolia, kortteja äideille, isoäideille ja teille rakkaille, luemme ja varmasti hauskaa yhdessä!</p><p>Me tuomme kirjat ja kaiken tarvittavan työpajaa varten, te tuotte hyvän mielen ja leikinhalun. Kuten aina, meillä on ystävämme \"Zmeișorii\" mukanamme.</p><p>Tervetuloa!</p><p>*****</p><p>Vine vine primăravara….bine, bine e adevărat ca afară încă avem muuultă zăpadă, dar asta nu ne împiedică să sărbătorim Primăvara, nu-i așa?</p><p>Și cum altfel o putem sărbători mai frumos decât prin joacă, citit și cântat?</p><p>Ne întâlnim la Oodi, pe 2 Martie la ora 13:00, la etajul 3, lângă Story room, unde vom face împreună Mărțișoare, simbolul românesc al Primăverii, felicitări pentru mămici, bunici și oameni dragi vouă, vom citi și cu siguranță ne vom distra împreună!</p><p>Noi aducem cărțile și tot ce ne trebuie pentru atelier, voi aduceți voia bună și cheful de joacă. Ca de obicei, îi vom avea pe prietenii “Zmeișorii” alături de noi. Abia aștept să ne vedem! </p>",
                "en": "<p>Spring is coming, indeed there's still a lot of snow outside, but that doesn't stop us from celebrating Spring, right?</p><p>And how else can we celebrate it more beautifully than through play, reading, and singing?</p><p>Meet us at Oodi on March 2nd at 1:00 PM, on the 3rd floor, near the Event space, where we'll make Martisoare together, the Romanian symbol of Spring, cards for moms, grandmas, and dear ones to you, we'll read, and surely have fun together!</p><p>We bring the books and everything we need for the workshop, you bring the good mood and the joy of play. As usual, we'll have our friends the \"Zmeișorii\" with us.</p><p>Can't wait to see you!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282276/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:280905",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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:11996/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 7514,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-02T06:30:13.926218Z",
                    "last_modified_time": "2024-02-06T13:41:43.743115Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{A1FACB1F-8AAD-4D77-B88E-643F646C9FE7}/109053",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7514/?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": "2024-02-01T15:30:19.830929Z",
            "last_modified_time": "2024-02-28T08:27:01.885152Z",
            "date_published": "2024-01-31T10:00:00Z",
            "start_time": "2024-03-09T09:00:00Z",
            "end_time": "2024-03-09T09:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Etelä-Italian kansantanssit Tikkurilan kirjastossa",
                "sv": "Folkdans från södra Italien",
                "en": "Southern Italian Folk Dances in Tikkurila library"
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Lummesali",
                "sv": "Lummesali",
                "en": "Lummesali"
            },
            "short_description": {
                "fi": "Tule tanssimaan kirjastoon!Valmistaudu päästämään irti intohimoasi tanssille epätavallisessa mutta lumoavassa ympäristössä: Tikkurilan kirjasto muuttuu eloisaan ja värikkääseen näyttämöön!",
                "sv": "En interaktiv lektion: Har du aldrig dansat folkdanser? Inga problem, kom för att titta och för att pröva på det tillsammans med oss! Evenemanget äger rum på engelska och på italienska och allting översätts samtidigt till finska.",
                "en": "Interactive Lesson: Never danced folk dances before? No problem, come and dive right into the atmosphere."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Valmistaudu päästämään irti intohimosi tanssin parissa epätavallisessa mutta kiehtovassa ympäristössä. </p><p>Tule kokeilemaan ja tanssimaan Etelä-Italialaisia kansantansseja: pizzica, pizzica ylä-Salentosta, Sonu a ballu (kalabrialainen tarantella), tarantella del Gargano ja tamburin tanssi (tamurriate). Ei haittaa vaikket olisi kansantansseja koskaan tanssinut, tilaisuudessa opit perusaskeleet.</p><p>Opettajana toimii Claudia Giordano, joka on Etelä-Italialaisten kansantanssien opettaja Tarantarte-yhdistyksessä. Hän on opettanut Bolognassa ja Modenassa ja opettaa Helsingissä yhteistyössä Italian ystävien seuran kanssa. </p><p>Tapahtuma on ilmainen ja sopii kaikenikäisille. Tapahtuman kieli on englanti sekä italia mutta pääohjeiden simultaanikäännös on saatavilla suomeksi. </p><p>Tapahtuma on osa Satakielikuukauden ohjelmistoa. Satakielikuukausi nostaa esille monikielisyyttä erilaisten tapahtumien ja tempausten kautta. </p><p>Lisätietoja satakielikuukaudesta löydät täältä: <a href=\"https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fsatakielikuukausi.fi%2F&amp;data=05%7C02%7Clia.gasbarra%40vantaa.fi%7Cc8eed1c1a55f4806971108dc382c248a%7Cdad5d62c98304db09c1589befcc5cf3e%7C0%7C0%7C638447009466891232%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=%2Ft%2BruT9EtFX2uRp6NG4mUtN4%2BGQZ59DnELceBLGVrbA%3D&amp;reserved=0\" title=\"Alkuperäinen URL-osoite: http://satakielikuukausi.fi/. Napsauta tai napauta, jos luotat tähän linkkiin.\">Satakielikuukausi</a>.fi </p><p>Yhteistyökumppanina toimii <a href=\"https://www.facebook.com/CircoloItalianiFinlandia\">Circolo degli italian</a>i in Finlandia</p><p>Seuraa meitä sosiaalisessa mediassa <a href=\"https://www.instagram.com/tarantarte/?hl=fi\">https://www.instagram.com/tarantarte/?hl=fi</a></p><p>Valokuva : Sara Sgro - Logo: satakielikuukausi </p><p>______________________________________________________</p><p>Vieni a ballare in biblioteca!</p> <p>Preparati a scatenare la tua passione per il ballo in un contesto insolito ma affascinante: la biblioteca di Tikkurila si trasformerà in un palcoscenico vivace e colorato!</p> <p>Durante l'incontro, vedremo e balleremo assieme alcune danze popolari del ricco repertorio del sud Italia, tra cui: pizzica pizzica, ballo sul tamburo (tamurriata), sonu a ballo (tarantella calabrese).</p> <p>L’insegnante: Claudia Giordano è insegnante di Danza Popolare del Sud Italia presso l’associazione Tarantarte. Ha insegnato a Bologna e Modena, mentre a Helsinki insegna in collaborazione con il Circolo degli Italiani in Finlandia.</p> <p>Lezione Interattiva: Non hai mai ballato danze popolari? Nessun problema, vieni a vedere e a provare con noi! L’evento è in inglese e Italiano, con traduzione simultanea in finlandese.</p> <p>Esplorazione Culturale: ogni danza racconta una storia. Approfitta dell'occasione per scoprire la ricchezza culturale di diverse comunità attraverso le loro tradizioni di danza.</p> <p>L’evento è gratuito e adatto a tutte le età</p> <p> <a href=\"https://www.satakielikuukausi.fi/\">Satakielikuukausi</a> mette in evidenza la multilinguismo attraverso vari eventi e iniziative.</p> <p>in collaborazione con: <a href=\"https://www.facebook.com/CircoloItalianiFinlandia\">Circolo degli italian</a>i in Finlandia</p> <p>Segui sui social:<a href=\"https://www.instagram.com/tarantarte/?hl=fi\">https://www.instagram.com/tarantarte/?hl=f</a></p> <p>Foto: Sara Sgro - Logo: Satakielikuukausi</p>",
                "sv": "<p>Förbered dig att släppa loss din passion tillsammans i dansens ovanliga, men fängslande omgivning: Dickursby bibliotek omvandlas till en livlig och färggrann scen att uppträda på! Under mötet får vi se på och dansa tillsammans några av de folkdanser som härstammar från södra Italiens rika danstraditioner, bland annat pizzica pizzica, tamburindans (tamurriata) och sonu a ballo (kalabresisk tarantella).</p><p>Läraren, Claudia Giordano, undervisar i södra Italiens folkdans i Tarantarte-föreningen. Hon har undervisat i Bologna och Modena och i Helsingfors undervisar hon i samarbete med den italienska föreningen i Finland.</p><p>En kulturell undersökning: Varenda dans berättar en historia. Ta tillfället i akt och bekanta dig med den kulturella rikedomen i olika samfund genom deras danstraditioner.</p><p>Evenemanget är gratis och passar alla åldrar.</p><p> <a href=\"https://satakielikuukausi.fi/sv/\">Flerspråkighetsmånaden har firats i Finland sedan 2015 och i Norden sedan 2017 under namnet Multilingual Month.</a> </p><p>Följ oss på de sociala medierna: [evenemanget hastag] : #tarantarte Bologna e Modena ja #scuola Tarantarte #Satakielikuukausi #MultilingualMonth #FlerspråkighetsMånaden #Flerspråkighet #monikielisyys </p><p>I samarbete med: <a href=\"https://www.facebook.com/CircoloItalianiFinlandia\">Circolo degli Italiani in Finlandia</a></p>",
                "en": "<p>Come and dance at the library!</p><p>Get ready to unleash your passion for dance in an unusual setting: Tikkurila library will transform into a lively and colorful stage! During the event, we will see and dance together some popular dances from the rich repertoire of southern Italy, including: pizzica pizzica, dance on the drum (tamurriata), and sonu a ballo (Calabrian tarantella). Every dance tells a story. Take this opportunity to discover the cultural richness of different communities through their dance traditions.</p><p>The instructor, Claudia Giordano, is a Folk Dance teacher at Tarantarte (Italy). She has taught in Bologna and Modena, and in Helsinki, she teaches in collaboration with the Circle of Italians in Finland.</p><p>The event is free and suitable for all ages.</p><p> <a href=\"http://Satakielikuukausi.fi\">The event is held as part of the Multilingual Month</a> </p><p>in collaboration with: <a href=\"https://www.facebook.com/CircoloItalianiFinlandia\">Circolo degli italiani in Finlandia</a></p><p>Photo: Sara Sgro - Logo: Satakielikuukausi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280905/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:In-Realtime_linktest2",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:73686/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6915/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "Youtube",
                    "link": "https://www.youtube.com/live/RtBNiT4G0Bs?si=b68uksKs4ZhQKwR_",
                    "language": "fi"
                },
                {
                    "name": "youtube",
                    "link": "https://www.youtube.com/live/RtBNiT4G0Bs?si=b68uksKs4ZhQKwR_",
                    "language": "en"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "56€"
                    },
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136"
                    },
                    "description": {
                        "fi": "Vain eur"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 10827,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-14T10:03:47.819719Z",
                    "last_modified_time": "2024-02-14T10:03:47.819740Z",
                    "name": "Realtime kuvateksti",
                    "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=3817086b-fd2a-42c0-8141-5aca3acd1f71&Timestamp=638423929622419713&Full=true",
                    "cropping": "",
                    "photographer_name": "Kuvaaja",
                    "alt_text": "Alttiteksti",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Complete city tour",
                    "url": "https://www.youtube.com/watch?v=oZ462vqo9_8",
                    "alt_text": "Videokuvaus"
                }
            ],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6915/?format=api"
                }
            ],
            "created_time": "2024-02-28T06:55:42.717867Z",
            "last_modified_time": "2024-02-28T06:55:42.717888Z",
            "date_published": "2024-02-01T08:41:28Z",
            "start_time": "2024-02-22T08:50:00Z",
            "end_time": "2024-02-29T10:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 5,
            "audience_max_age": 60,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 20,
            "minimum_attendee_capacity": 60,
            "enrolment_start_time": "2024-02-19T09:30:00+02:00",
            "enrolment_end_time": "2024-02-19T13:53:00+02:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "In-Realtime link testaus 2 28022024",
                "en": "In-Realtime link testing 2 28022024"
            },
            "provider": {
                "fi": "Hakeli",
                "en": "Hagel"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "lyh kuvaus",
                "en": "short"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136",
                "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136"
            },
            "description": {
                "fi": "test",
                "en": "test"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:In-Realtime_linktest2/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:In-Realtime_linktest1",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:73686/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6915/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "Youtube",
                    "link": "https://www.youtube.com/live/RtBNiT4G0Bs?si=b68uksKs4ZhQKwR_",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "56€"
                    },
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136"
                    },
                    "description": {
                        "fi": "Vain eur"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 10827,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-14T10:03:47.819719Z",
                    "last_modified_time": "2024-02-14T10:03:47.819740Z",
                    "name": "Realtime kuvateksti",
                    "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=3817086b-fd2a-42c0-8141-5aca3acd1f71&Timestamp=638423929622419713&Full=true",
                    "cropping": "",
                    "photographer_name": "Kuvaaja",
                    "alt_text": "Alttiteksti",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Complete city tour",
                    "url": "https://www.youtube.com/watch?v=oZ462vqo9_8",
                    "alt_text": "Videokuvaus"
                }
            ],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6915/?format=api"
                }
            ],
            "created_time": "2024-02-28T06:45:57.382472Z",
            "last_modified_time": "2024-02-28T06:45:57.382510Z",
            "date_published": "2024-02-01T08:41:28Z",
            "start_time": "2024-02-22T08:50:00Z",
            "end_time": "2024-02-29T10:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 5,
            "audience_max_age": 60,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 20,
            "minimum_attendee_capacity": 60,
            "enrolment_start_time": "2024-02-19T09:30:00+02:00",
            "enrolment_end_time": "2024-02-19T13:53:00+02:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "In-Realtime link testaus 28022024"
            },
            "provider": {
                "fi": "Hakeli"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "lyh kuvaus"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136"
            },
            "description": {
                "fi": "test"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:In-Realtime_linktest1/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282400",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11092,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-27T18:30:11.283216Z",
                    "last_modified_time": "2024-02-27T18:30:11.283242Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{313ED824-B51E-4120-B064-ADA4E2C74D77}/109859",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11092/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-27T19:30:09.652447Z",
            "last_modified_time": "2024-02-27T19:30:09.807989Z",
            "date_published": "2024-02-27T18:00:00Z",
            "start_time": "2024-03-06T10:00:00Z",
            "end_time": "2024-03-06T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Äänestä ja vaikuta Helsingissä",
                "en": "Vote and Make a Difference in Helsinki!"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Liity mukaan informatiivisiin työpajoihin",
                "en": "Join Us for Informative Workshops"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Kiinnostaako Helsingin kaupungin tulevaisuus ja siihen vaikuttaminen? Nyt pääset vaikuttamaan! Helsingin kaupungilla on 8,8 miljoonaa euroa, joiden käytöstä sinä päätät. Äänestä ehdotusten puolesta, jotka kiinnostavat sinua ja edistävät Helsingin positiivista muutosta.</p><p>Äänestysaika: 28. helmikuuta - 17. maaliskuuta 2024</p><p>Liity mukaan informatiivisiin työpajoihin:</p><p>📍 <strong>Pasilan kirjasto</strong></p><p>Päivä: ke 6.3.2024</p><p>Aika: 12:00-18:00</p><p>Opi Omastadista, äänestämisen tärkeydestä, äänestysajasta, -menetelmistä ja enemmän!</p><p>📍 <strong>Itäkeskuksen kirjasto</strong></p><p>Päivä: la 9.3.2024</p><p>Aika: 13:00-15:00</p><p>Hyppää ehdotuksiin ja selvitä, miten voit vaikuttaa Helsingin tulevaisuuteen.</p><p>Paikalla kahvi- ja teetarjoilu.</p><p>Äänesi on tärkeä, sillä yhdessä rakennetaan kaikille parempi Helsinki!</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a> </p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Itakeskuksen_kirjasto\">Itäkeskuksen kirjasto</a> </p>",
                "en": "<p>Are you interested to shape the future of Helsinki? Here's your chance to make an impact! With EUR 8.8 million at stake, your voice matters more than ever. Get ready to vote for the proposals that resonate with you and contribute to the positive transformation of our beloved city.</p><p>Voting Period: February 28 - March 17, 2024</p><p>Join Us for Informative Workshops:</p><p>📍 <strong>Pasila Library</strong></p><p>Date: Wednesday, March 6, 2024</p><p>Time: 12:00-18:00</p><p>Learn about Omastadi, the importance of voting, the voting period, methods, and more!</p><p>📍 <strong>Itäkeskus Library</strong></p><p>Date: Saturday, March 9, 2024</p><p>Time: 13:00 - 15:00</p><p>Dive deep into the proposals and discover how you can make a difference in Helsinki's future.</p><p>Enjoy complimentary coffee and tea as you engage in meaningful discussions and learn how your vote can shape the destiny of Helsinki.</p><p>Your vote counts. Your voice matters. Together, let's build a better Helsinki for all!</p>",
                "ar": "<p>صوّت وأحدث فرقًا في هلسنكي</p><p>فرصتك ليكون لك تأثير مع وجود مبلغ 8.8 مليون يورو، يمكنكم التصويت على المقترحات التي تجد صدى لديكم وتساهم في التحول الإيجابي لمدينتنا الحبيبة.</p><p>تعرف على أوماستادي وأهمية التصويت وفترة التصويت وطرقه والمزيد!</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a> </p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Itakeskuksen_kirjasto\">Itäkeskuksen kirjasto</a> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282383",
            "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: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:10814/?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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11091,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-27T16:30:16.508533Z",
                    "last_modified_time": "2024-02-27T16:30:16.508558Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{835072EF-403A-4624-8BA4-C25A6CA7E399}/109850",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11091/?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": "2024-02-27T15:28:49.572970Z",
            "last_modified_time": "2024-02-27T16:30:16.565213Z",
            "date_published": "2024-02-27T13:34:00Z",
            "start_time": "2024-03-02T08:30:00Z",
            "end_time": "2024-03-02T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Satakielikuukausi-perhepäivä Laajasalon kirjastolla",
                "en": "Laajasalo library's Satakielikuukausi (Multilingual Month) happening"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Satakielikuukausi-perhepäivä Laajasalon kirjastossa",
                "en": "Satakielikuukausi (Multilingual Month) happening at Laajasalo library"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa Laajasalon kirjaston Satakielikuukausi-perhepäivään </p><p>Päivän ohjelma:<br> 10.30-11.00 Kamishibai-paperiteatteriesitys *<br> 11.00-11.30 väritystehtäviä Kamishibain hengessä</p><p>12.00-14.30 Susurrador-työpaja **</p><p>* Kamishibai on lähtöisin Japanista ja tarkoittaa paperiteatteria. Pieni puunäyttämö ja värikkäät kuvat saavat tarinan pienestä ketusta heräämään eloon.</p><p>Tuokio kestää n. 30 min ja on suunnattu erityisesti alle kouluikäisille lapsille. Tule ajoissa saadaksesi parhaat paikat, sillä näyttämö on pienikokoinen. Esityksen jälkeen lapset pääsevät värittämään tarinan kuvia sekä sanoja eri kielillä.</p><p>**Susurrador eli kuiskaaja on suosittu tapa kertoa tarinoita ja loruja Etelä-Amerikassa. Tule yhdessä perheesi kanssa koristelemaan oma kuiskaaja. Pääset samalla kuulemaan kuiskausputkien läpi, miltä useat maailman eri kielet kuulostavat.</p><p>Susurrador on drop-in-työpaja, johon olet tervetullut milloin tahansa klo 12-14.30 välillä. Askartelumateriaalia riittää ensimmäisille 25 perheelle. Työpajan järjestää Selkokulttuuri ry yhteistyössä kirjastohenkilökunnan kanssa.</p><p>Kirjastossa on tapahtuman ajan lainattavissa maailman kielistä kertovaa kirjallisuutta sekä lastenkirjoja kielillä, joita valikoimiimme ei yleensä kuulu: arabia, espanja, kiina, kurdi, portugali, saksa, somali, ranska ja viro.</p><p>Satakielikuukausi on äidinkieltä ja kielellistä moninaisuutta juhliva jakso, jota vietetään Kansainvälisen äidinkielen päivän 21.2. ja Maailman runouden päivän 21.3. välissä. Monikielisyys näkyy erilaisten kohtaamisten, keskustelun, projektien, taiteen ja yhdessä tekemisen kautta.</p><p>Satakielikuukautta on vietetty Suomessa vuodesta 2015, eli vuosi 2024 on 10-vuotisjuhla!</p><p>Tapahtuma Facebookissa <a href=\"https://fb.me/e/3cEaKdfVO\" title=\"https://fb.me/e/3ceakdfvo\">https://fb.me/e/3cEaKdfVO</a> </p>",
                "en": "<p>Welcome to Laajasalo library's Satakielikuukausi (Multilingual Month) happening</p><p> <strong>Program:</strong> </p><p>10.30-11.00 Kamishibai paper theater performance*<br> 11.00-11.30 paper coloring in the spirit of the performance<br> 12.00-14.30 Susurrador workshop**</p><p>* Kamishibai is a Japanese paper theater. A small wooden stage and colorful pictures bring alive a story of a little fox.</p><p>The theater performance lasts for approx. 30 minutes and is aimed specifically at children under 7 years old. Come early to get the best seats, as the stage is small. After the performance the children get to color the pictures and words of the story in different languages.</p><p>**Susurrador or 'whisperer' is a popular way of telling stories and rhymes in South America. Come with your family members and decorate your own Susurrador whisperer. At the same time, you get to hear what several different languages of the world sound like through the whispering tubes.</p><p>Susurrador is a drop-in workshop that you are welcome to attend at any time between 12.00 and 14.30. We have crafting material for the first 25 families. The workshop is organized by Selkokulttuuri ry in cooperation with the library staff.</p><p>During the event, literature about world languages and children's books in languages that are not normally included in our collections can be borrowed in the library: Arabic, Chinese, German, Estonian, French, Kurdish, Portuguese, Somali and Spanish.</p><p>Multilingual Month is a celebration of mother tongues and multilingualism. It takes place between International Mother Language Day (21 February), and World Poetry Day and International Day for the Elimination of Racial Discrimination (21 March). Multilingualism is visible in all kinds of encounters, discussions, projects, art and shared activities.</p><p>Multilingual Month Satakielikuukausi has been celebrated in Finland since 2015, which makes 2024 its 10th anniversary!</p><p>Event in Facebook: </p><p> <a href=\"https://fb.me/e/3cEaKdfVO\" title=\"https://fb.me/e/3ceakdfvo\">https://fb.me/e/3cEaKdfVO</a> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282383/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281342",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 7461,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-31T14:31:47.122876Z",
                    "last_modified_time": "2024-02-06T13:41:17.555180Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9015F8D5-3B64-4A17-BFF3-C74EACBCB6CB}/109108",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7461/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-06T09:27:24.964101Z",
            "last_modified_time": "2024-02-27T16:30:16.085872Z",
            "date_published": "2024-02-05T22:00:00Z",
            "start_time": "2024-03-02T08:00:00Z",
            "end_time": "2024-03-02T08:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Avain hukassa -musiikkisirkus"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Musiikkia ja nykysirkusta sisältävässä koko perheen esityksessä etsitään kadonnutta avainta, käydään kylässä eri kodeissa ja tavataan naapureita."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa nauttimaan Avain hukassa -musiikkisirkuksesta Lumon kirjastoon 2.3.2024 klo 10.00!</p><p>Musiikkia ja nykysirkusta sisältävässä koko perheen esityksessä etsitään kadonnutta avainta, käydään kylässä eri kodeissa ja tavataan naapureita. Akustinen ja elektroninen musiikki saa vauhtia pyörivistä vanteista, pomppivista palloista, lumoavista saippuakuplista ja välillä herkistytään kuuntelemaan ja katsomaan tasapainoilua lasipullojen päällä. </p><p>Esitys pohjautuu Sanna Manderin kirjaan Avain hukassa ja sen runot on lauluiksi säveltänyt Sannis Sundström. </p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Suositusikäraja 3+ ja kesto 45 min. </p><p>Esitys on osa Vantaa 50 -vuotisjuhlavuoden ohjelmistoa sekä Satakielikuukauden ohjelmistoa.</p><p> . </p><p> <em>Kuva: Antti Rintala</em> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281342/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:278921",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8277/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10847/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6684,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-16T15:24:16.529971Z",
                    "last_modified_time": "2024-02-06T13:40:44.576972Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{24A2606C-4920-4135-BB2B-F010684F8070}/86752",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6684/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-01-11T14:28:38.782279Z",
            "last_modified_time": "2024-02-27T15:31:44.161551Z",
            "date_published": "2024-01-11T13:07:00Z",
            "start_time": "2024-05-23T15:00:00Z",
            "end_time": "2024-05-23T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kevätkauden lukupiiri"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Suutarilan kirjaston lukupiirissä luetaan kiinnostavia kirjoja ja jutellaan niistä teekupin äärellä."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Suutarilan kirjaston lukupiirissä luetaan kiinnostavia kirjoja ja jutellaan niistä teekupin äärellä. Piiri kokoontuu kerran kuussa torstaisin klo 18-19.30 kirjaston monitoimitilassa. Lukupiiriä vetää Tiina Koskinen. Kirjoja on varattuna kirjastossa lukupiiriläisille.<br><br> 21.3. Sauli Miettinen: Jorma Uotinen<br> 25.4. Katri Vala: Kootut runot<br> 23.5. Olga Tokarczuk: Alku ja muut ajat</p> </p> <p>Kuva: Emily Rudolph/ Unsplash<br> </p> </p> </p> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278921/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:278068",
            "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: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: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/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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 7047,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-08T15:25:52.648057Z",
                    "last_modified_time": "2024-02-06T13:38:33.574803Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{B6389C8D-EFEF-42CE-8FC5-A1B3E210DC15}/108508",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7047/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-08T15:28:58.432194Z",
            "last_modified_time": "2024-02-27T15:31:42.303655Z",
            "date_published": "2024-01-08T14:00:00Z",
            "start_time": "2024-05-23T06:30:00Z",
            "end_time": "2024-05-23T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Satutunnit Pasilassa"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Pasilan kirjastossa keväällä 2024"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p> <strong>Satutunnit </strong> </p><p> <strong>Pasilan kirjastossa keväällä 2024 torstaisin 9.30-10.00</strong> </p><p>18.1.; 1.2.; 15.2.; 29.2.; 14.3.; 28.3.; 11.4.; 25.4.; 23.5.</p><p>Ryhmien ilmoittauminen:</p><p> <a href=\"mailto:elo.lammi@hel.fi\">elo.lammi@hel.fi</a> </p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278068/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:278922",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8277/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10847/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6684,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-16T15:24:16.529971Z",
                    "last_modified_time": "2024-02-06T13:40:44.576972Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{24A2606C-4920-4135-BB2B-F010684F8070}/86752",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6684/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-01-11T14:28:05.656888Z",
            "last_modified_time": "2024-02-27T15:30:59.266512Z",
            "date_published": "2024-01-11T13:07:00Z",
            "start_time": "2024-04-25T15:00:00Z",
            "end_time": "2024-04-25T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kevätkauden lukupiiri"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Suutarilan kirjaston lukupiirissä luetaan kiinnostavia kirjoja ja jutellaan niistä teekupin äärellä."
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Suutarilan kirjaston lukupiirissä luetaan kiinnostavia kirjoja ja jutellaan niistä teekupin äärellä. Piiri kokoontuu kerran kuussa torstaisin klo 18-19.30 kirjaston monitoimitilassa. Lukupiiriä vetää Tiina Koskinen. Kirjoja on varattuna kirjastossa lukupiiriläisille.<br><br> 21.3. Sauli Miettinen: Jorma Uotinen<br> 25.4. Katri Vala: Kootut runot<br> 23.5. Olga Tokarczuk: Alku ja muut ajat</p> </p> <p>Kuva: Emily Rudolph/ Unsplash<br> </p> </p> </p> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278922/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:278067",
            "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: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: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/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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 7047,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-08T15:25:52.648057Z",
                    "last_modified_time": "2024-02-06T13:38:33.574803Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{B6389C8D-EFEF-42CE-8FC5-A1B3E210DC15}/108508",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7047/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-08T15:28:24.803739Z",
            "last_modified_time": "2024-02-27T15:30:56.173664Z",
            "date_published": "2024-01-08T14:00:00Z",
            "start_time": "2024-04-25T06:30:00Z",
            "end_time": "2024-04-25T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Satutunnit Pasilassa"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Pasilan kirjastossa keväällä 2024"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p> <strong>Satutunnit </strong> </p><p> <strong>Pasilan kirjastossa keväällä 2024 torstaisin 9.30-10.00</strong> </p><p>18.1.; 1.2.; 15.2.; 29.2.; 14.3.; 28.3.; 11.4.; 25.4.; 23.5.</p><p>Ryhmien ilmoittauminen:</p><p> <a href=\"mailto:elo.lammi@hel.fi\">elo.lammi@hel.fi</a> </p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a> </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282396",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8277/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10847/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11085,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-27T15:29:00.525123Z",
                    "last_modified_time": "2024-02-27T15:29:00.525140Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{0C8F22E5-7E6E-4247-89B8-8CB1585E4D21}/105853",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11085/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-27T15:30:38.713577Z",
            "last_modified_time": "2024-02-27T15:30:38.821749Z",
            "date_published": "2024-02-27T14:05:31.480000Z",
            "start_time": "2024-04-17T15:00:00Z",
            "end_time": "2024-04-17T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Satukahvit"
            },
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa satukahveille!"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "Suutarilan kirjastossa tarjotaan satukahvit joka toinen keskiviikko klo 18.<br> Lukijana on vapaaehtoinen satutäti Memma. Vanhemmille kahvi- ja teetarjoilu.<br> Tuokio on suunnattu yli 3-vuotiaille lapsille. <br> Tervetuloa! Kuva: Maarit Hohteri/Helsingin kaupunki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282396/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}