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

{
    "meta": {
        "count": 27102,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=660",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=658"
    },
    "data": [
        {
            "id": "espoo_le:aghoc4rnai",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-07T09:20:31.278736Z",
            "last_modified_time": "2024-03-07T09:20:31.278760Z",
            "date_published": "2024-03-20T02:08:00Z",
            "start_time": "2024-04-18T14:00:00Z",
            "end_time": "2024-04-18T15: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": "Ukulelen alkeet",
                "en": "Ukulele for beginners"
            },
            "provider": null,
            "short_description": {
                "fi": "Ukulelen alkeet Ison Omenan kirjastossa torstaisin klo 17.00-18.00",
                "en": "Ukulele beginner class on Thursdays 5-6 pm in Iso Omena Libary"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Paljon toivotut ukulelen alkeet Ison Omenan kirjastossa! Kurssi on suunnattu aikuisille ja nuorille 12 vuodesta ylöspäin. Tunneilla käymme läpi soittamisen perusteet. Tähän kuuluu soittoasento, soinnut  ja komppaaminen. Tunneilla soitamme suomen- ja englanninkielisiä lauluja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Aikaisempaa musiikillista osaamista tai taustaa ei vaadita. Kirjastolla on lainasoittimia tunnin ajaksi. Tule mukaan!</p><p>Ryhmä kokoontuu torstaisin 25.1-16.5. HUOM! Ei tuntia 22.2. (hiihtoloma) 28.3. (Kiirastorstai) ja 9.5. (Helatorstai)  </p><p>#musiikki #ukulele #alkeet</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p>Ryhmää ohjaa musiikkipedagogi Sakari Heikka<br>sakari.heikka@espoo.fi</p><p></p>",
                "en": "<p>Ukulele class for beginners in Iso Omena Library. Class is for adults and youth 12 years or older. No previous musical experience required. Relaxing atmosphere and communality are important values of the group. The library has ukuleles which you can borrow for the lesson. Participation is free of charge and no pre-registration is needed.</p><p>Class is organized from 25th of Jan to 16th of May.<br>No class on 22nd of Feb, 28th of March, and 9th of May. </p><p>#music #ukulele </p><p>Music Pedagogue Sakari Heikka teaches the group<br>sakari.heikka@espoo.fi</p>"
            },
            "location_extra_info": {
                "fi": "Kokoustila Kaisla",
                "en": "Meeting Room Kaisla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnai/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4rndq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-07T09:20:31.083064Z",
            "last_modified_time": "2024-03-07T09:20:31.083155Z",
            "date_published": "2024-03-20T02:08: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": "Ukulelen alkeet",
                "en": "Ukulele for beginners"
            },
            "provider": null,
            "short_description": {
                "fi": "Ukulelen alkeet Ison Omenan kirjastossa torstaisin klo 17.00-18.00",
                "en": "Ukulele beginner class on Thursdays 5-6 pm in Iso Omena Libary"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Paljon toivotut ukulelen alkeet Ison Omenan kirjastossa! Kurssi on suunnattu aikuisille ja nuorille 12 vuodesta ylöspäin. Tunneilla käymme läpi soittamisen perusteet. Tähän kuuluu soittoasento, soinnut  ja komppaaminen. Tunneilla soitamme suomen- ja englanninkielisiä lauluja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Aikaisempaa musiikillista osaamista tai taustaa ei vaadita. Kirjastolla on lainasoittimia tunnin ajaksi. Tule mukaan!</p><p>Ryhmä kokoontuu torstaisin 25.1-16.5. HUOM! Ei tuntia 22.2. (hiihtoloma) 28.3. (Kiirastorstai) ja 9.5. (Helatorstai)  </p><p>#musiikki #ukulele #alkeet</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p>Ryhmää ohjaa musiikkipedagogi Sakari Heikka<br>sakari.heikka@espoo.fi</p><p></p>",
                "en": "<p>Ukulele class for beginners in Iso Omena Library. Class is for adults and youth 12 years or older. No previous musical experience required. Relaxing atmosphere and communality are important values of the group. The library has ukuleles which you can borrow for the lesson. Participation is free of charge and no pre-registration is needed.</p><p>Class is organized from 25th of Jan to 16th of May.<br>No class on 22nd of Feb, 28th of March, and 9th of May. </p><p>#music #ukulele </p><p>Music Pedagogue Sakari Heikka teaches the group<br>sakari.heikka@espoo.fi</p>"
            },
            "location_extra_info": {
                "fi": "Kokoustila Kaisla",
                "en": "Meeting Room Kaisla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rndq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4rng4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-07T09:20:30.890224Z",
            "last_modified_time": "2024-03-07T09:20:30.890250Z",
            "date_published": "2024-03-20T02:08:00Z",
            "start_time": "2024-04-04T14:00:00Z",
            "end_time": "2024-04-04T15: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": "Ukulelen alkeet",
                "en": "Ukulele for beginners"
            },
            "provider": null,
            "short_description": {
                "fi": "Ukulelen alkeet Ison Omenan kirjastossa torstaisin klo 17.00-18.00",
                "en": "Ukulele beginner class on Thursdays 5-6 pm in Iso Omena Libary"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Paljon toivotut ukulelen alkeet Ison Omenan kirjastossa! Kurssi on suunnattu aikuisille ja nuorille 12 vuodesta ylöspäin. Tunneilla käymme läpi soittamisen perusteet. Tähän kuuluu soittoasento, soinnut  ja komppaaminen. Tunneilla soitamme suomen- ja englanninkielisiä lauluja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Aikaisempaa musiikillista osaamista tai taustaa ei vaadita. Kirjastolla on lainasoittimia tunnin ajaksi. Tule mukaan!</p><p>Ryhmä kokoontuu torstaisin 25.1-16.5. HUOM! Ei tuntia 22.2. (hiihtoloma) 28.3. (Kiirastorstai) ja 9.5. (Helatorstai)  </p><p>#musiikki #ukulele #alkeet</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p>Ryhmää ohjaa musiikkipedagogi Sakari Heikka<br>sakari.heikka@espoo.fi</p><p></p>",
                "en": "<p>Ukulele class for beginners in Iso Omena Library. Class is for adults and youth 12 years or older. No previous musical experience required. Relaxing atmosphere and communality are important values of the group. The library has ukuleles which you can borrow for the lesson. Participation is free of charge and no pre-registration is needed.</p><p>Class is organized from 25th of Jan to 16th of May.<br>No class on 22nd of Feb, 28th of March, and 9th of May. </p><p>#music #ukulele </p><p>Music Pedagogue Sakari Heikka teaches the group<br>sakari.heikka@espoo.fi</p>"
            },
            "location_extra_info": {
                "fi": "Kokoustila Kaisla",
                "en": "Meeting Room Kaisla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rng4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4rnka",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-07T09:20:30.696882Z",
            "last_modified_time": "2024-03-07T09:20:30.696907Z",
            "date_published": "2024-03-20T02:08:00Z",
            "start_time": "2024-03-21T15:00:00Z",
            "end_time": "2024-03-21T16: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": "Ukulelen alkeet",
                "en": "Ukulele for beginners"
            },
            "provider": null,
            "short_description": {
                "fi": "Ukulelen alkeet Ison Omenan kirjastossa torstaisin klo 17.00-18.00",
                "en": "Ukulele beginner class on Thursdays 5-6 pm in Iso Omena Libary"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Paljon toivotut ukulelen alkeet Ison Omenan kirjastossa! Kurssi on suunnattu aikuisille ja nuorille 12 vuodesta ylöspäin. Tunneilla käymme läpi soittamisen perusteet. Tähän kuuluu soittoasento, soinnut  ja komppaaminen. Tunneilla soitamme suomen- ja englanninkielisiä lauluja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Aikaisempaa musiikillista osaamista tai taustaa ei vaadita. Kirjastolla on lainasoittimia tunnin ajaksi. Tule mukaan!</p><p>Ryhmä kokoontuu torstaisin 25.1-16.5. HUOM! Ei tuntia 22.2. (hiihtoloma) 28.3. (Kiirastorstai) ja 9.5. (Helatorstai)  </p><p>#musiikki #ukulele #alkeet</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p>Ryhmää ohjaa musiikkipedagogi Sakari Heikka<br>sakari.heikka@espoo.fi</p><p></p>",
                "en": "<p>Ukulele class for beginners in Iso Omena Library. Class is for adults and youth 12 years or older. No previous musical experience required. Relaxing atmosphere and communality are important values of the group. The library has ukuleles which you can borrow for the lesson. Participation is free of charge and no pre-registration is needed.</p><p>Class is organized from 25th of Jan to 16th of May.<br>No class on 22nd of Feb, 28th of March, and 9th of May. </p><p>#music #ukulele </p><p>Music Pedagogue Sakari Heikka teaches the group<br>sakari.heikka@espoo.fi</p>"
            },
            "location_extra_info": {
                "fi": "Kokoustila Kaisla",
                "en": "Meeting Room Kaisla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnka/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4rnnu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rmwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rmzm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rm4y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnai/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rndq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rng4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnka/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-07T09:20:29.171981Z",
            "last_modified_time": "2024-03-07T09:20:29.172007Z",
            "date_published": "2024-03-20T02:08:00Z",
            "start_time": "2024-03-21T15:00:00Z",
            "end_time": "2024-05-16T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "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": "Ukulelen alkeet",
                "en": "Ukulele for beginners"
            },
            "provider": null,
            "short_description": {
                "fi": "Ukulelen alkeet Ison Omenan kirjastossa torstaisin klo 17.00-18.00",
                "en": "Ukulele beginner class on Thursdays 5-6 pm in Iso Omena Libary"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Paljon toivotut ukulelen alkeet Ison Omenan kirjastossa! Kurssi on suunnattu aikuisille ja nuorille 12 vuodesta ylöspäin. Tunneilla käymme läpi soittamisen perusteet. Tähän kuuluu soittoasento, soinnut  ja komppaaminen. Tunneilla soitamme suomen- ja englanninkielisiä lauluja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Aikaisempaa musiikillista osaamista tai taustaa ei vaadita. Kirjastolla on lainasoittimia tunnin ajaksi. Tule mukaan!</p><p>Ryhmä kokoontuu torstaisin 25.1-16.5. HUOM! Ei tuntia 22.2. (hiihtoloma) 28.3. (Kiirastorstai) ja 9.5. (Helatorstai)  </p><p>#musiikki #ukulele #alkeet</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p>Ryhmää ohjaa musiikkipedagogi Sakari Heikka<br>sakari.heikka@espoo.fi</p><p></p>",
                "en": "<p>Ukulele class for beginners in Iso Omena Library. Class is for adults and youth 12 years or older. No previous musical experience required. Relaxing atmosphere and communality are important values of the group. The library has ukuleles which you can borrow for the lesson. Participation is free of charge and no pre-registration is needed.</p><p>Class is organized from 25th of Jan to 16th of May.<br>No class on 22nd of Feb, 28th of March, and 9th of May. </p><p>#music #ukulele </p><p>Music Pedagogue Sakari Heikka teaches the group<br>sakari.heikka@espoo.fi</p>"
            },
            "location_extra_info": {
                "fi": "Kokoustila Kaisla",
                "en": "Meeting Room Kaisla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rnnu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282603",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11273,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-07T08:30:22.460320Z",
                    "last_modified_time": "2024-03-07T08:30:22.460344Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5E9FCD0B-DC0A-46B0-887F-9FBFFA848B5D}/110008",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11273/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-07T08:30:22.421973Z",
            "last_modified_time": "2024-03-07T08:30:22.584363Z",
            "date_published": "2024-03-07T07:34:56.473000Z",
            "start_time": "2024-03-18T12:00:00Z",
            "end_time": "2024-03-18T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Uutiskahvit selkokielellä"
            },
            "provider": null,
            "short_description": {
                "fi": "Haluatko tavata ihmisiä ja keskustella yhdessä eri aiheista? Hakunilan kirjasto tarjoaa uutiskahvit selkokielellä."
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Haluatko tavata ihmisiä ja keskustella yhdessä eri aiheista? Luemme lehtiä ja uutisia, esimerkiksi Selkovantaalaista. Tarjolla on kahvia, teetä ja keksejä. Tapahtuma on kaikille avoin ja ilmainen.</p><p>Tapaamme Hakunilan kirjastossa maanantaina 18.3. ja 22.4. kello 14. Tervetuloa mukaan!</p><p>Kuva: Pixabay.com</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282603/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282220",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10801/?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: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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11000,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-22T16:31:20.045090Z",
                    "last_modified_time": "2024-02-22T16:31:20.045115Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{76A5B376-9BFB-4B41-8CC3-89635B34E8A9}/109723",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11000/?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-22T16:31:20.001481Z",
            "last_modified_time": "2024-03-07T07:26:30.629690Z",
            "date_published": "2024-02-22T14:49:00Z",
            "start_time": "2024-03-08T14:00:00Z",
            "end_time": "2024-03-08T17: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": "Ukrainankielinen käsityöpaja perheille / Україномовний ремісничий майстер-клас для сімей"
            },
            "provider": null,
            "short_description": {
                "fi": "Запрошуємо вас на наші творчі родинні посиденьки для дорослих та дітей."
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<h3>Дитяча театрально-музична вистава <br> українською мовою під назвою \"Як курча маму шукало\".</h3><p>Вистава відбудеться на сцені бібліотеки \"Ізо Омена <br> 8 березня о 17.00 - 18.00</p><p>Запрошуємо на виставу!</p><h3></h3><h3>Україномовний ремісничий майстер-клас для сімей</h3><p>Запрошуємо вас на наші творчі родинні посиденьки для дорослих та дітей. Разом ми будемо створювати приємні гарні речі, а також:</p><p>- пробувати різні техніки (малювання, макраме, вишивання, в’язання, тощо)<br> - надихати один одного ідеями та позитивним запалом<br> - знижувати градус занепокоєння<br> - спілкуватися у колі однодумців</p><p>Ласкаво просимо до нашого гурту! Разом цікавіше! </p><p>Щоп’ятниці, 16.00 – 19.00</p><p>Кімната: Paja</p>"
            },
            "location_extra_info": {
                "fi": "Paja"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282220/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:272817",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2811,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:28.672772Z",
                    "last_modified_time": "2024-02-06T13:38:22.840802Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{B639063D-B1E6-4EE8-ACDF-889B8537FBB3}/85782",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2811/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-08T07:24:26.101869Z",
            "last_modified_time": "2024-03-07T07:25:27.636229Z",
            "date_published": "2023-12-08T05:47:00Z",
            "start_time": "2024-02-12T14:00:00Z",
            "end_time": "2024-02-12T16: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": "Asianajajapäivystys Töölön kirjastossa"
            },
            "provider": null,
            "short_description": {
                "fi": "Asianajajapäivystyksessä saa alkuneuvontaa kaikissa oikeudellisissa asioissa."
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p> <strong>Ajat vain ajanvarauksella puh. 09 310 85025. Ajan voi varata päivystystä edeltävän viikon torstaina klo 8.00 alkaen.</strong> <br> <br> Asianajajapäivystyksessä vapaaehtoiset asianajajat antavat maksutonta alkuneuvontaa oikeudellisissa asioissa. Asianajaja kertoo, onko asiassa tarpeen hakea lisää asiantuntija-apua ja ohjaa tarvittaessa asiaan perehtyneen asianajajan tai oikean viranomaisen puoleen. Päivystyksessä ei voida laatia asiakirjoja eikä hoitaa laajempia toimeksiantoja.<br> Jokaiselle asiakkaalle on varattu n. 15 min asiointiaikaa. Päivystyksessä käydyt keskustelut ovat aina luottamuksellisia.<br><br> Asianajajapäivystys maanantaina klo 16-18.30: <br> 15.1. TÄYNNÄ<br> 29.1. TÄYNNÄ<br> 12.2. TÄYNNÄ<br> 26.2. TÄYNNÄ<br> 11.3. TÄYNNÄ<br> 25.3.<br> 8.4.<br> 22.4.<br> 6.5.<br> 20.5.<br><br><a href=\"https://asianajajaliitto.fi/tapahtumakalenteri/asianajajapaivystys/\">Neuvonnan järjestää </a><a href=\"http://hki.asianajajat.fi/\"><u>Helsingin asianajajayhdistys</u></a></p><p> <br> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\"> <u>Töölön kirjasto</u> </a> </p>"
            },
            "location_extra_info": {
                "fi": "Kirjastosali, 2. krs"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272817/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:275321",
            "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:10675/?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:12023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2847,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:33:05.971063Z",
                    "last_modified_time": "2024-02-06T13:38:03.856256Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{3002E31A-12F4-46F4-A1A1-66149090DB51}/76016",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2847/?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:p2433/?format=api"
                }
            ],
            "created_time": "2023-12-20T08:27:49.420035Z",
            "last_modified_time": "2024-03-07T07:25:11.418949Z",
            "date_published": "2023-12-08T05:48:00Z",
            "start_time": "2024-02-05T11:30:00Z",
            "end_time": "2024-02-05T13: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": "Sosiaaliohjaaja tavattavissa kirjastossa"
            },
            "provider": null,
            "short_description": {
                "fi": "Töölön palvelukeskuksen sosiaaliohjaaja Hanna Paunonen opastaa senioreita palveluiden äärelle. Tervetuloa ilman ajanvarausta."
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Huolettaako sinua arjessa pärjääminen? Tuntuuko, että palveluviidakko on monimutkainen, etkä oikein tiedä mistä saisit apua silloin kun sitä tarvitset.</p><p>Tule juttelemaan Töölön palvelukeskuksen sosiaaliohjaaja <strong>Hanna Paunosen</strong> luokse Töölön kirjastoon. Etsitään yhdessä sinulle oikea palvelu tai arjen apu. Apua saa myös erilaisissa tukiin ja lomakkeisiin sekä hoitotahtoon ja edunvalvontavaltuutukseen liittyvissä asioissa.</p><p>Keväällä sosiaaliohjaaja on tavattavissa maanantaina 8.1., 5.2., 4.3., 8.4., 6.5. ja 3.6. 13.30–15.00 kirjaston 2. kerroksessa.<br><br> Tervetuloa!</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\">Töölön kirjasto</a> </p>"
            },
            "location_extra_info": {
                "fi": "Kirjastosali, 2. krs"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:275321/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:272966",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?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:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2826,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:45.424070Z",
                    "last_modified_time": "2024-02-06T13:38:08.412935Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{25B45A85-4D58-4D9B-8BFA-B5D9D51D7E10}/93794",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2826/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-08T15:24:43.963465Z",
            "last_modified_time": "2024-03-06T20:32:25.559453Z",
            "date_published": "2022-05-26T21:00:00Z",
            "start_time": "2024-05-07T13:00:00Z",
            "end_time": "2024-05-07T15: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": "Sokrates-kahvila Munkkiniemen kirjastossa"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan ja pohdiskelemaan Sokrates-kahvilaan!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sokrates-kahvilassa filosofoidaan elämänläheisesti kerran kuukaudessa. Vetäjänä toimii Severi Hämäri.</p><p> <strong>Tapaamiskerrat kevätkaudella: 9.1., 6.2., 5.3., 2.4., 7.5.</strong> </p><p>Keskusteluaihe 2.4. on \"Kateus\".</p><p>Tervetuloa pohdiskelemaan ja nauttimaan pöydän antimista!</p><p>Tämä projekti toteutetaan yhteistyössä <a href=\"https://www.kriittinenkorkeakoulu.fi/\">Kriittisen korkeakoulun kanssa.</a> </p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272966/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:272967",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?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:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2826,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:45.424070Z",
                    "last_modified_time": "2024-02-06T13:38:08.412935Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{25B45A85-4D58-4D9B-8BFA-B5D9D51D7E10}/93794",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2826/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-08T15:24:33.510327Z",
            "last_modified_time": "2024-03-06T20:31:11.298485Z",
            "date_published": "2022-05-26T21:00:00Z",
            "start_time": "2024-04-02T13:00:00Z",
            "end_time": "2024-04-02T15: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": "Sokrates-kahvila Munkkiniemen kirjastossa"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan ja pohdiskelemaan Sokrates-kahvilaan!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sokrates-kahvilassa filosofoidaan elämänläheisesti kerran kuukaudessa. Vetäjänä toimii Severi Hämäri.</p><p> <strong>Tapaamiskerrat kevätkaudella: 9.1., 6.2., 5.3., 2.4., 7.5.</strong> </p><p>Keskusteluaihe 2.4. on \"Kateus\".</p><p>Tervetuloa pohdiskelemaan ja nauttimaan pöydän antimista!</p><p>Tämä projekti toteutetaan yhteistyössä <a href=\"https://www.kriittinenkorkeakoulu.fi/\">Kriittisen korkeakoulun kanssa.</a> </p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272967/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282600",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11265,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-06T20:30:32.915812Z",
                    "last_modified_time": "2024-03-06T20:30:32.915839Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{46BD539D-C70A-4581-92B9-3042F79E270A}/110005",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-06T20:30:32.872702Z",
            "last_modified_time": "2024-03-06T20:30:33.020825Z",
            "date_published": "2024-03-06T18:48:00Z",
            "start_time": "2024-03-15T15:15:00Z",
            "end_time": "2024-03-15T16: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": "Samuelin poloneesi -kansanmusiikkitapahtuma"
            },
            "provider": null,
            "short_description": {
                "fi": "Samuelin Poloneesi on Suomen Kansanmusiikkiliiton vuoden suurin tapahtuma, joka saapuu myös Oodiin!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Samuelin Poloneesi jalkautuu Keskustakirjasto Oodin Maijansaliin <strong>perjantaina 15.3.2024 klo 17.15-18.15</strong> tuoden esiintymään mainion kattauksen pelimanneja ja kansantanssijoita.</p><p>Esiintymässä Espoon pelimannit - Esbo spelmanslag, Karjalan Nuorten Kansantanssiryhmä Tärsky säestäjinään Pyöreän Tornin Pelimannit, Inehmo sekä Kansantanssiryhmä Kärri.</p><p>Tilaisuuteen on vapaa pääsy. Tervetuloa!</p><p> <a href=\"https://kansanmusiikkiliitto.fi/tapahtumat/samuelin-poloneesi/\">Tapahtuman koko ohjelma on Suomen Kansanmusiikkiliiton verkkosivuilla.</a> </p>"
            },
            "location_extra_info": {
                "fi": "Maijansali, 1. kerros"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282600/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:272964",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?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:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2826,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:45.424070Z",
                    "last_modified_time": "2024-02-06T13:38:08.412935Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{25B45A85-4D58-4D9B-8BFA-B5D9D51D7E10}/93794",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2826/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-08T15:24:25.135812Z",
            "last_modified_time": "2024-03-06T20:29:59.974894Z",
            "date_published": "2022-05-26T21:00:00Z",
            "start_time": "2024-03-05T14:00:00Z",
            "end_time": "2024-03-05T16: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": "Sokrates-kahvila Munkkiniemen kirjastossa"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan ja pohdiskelemaan Sokrates-kahvilaan!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sokrates-kahvilassa filosofoidaan elämänläheisesti kerran kuukaudessa. Vetäjänä toimii Severi Hämäri.</p><p> <strong>Tapaamiskerrat kevätkaudella: 9.1., 6.2., 5.3., 2.4., 7.5.</strong> </p><p>Keskusteluaihe 2.4. on \"Kateus\".</p><p>Tervetuloa pohdiskelemaan ja nauttimaan pöydän antimista!</p><p>Tämä projekti toteutetaan yhteistyössä <a href=\"https://www.kriittinenkorkeakoulu.fi/\">Kriittisen korkeakoulun kanssa.</a> </p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272964/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:272968",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?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:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2826,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:45.424070Z",
                    "last_modified_time": "2024-02-06T13:38:08.412935Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{25B45A85-4D58-4D9B-8BFA-B5D9D51D7E10}/93794",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2826/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-08T15:24:16.032865Z",
            "last_modified_time": "2024-03-06T20:28:51.789363Z",
            "date_published": "2022-05-26T21:00:00Z",
            "start_time": "2024-02-06T14:00:00Z",
            "end_time": "2024-02-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": "Sokrates-kahvila Munkkiniemen kirjastossa"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa keskustelemaan ja pohdiskelemaan Sokrates-kahvilaan!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sokrates-kahvilassa filosofoidaan elämänläheisesti kerran kuukaudessa. Vetäjänä toimii Severi Hämäri.</p><p> <strong>Tapaamiskerrat kevätkaudella: 9.1., 6.2., 5.3., 2.4., 7.5.</strong> </p><p>Keskusteluaihe 2.4. on \"Kateus\".</p><p>Tervetuloa pohdiskelemaan ja nauttimaan pöydän antimista!</p><p>Tämä projekti toteutetaan yhteistyössä <a href=\"https://www.kriittinenkorkeakoulu.fi/\">Kriittisen korkeakoulun kanssa.</a> </p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272968/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:276173",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10840/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 4752,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-13T13:29:50.469719Z",
                    "last_modified_time": "2024-02-06T13:38:49.061017Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{788B1339-BA0B-4DE5-9953-43571A1AD5B8}/70118",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4752/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-28T17:26:35.509972Z",
            "last_modified_time": "2024-03-06T16:33:25.399899Z",
            "date_published": "2023-12-28T11:43:00Z",
            "start_time": "2024-05-22T10:00:00Z",
            "end_time": "2024-05-22T11: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": "Café Barock: Vanhan musiikin uudet toivot - lounaskonsertti Kirjatornissa"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa lounaskonserttiin Rikhardinkadun kirjaston Kirjatorniin!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Vanhan musiikin opiskelijat esiintyvät lounaskonserttisarjassa Rikhardinkadun kirjastossa. Konsertit alkavat klo 13 ja niihin on vapaa pääsy.</p><h3>Kevätkauden konsertit:</h3><ul> <li> <p>ke 24.1.</p> </li> <li> <p>ke 14.2.</p> </li> <li> <p>to 21.3. (eurooppalainen vanhan musiikin päivä)</p> </li> <li> <p>ke 24.4.</p> </li> <li> <p>ke 22.5.</p> </li> </ul></p><p>Ohjelma julkaistaan tapahtuman Facebook-sivulla muutamaa päivää ennen konserttia:<br><a href=\"https://www.facebook.com/events/1140638286902520/\">www.facebook.com/events/1140638286902520/</a></p><p> <em>Järjestää yhteistyössä:<br> Café Barock / Kulttuuriyhdistys Ensemble Nylandia<br> Rikhardinkadun kirjasto<br> Sibelius-Akatemian vanhan musiikin aineryhmä<br> Yrkeshögskolan Novia</em> </p>"
            },
            "location_extra_info": {
                "fi": "Kirjatorni, 2. krs"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276173/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:276171",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10840/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 4752,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-13T13:29:50.469719Z",
                    "last_modified_time": "2024-02-06T13:38:49.061017Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{788B1339-BA0B-4DE5-9953-43571A1AD5B8}/70118",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4752/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-28T17:26:09.742903Z",
            "last_modified_time": "2024-03-06T16:32:34.396219Z",
            "date_published": "2023-12-28T11:43:00Z",
            "start_time": "2024-04-24T10:00:00Z",
            "end_time": "2024-04-24T11: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": "Café Barock: Vanhan musiikin uudet toivot - lounaskonsertti Kirjatornissa"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa lounaskonserttiin Rikhardinkadun kirjaston Kirjatorniin!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Vanhan musiikin opiskelijat esiintyvät lounaskonserttisarjassa Rikhardinkadun kirjastossa. Konsertit alkavat klo 13 ja niihin on vapaa pääsy.</p><h3>Kevätkauden konsertit:</h3><ul> <li> <p>ke 24.1.</p> </li> <li> <p>ke 14.2.</p> </li> <li> <p>to 21.3. (eurooppalainen vanhan musiikin päivä)</p> </li> <li> <p>ke 24.4.</p> </li> <li> <p>ke 22.5.</p> </li> </ul></p><p>Ohjelma julkaistaan tapahtuman Facebook-sivulla muutamaa päivää ennen konserttia:<br><a href=\"https://www.facebook.com/events/1140638286902520/\">www.facebook.com/events/1140638286902520/</a></p><p> <em>Järjestää yhteistyössä:<br> Café Barock / Kulttuuriyhdistys Ensemble Nylandia<br> Rikhardinkadun kirjasto<br> Sibelius-Akatemian vanhan musiikin aineryhmä<br> Yrkeshögskolan Novia</em> </p>"
            },
            "location_extra_info": {
                "fi": "Kirjatorni, 2. krs"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276171/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:276175",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10840/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 4752,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-13T13:29:50.469719Z",
                    "last_modified_time": "2024-02-06T13:38:49.061017Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{788B1339-BA0B-4DE5-9953-43571A1AD5B8}/70118",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4752/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-28T17:25:33.041456Z",
            "last_modified_time": "2024-03-06T16:31:16.580252Z",
            "date_published": "2023-12-28T11:43:00Z",
            "start_time": "2024-03-21T11:00:00Z",
            "end_time": "2024-03-21T12: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": "Café Barock: Vanhan musiikin uudet toivot - lounaskonsertti Kirjatornissa"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa lounaskonserttiin Rikhardinkadun kirjaston Kirjatorniin!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Vanhan musiikin opiskelijat esiintyvät lounaskonserttisarjassa Rikhardinkadun kirjastossa. Konsertit alkavat klo 13 ja niihin on vapaa pääsy.</p><h3>Kevätkauden konsertit:</h3><ul> <li> <p>ke 24.1.</p> </li> <li> <p>ke 14.2.</p> </li> <li> <p>to 21.3. (eurooppalainen vanhan musiikin päivä)</p> </li> <li> <p>ke 24.4.</p> </li> <li> <p>ke 22.5.</p> </li> </ul></p><p>Ohjelma julkaistaan tapahtuman Facebook-sivulla muutamaa päivää ennen konserttia:<br><a href=\"https://www.facebook.com/events/1140638286902520/\">www.facebook.com/events/1140638286902520/</a></p><p> <em>Järjestää yhteistyössä:<br> Café Barock / Kulttuuriyhdistys Ensemble Nylandia<br> Rikhardinkadun kirjasto<br> Sibelius-Akatemian vanhan musiikin aineryhmä<br> Yrkeshögskolan Novia</em> </p>"
            },
            "location_extra_info": {
                "fi": "Kirjatorni, 2. krs"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276175/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:276174",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10840/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 4752,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-09-13T13:29:50.469719Z",
                    "last_modified_time": "2024-02-06T13:38:49.061017Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{788B1339-BA0B-4DE5-9953-43571A1AD5B8}/70118",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4752/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-28T12:24:45.723759Z",
            "last_modified_time": "2024-03-06T16:29:38.948222Z",
            "date_published": "2023-12-28T11:43:00Z",
            "start_time": "2024-02-14T11:00:00Z",
            "end_time": "2024-02-14T12: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": "Café Barock: Vanhan musiikin uudet toivot - lounaskonsertti Kirjatornissa"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa lounaskonserttiin Rikhardinkadun kirjaston Kirjatorniin!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Vanhan musiikin opiskelijat esiintyvät lounaskonserttisarjassa Rikhardinkadun kirjastossa. Konsertit alkavat klo 13 ja niihin on vapaa pääsy.</p><h3>Kevätkauden konsertit:</h3><ul> <li> <p>ke 24.1.</p> </li> <li> <p>ke 14.2.</p> </li> <li> <p>to 21.3. (eurooppalainen vanhan musiikin päivä)</p> </li> <li> <p>ke 24.4.</p> </li> <li> <p>ke 22.5.</p> </li> </ul></p><p>Ohjelma julkaistaan tapahtuman Facebook-sivulla muutamaa päivää ennen konserttia:<br><a href=\"https://www.facebook.com/events/1140638286902520/\">www.facebook.com/events/1140638286902520/</a></p><p> <em>Järjestää yhteistyössä:<br> Café Barock / Kulttuuriyhdistys Ensemble Nylandia<br> Rikhardinkadun kirjasto<br> Sibelius-Akatemian vanhan musiikin aineryhmä<br> Yrkeshögskolan Novia</em> </p>"
            },
            "location_extra_info": {
                "fi": "Kirjatorni, 2. krs"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276174/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7k64",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:61450/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1650/?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:p1810/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7a7i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2023-11-14T09:25:37.284531Z",
            "last_modified_time": "2024-03-06T16:06:46.092482Z",
            "date_published": null,
            "start_time": "2024-03-07T15:00:00Z",
            "end_time": "2024-03-07T17: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": "Hello Espoo -tapahtuma 07.03.2024 – tutustu Espooseen",
                "sv": "Evenemanget Hello Espoo 07.03.2024 – lär känna Esbo",
                "en": "Hello Espoo event 07.03.2024 – explore Espoo "
            },
            "provider": {
                "fi": "Espoon kaupunki",
                "sv": "Esbo stad",
                "en": "City of Espoo"
            },
            "short_description": {
                "fi": "Asutko Espoossa, oletko juuri muuttanut tai harkitsetko Espooseen muuttoa? Haluatko tietää lisää Espoon palveluista ja alueella olevasta toiminnasta",
                "sv": "Vill du få information om de tjänster och aktiviteter som tillhandahålls av Esbo stad och av organisationer genom en minimässa för tjänster? ",
                "en": "Do you want to know more about the services and activities provided by the City of Espoo and organisations in a mini-services fair? "
            },
            "info_url": {
                "fi": "https://link.webropol.com/ep/helloespoo732024participants",
                "sv": "https://link.webropol.com/ep/helloespoo732024participants",
                "en": "https://link.webropol.com/ep/helloespoo732024participants"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Asutko Espoossa, oletko juuri muuttanut tai harkitsetko Espooseen muuttoa? Haluatko tietää lisää Espoon palveluista ja alueella olevasta toiminnasta? Kiinnostaisiko tapahtuma, jossa on toimintaa koko perheelle? Tervetuloa Hello Espoo -tapahtumaan 07.03.2024 klo 17.00–19.00 Otaniemen lukiossa! </p><p>Ihastu rohkeasti Espooseen. Luvassa on puheenvuoroja, musiikkiesityksiä ja toimintaa koko perheelle. Pääset myös kysymään meiltä mitä tahansa nykyisestä tai tulevasta kotikaupungistasi Espoosta.</p><p>📅 Päivämäärä:     Torstai 07.03.2024 <br>🕘 Aika:                   17.00–19.00 <br>🏠 Paikka:               Otaniemen lukiossa, Tietotie 6, 02150 Espoo<br>Hinta: Ilmainen </p><p>📢 Ilmoittautuminen osallistujille: https://link.webropol.com/ep/helloespoo732024participants<br>📢 Rekisteröityminen palveluntarjoajille: https://link.webropol.com/ep/helloespoo732024serviceproviders</p><p>Tapahtuma on avoin kaikille, ja voit liittyä mukaan silloin, kun sinulle sopii. Ilmoittauduthan tapahtumaan 1.3.2024 mennessä, jotta voimme varmistaa sujuvan viestinnän ja järjestelyt. Arvomme ilmoittautuneiden joukosta yhden voittajan, joka saa erityisen lahjan. Voittaja julkistetaan Otaniemen lukiossa.</p><p>Tapahtuman kielinä ovat englanti, selkosuomi ja moni muu kieli. Pääpuheenvuoro ja esittelyt pidetään englanniksi.</p><p>Tapahtuman aikataulu</p><p>📢 17.00–17.30  Vieraiden saapuminen, kahvitarjoilu ja verkostoitumista</p><p>📢  17.30–17.50  Musiikkiesityksiä &amp; tervetulotoivotukset                 <br>✨Wenyi Zhang, piano esitys, Espoon Musiikkiopisto<br>✨ Barbara Mussafia, cello esitys, International School of Music, Finland<br> ✨ Reetta Vuopala, huilu &amp; Sanna Saarinen, harmonikka  E.Elgar: Salut d’amour, Musiikkiopisto Juvenalia</p><p>🎤 17.50–18.00  Pääpuheenvuoro \"Miksi ja miten opiskella suomea? Kielibuusti -alustan esittely\"<br>- Sanni Heinzmann, Kielibuustin sisältöprojektipäällikkö ja suomen kielenä lehtori Aalto-yliopistossa </p><p>📢 18.00–18.50 Palvelumessut – Espoon kaupungin, järjestöjen ja muiden yhteisöjen palvelut<br>➡️Harrastukset ja vapaa-ajan aktiviteetit - Kulttuuri- ja tapahtumapalvelut</p><p>✨ Visit Espoo<br>✨Kulttuuri Espoo &amp; Espoo Päivä<br>✨Harrastuspolku ja taiteen perusopetus<br>✨Espoon musiikkiopisto (EMO)<br>✨Juvenalia Musiikkiopisto<br>✨ Museo - KAMU Espoon kaupunginmuseo</p><p>➡️ Palvelut lapsille ja perheille, Koulutuspalvelut</p><p>✨Kirjastot<br>✨Äidinkielen oppiminen<br>✨Monikulttuuriset opetuspalvelut<br>✨Varhaiskasvatus<br>✨Peruskoulutus<br>✨Suomenkielinen toisen asteen koulutus ja nuorisopalvelut<br>✨Ruotsinkieliset sivistyspalvelut </p><p>➡️ Kaupunkisuunnittelu ja kaupunkiympäristö</p><p>✨Kaupunkitekniikka<br>✨Kaupunkisuunnittelukeskus </p><p>➡️Palvelut maahanmuuttajille ja työvoimapalvelut</p><p>✨Espoo Talent Hub - Urakehityspalvelut<br>✨ Business Espoo <br>✨ Korkeakoulutettujen maahanmuuttajien osaamiskeskus<br>✨Työllisyys Espoo<br>✨Ohjaamotalon toimintaa ja Etsivää nuorisotyötä. <br>✨Koto-Espoo integraatiopalvelut<br>✨Osallisuus Espoo<br>✨Espoo – Info<br>✨ Hello Espoo Info</p><p>➡️ Kansalaisjärjestöjen toimintaa</p><p>✨Luckanin integraatio<br>✨Herizon<br>✨MLL Uusimaa – Toimintaa perheille<br>✨Auroras-verkosto / SANL-yhdistys<br>✨Suomen Monikulttuurinen Urheiluliitto FIMU ry<br>✨Espoon Monikulttuurinen Lasten ja Nuorten ry<br>✨Tapiolan kuoro<br>✨Familia Ry<br>✨Pääkaupungin turvakotiyhdistys<br>✨Suomi-Syyria-ystävyysseura Ry<br>✨Kirkko Espoossa ja Olarissa<br>✨HyTe<br>✨Suomi-Intia-Seura ry<br>✨Siskot ja Simot ry<br>✨Iftin-seura ry<br>✨Jade</p><p>➡️ Yhteistyökumppanien toimintaa</p><p>✨Omnia, Espoon seudun koulutuskeskus<br>✨OP Pankki<br>✨Bieni – Hyvinvointivalmentaja<br>✨Kielibuusti <br>✨Projekti NordConnect koordinoi Saimaan Ammattiopisto Sampo<br>✨SIMHE - Helsingin yliopisto<br>✨International School of Music, Finland<br>✨International House Helsinki (IHH)<br>✨ Spouse program</p><p>📢 18.00–18.50  Kielikahvila &amp; Verkostoitumista </p><p> 📢 18.00–18.50 Työpajaa lapsille ja perheelle<br>✨ Hauskoja aktiviteetteja HNMKY:ltä<br>✨ Musiikkipaja Ujjainee Ghosin kanssa, International School of Music, Finland</p><p>📢 18.50–19.00   Loppusanat</p><p>Tapahtuman järjestämisestä vastaa Espoon kaupunki. Tapahtuma on osa maahanmuuttajien ohjaus- ja neuvontapalveluiden Talent Boost -ohjelmaa ja kehitystyötä. Tapahtumaa rahoittaa työ- ja elinkeinoministeriö.</p><p>Lasten valvonta on vanhempien vastuulla.</p><p>Lisätietoa tapahtumasta antaa:<br>Nga Phan, koordinaattori, Espoon kaupunki<br>nga.phan@espoo.fi</p><p>#TalentBoost</p>",
                "sv": "<p>Bor du i Esbo, har du precis flyttat hit eller funderar du på att flytta till Esbo? Vill du få information om de tjänster och aktiviteter som tillhandahålls av Esbo stad och av organisationer genom en minimässa för tjänster? Är du intresserad av musikframträdanden och aktiviteter för hela familjen?</p><p>Under evenemanget Hello Espoo visar vi varför Esbo är värt att älska. Där ingår också ett öppningsanförande, musikframträdanden, en musiklektion och aktiviteter för dig och din familj under evenemanget. Du kan också fråga oss vad du vill om din hemstad (eller framtida hemstad) – Esbo.</p><p>📅 Datum: Torsdag 07.03.2024<br>🕘 Tid: 17.00–19.00<br>🏠 Plats: Otnäs gymnasieskola, Tietotie 6, 02150 Esbo<br>Pris: Gratis</p><p>📢 Anmälan för deltagare: https://link.webropol.com/ep/helloespoo732024participants<br>📢 Registrering för tjänsteleverantörer: https://link.webropol.com/ep/helloespoo732024serviceproviders</p><p>Evenemanget är öppet för alla och du kan titta in när det passar dig. Registrera dig för evenemanget senast den 1.03.2024 för bästa möjliga kommunikation och förberedelse. Bland alla som registrerat sig lottar vi fram en vinnare som får en särskild gåva. Vinnaren presenteras på Otnäs gymnasieskola.</p><p>Evenemanget är på engelska, finska och många andra språk. Öppningsanförandet och presentationerna är på engelska.</p><p>Evenemangets tidtabell</p><p>📢\t17.00–17.30      Välkommen och nätverkande<br>                                   <br>📢 17.30–17.50       Musikframträdanden &amp; Välkommen<br>✨ Wenyi Zhang, pianoframträdande, Esbo Musikinstitut<br>✨  Barbara Mussafia, celloföreställning, International School of Music, Finland<br>✨Reetta Vuopala, flöjt &amp; Sanna Saarinen, dragspel, Music Institute Juvenalia</p><p>🎤\t17.50–18.00       Öppningsanförandet \"Varför och hur lär man sig finska? Introduktion till Kielibuusti informationsplattform\"- Sanni Heinzmann, innehållsprojektledare på Kielibuusti och föreläsare i finska som främmande språk vid Aalto-universitetet</p><p>📢\t18.00-18.50       Minimässa om tjänster och presentationer – tjänster som erbjuds av Esbo stad, icke-statliga organisationer och  andra organisationer<br>➡️\tTjänster för barn och familjer, utbildning <br>➡️\tHobbyer och fritidsaktiviteter – kultur- och evenemangstjänster <br>➡️      Stadtplanung und städtische Umwelt<br>➡️\tTjänster för invandrare och sysselsättningstjänster <br>➡️\tIcke-statliga organisationers verksamhet </p><p>📢\t18.00–18.50  Musiklektion och fest med nätverkande <br>✨\t   Roliga aktiviteter från HNMKY<br> ✨\t   Musikworkshop med Ujjainee Ghos, International School of Music, Finland</p><p>📢 18.50-19.00  Vinnare av anmälan och Slutord</p><p>Evenemanget ingår i det nationella Talent Boost-programmet och i arbetet för utveckling av handlednings- och rådgivningstjänster för invandrare. Evenemanget finansieras av arbets- och näringsministeriet.</p><p>Om du har frågor, tveka inte att ta kontakt: Nga Phan, nga.phan@espoo.fi, koordinator vid Esbo stad</p><p><br>#TalentBoost<br></p>",
                "en": "<p>Calling all Espoo residents, newcomers, and future adventurers! Do you want to know more about the services and activities provided by the City of Espoo and organisations in the area? Do you also want to enjoy music performances, keynote about learning Finnish and activities for the whole family?</p><p>Let us show you reasons to fall in love with Espoo at the Hello Espoo event. You can meet and discuss with different units of the city of Espoo and organizations about their activities from living and working in Espoo to education, well-being and leisure. You can ask us about your hometown (or future hometown), Espoo.</p><p>📅 Date: Thursday 07.03.2024<br>🕘 Time: 17.00-19.00<br>🏠 Venue:  Otaniemi upper secondary school, Tietotie 6, 02150, Espoo<br>• Cost: free of charge.</p><p>📢 Registration for Participants: https://link.webropol.com/ep/helloespoo732024participants </p><p>📢 Registration for Service Providers: https://link.webropol.com/ep/helloespoo732024serviceproviders</p><p>The event is open for everyone, and you can join the event whenever it suits you. Please register to the event for the best communication &amp; preparation by 1.3.2024 through this registration link. We will pick one winner from all registrations for a special gift. The winner will be announced at Otaniemi upper secondary school.</p><p>The event is organized in English, in easy Finnish and many other languages. The keynote is organised in English.</p><p>Event agenda</p><p>📢 17.00–17.30       Welcome guests, coffee &amp; networking activities, ” Hello Neighbors”, Photobooth<br>                                Activities for kids - crafts, playground</p><p>🎤 17.30–17.50       Warm up music performances &amp; Welcome words <br> ✨ Wenyi Zhang, piano performance, The Espoo Music Institute<br>✨ Barbara Mussafia, cello performance, International School of Music, Finland<br>✨Reetta Vuopala, flute &amp; Sanna Saarinen, accordion, Music Institute Juvenalia</p><p>🎤 17.50–18.00       Keynote \"Why and how to learn Finnish? Introduction to Kielibuusti information platform\"<br>- Sanni Heinzmann, Content Project Manager at Kielibuusti &amp; lecturer of Finnish as a Foreign Language at Aalto University</p><p><br>📢 18.00–18.50       Services fair – Services from Espoo city, NGOs and  other organizations</p><p>➡️Hobbies and free time activities - Cultural and event services</p><p>✨ Visit Espoo</p><p>✨Culture Espoo &amp; Espoo Day</p><p>✨Hobby Path and Art Basic Education</p><p>✨The Espoo Music Institute (EMO)</p><p>✨The Juvenalia Music Institute </p><p>✨Museum - KAMU Espoo City Museum</p><p>➡️  Services for children and families, Educational services</p><p>✨Libraries</p><p>✨Mother-tounge learning</p><p>✨Multicultural teaching services</p><p>✨Early childhood education</p><p>✨Basic education</p><p>✨Finnish-language secondary education and youth services</p><p>✨Swedish Education and Cultural Services </p><p>➡️  City Planning and The urban environment</p><p>✨The Public Works Department </p><p>✨City Planning and the urban environment</p><p>➡️Services for immigrants and Employment services</p><p>✨Espoo Talent Hub - Career Development Services</p><p>✨Business Espoo &amp; EnterpriseEspoo</p><p>✨Competence Centre for Highly Educated Immigrant</p><p>✨Employment Espoo</p><p>✨The Ohjaamotalo operation and Job search for youths|</p><p>✨Koto-Espoo integration services</p><p>✨Citizen Participation</p><p>✨Espoo –Info</p><p>✨Hello Espoo Info</p><p>➡️ NGOs  activities</p><p>✨Luckan Integration</p><p>✨Herizon</p><p>✨MLL Uusimaa – Activities for Families</p><p>✨Auroras network / SANL association</p><p>✨Finnish Multicultural Sports Association FIMU ry</p><p>✨Espoo Multicultural Children and Youth Association</p><p>✨Tapiola choir</p><p>✨Familia association</p><p>✨Pääkaupunki shelter home association</p><p>✨Finland-Syria Friendship Society Ry</p><p>✨Churches in Espoo &amp; Olari</p><p>✨HyTe</p><p>✨Finland-India-Seura ry</p><p>✨Siskot ja Simot ry</p><p>✨Iftin-seura ry<br>✨Jade</p><p>➡️  Partners activities</p><p>✨Omnia, the Joint Authority of Education in the Espoo region</p><p>✨OP Bank</p><p>✨Bieni – Well-being coach</p><p>✨Kielibuusti - Language boost</p><p>✨Project NordConnect coordinated by Saimaan Ammattiopisto Sampo</p><p>✨SIMHE - University of Helsinki</p><p>✨International School of Music, Finland</p><p>✨International House Helsinki (IHH)</p><p>✨Spouse Program</p><p>📢 18.00–18.50       Language coffee &amp; Networking <br> <br>📢 18.00–18.50       Workshops for kids and families<br>                                   ✨\t Fun activities from HNMKY<br>                                   ✨\t Music workshop with Ujjainee Ghos, International School of Music, Finland </p><p>📢 18.50–19.00      Feedback and closing words</p><p>The event is organized by the City of Espoo. The event is a part of the national Talent Boost -program and development work of guidance and counselling services for immigrants. The event is funded by the Ministry of Employment and Economy.</p><p>Please note that parents are responsible for caring for their children.</p><p>Please don't hesitate to be in contact if you have any questions: nga.phan@espoo.fi, Coordinator of City of Espoo.</p><p><br>#TalentBoost</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7k64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282365",
            "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: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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 11060,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-02-27T10:27:36.162515Z",
                    "last_modified_time": "2024-02-27T10:27:36.162531Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{F0BD25F6-A3BC-44DB-BE98-6F641FEFA318}/109827",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11060/?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-27T10:27:35.146745Z",
            "last_modified_time": "2024-03-06T15:26:38.977661Z",
            "date_published": "2024-02-27T09:20:00Z",
            "start_time": "2024-03-16T11:00:00Z",
            "end_time": "2024-03-16T14: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": "Bravo!-festivaalin avajaiset",
                "en": "Grand opening of the Bravo!-festival"
            },
            "provider": null,
            "short_description": {
                "fi": "Avajaisissa Bravo!-festivaalin kansainvälinen esiintyjä Artefactos Bascos tarjoaa maistiaisia esityksestään B A T U, lisäksi nähdään lasten oma Tempo-orkesteri Vantaalta, akrobaattikaksikko Inni&Sasu, tunnelmaa nostattavia avajaispuheita, Pensseliboogie-työpaja ja muuta hauskaa ohjelmaa!",
                "en": "Bravo! Performing Arts Festival for young audiences takes over the culture centres in the Helsinki metropolitan area from the 15th to the 24th of March in 2024 with its international high-quality performances for children, young people and families!"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Bravo! Kansainvälinen esittävän taiteen festivaali lapsille ja nuorille valtaa pääkaupunkiseudun 15.-24.3.2024!</p><p>FESTIVAALIN AVAJAISET<br> @ Keskustakirjasto Oodi<br> la 16.3. klo 13-16</p><p>Lämpimästi tervetuloa kaikki isot ja pienet!</p><p>Avajaisissa Bravo!-festivaalin kansainvälinen esiintyjä Artefactos Bascos tarjoaa maistiaisia esityksestään B A T U, lisäksi nähdään lasten oma Tempo-orkesteri Vantaalta, akrobaattikaksikko Inni&amp;Sasu, tunnelmaa nostattavia avajaispuheita, Pensseliboogie-työpaja ja muuta hauskaa ohjelmaa!</p><p>Alle 2-vuotiaille suunnattu Opus Companyn ja Hands some Feet -ryhmän Babysphere-teos on koettavissa nonstop-elämyksenä Maijansalissa Oodin 1. kerroksessa klo 13.30-15.</p><p>Muu ohjelma kaiken ikäisille Oodin 3. kerroksen lasten alueella klo 13-16.</p><p>Tapahtuman juontaa ilmiömäisen ihana Ringa-klovni (Inga Björn).</p><p>Avajaisiin on vapaa pääsy.</p><p> <br> Avajaisten tarkempi aikataulu julkaistaan lähempänä tapahtumaa.</p><p>Lue lisää Bravo!-festivaalista <a href=\"https://l.facebook.com/l.php?u=http%3A%2F%2Fwww.bravofestivaali.fi%2F%3Ffbclid%3DIwAR2zPuGE96OQTQjQddIryJ1T9dlngyM7pMTBAhANfuOnsoOD6GtbxZxje78&amp;h=AT1TOm1q9EkU9JB4iRKk8mKPHN11UquSMNnNoJR8i5t-7SzoCUe065cdrjMI2hedqTh5lWpDhHncYksMT_7krI2ewFJiqpzoGvADVVcVTVmVsWbYInyVWBaG4mq-4YazN4r7&amp;__tn__=q&amp;c%5b0%5d=AT0mItYCOhR-6A5U4cXH87jhFa49AW_M0OXzH_v4Gq62F7gBSDKgpuUMFvxTVD3nZbPDEZV6KpesowCwtUm0QVK-A8jOuwA3e9TDZk8YlMYvzoZFxG95UBfJ4tz4lY7CFbe25n2a1zDrUUVG3OjlF7XHvuIy\">www.bravofestivaali.fi</a></p>",
                "en": "<p>Bravo! Performing Arts Festival for young audiences takes over the culture centres in the Helsinki metropolitan area from the 15th to the 24th of March in 2024 with its international high-quality performances for children, young people and families!</p><p>Welcome to the grand opening of the festival!</p><p>Central Library Oodi<br> Saturday 16th March<br> Between 1pm and 4 pm</p><p>Workshops, performances and other programme for the whole family. Schedule of the opening available soon!</p><p>More information about the festival<br><a href=\"http://www.bravofestivaali.fi/?fbclid=IwAR0qzhHTPoMwkg6gzFsbJaV6iRpFSdt5f-c6EajfvgAgYv0J0bkc02Ataqw\">www.bravofestivaali.fi</a></p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282365/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}