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

{
    "meta": {
        "count": 19239,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=617",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=615"
    },
    "data": [
        {
            "id": "helmet:271710",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6315,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-29T12:21:19.742145Z",
                    "last_modified_time": "2023-11-29T12:21:19.742165Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{3E800185-AFB0-4840-9337-C7BF2B41452B}/107780",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6315/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-29T12:21:19.717507Z",
            "last_modified_time": "2023-12-01T09:21:35.371104Z",
            "date_published": "2023-11-28T22:00:00Z",
            "start_time": "2023-12-11T13:00:00Z",
            "end_time": "2023-12-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,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa kaikki askartelemaan yhdessä joulukortteja. Askartelutarvikkeet löytyvät kirjastosta. </p><p>jouluespoo</p>"
            },
            "short_description": {
                "fi": "Tervetuloa kaikki askartelemaan yhdessä joulukortteja. Askartelutarvikkeet löytyvät kirjastosta."
            },
            "name": {
                "fi": "Kaikille avoin joulukorttipaja"
            },
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271710/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271370",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2582,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:56.013746Z",
                    "last_modified_time": "2024-02-06T13:38:19.975977Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T15:21:41.092110Z",
            "last_modified_time": "2023-12-01T09:21:33.047346Z",
            "date_published": "2023-06-09T07:01:00Z",
            "start_time": "2023-12-08T15:00:00Z",
            "end_time": "2023-12-08T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><ul> <li>1.12.2023</li> <li>5.1.2024</li> <li>2.2.2024</li> <li>1.3.2024</li> <li>5.4.2024</li> <li>3.5.2024</li> <li>7.6.2024</li> </ul>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille."
            },
            "name": {
                "fi": "Lasten perjantaileffa"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271370/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270726",
            "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: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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6339,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-30T11:21:07.629907Z",
                    "last_modified_time": "2023-11-30T11:21:07.629930Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5668BF0B-E528-47FB-94A9-AFE64E63E658}/107501",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-15T11:22:17.017529Z",
            "last_modified_time": "2023-12-01T09:21:26.459418Z",
            "date_published": "2023-11-15T09:03:00Z",
            "start_time": "2023-12-05T12:00:00Z",
            "end_time": "2023-12-05T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Oodi on palvellut kaupunkilaisia Kansalaistorin reunalla jo huimat 5 vuotta. Juhlimme syntymäpäiväsankaria tiistaina 5.12. monipuolisen ohjelman kera klo 14.00-18.30.</p><p>Tanssia, kakkua ja kaupunkiverstaaseen tutustumista:</p><p>Klo 14.00 EU@Oodin kakkutarjoilu Oodin 1. kerroksen aulassa</p><p>Klo 15.00 ja klo 16.30 Vallilan Tango tanssittaa juhlaväkeä Maijansalissa 1. kerroksessa</p><p>Klo 15.30-18.00 Ohjelmaa Oodin kaupunkiverstaalla: Tule testaamaan uv-tulostinta ja suurkuvatulostinta. Pääset myös kurkistamaan Oodin äänitysstudioon ja kysymään asiantuntijoiltamme studioiden käytöstä.</p><p>klo 18-18.30 Villimarjat-kuoron juhlakonsertti. Kuoroa johtaa Pasi Eskelinen.</p><p>Kirjallisuutta Saarikoskimatolla:</p><p>Klo 15.30 Helsingin kaupungin pormestari Juhana Vartiainen kertoo lempikirjoistaan. Haastattelijana Oodin johtaja Anna-Maria Soininvaara.</p><p>Klo 16.00 Sosiaalisen median vaikuttaja Nelli Orell sekä POC-lukupiirin Aracelis Correa ja Téri Zambrano keskustelemassa Oodin kokoamistaan kirjanäyttelyistä sekä heitä sykähdyttäneistä kirjoista.</p><p>Klo 16.30 Kirjailija Philip Teir saapuu kertomaan hänelle merkityksellisistä kirjoista.</p><p>Klo 17.00 Piispa emerita Irja Askola kertoo lempikirjoistaan Oodin Saarikoskimatolla. Haastattelijana Oodin johtaja Anna-Maria Soininvaara.</p><p>Philip Teirin, Nelli Orelin sekä POC-lukupiiriin kokoamat kirjanäyttelyt ovat esillä Oodissa 27.11.–10.12. Tervetuloa lainaamaan!</p><p>Lapsille ja perheille:</p><p>Leikkipuisto Lorun ohjelmaa perheen pienimmille päivän aikana. (aikataulu tarkentuu)</p><p>Klo 17.00 ja klo 18.00 Klovni Lilli Pii hauskuttaa lastenalueella perheitä</p><p>Syntymäpäiväjuhlat ovat kaikille avoimet. Tervetuloa!</p>",
                "sv": "<p>Ode har tjänat stadsborna vid kanten av Medborgartorget i hisnande 5 år. Vi firar födelsedagsbarnet tisdagen 5.12 med ett mångsidigt program kl. 14.00-18.30.</p><h2>Dans, tårta och möjlighet att bekanta sig med cityverkstaden:</h2><p>Kl. 14.00 EU@Ode bjuder på tårta i aulan på första våningen.</p><p>Kl. 15.00 och kl. 16.30 Vallilan Tango bjuder på dansmusik för festfolket i Maijasalen på första våningen.</p><p>Kl. 15.30-18.00 Program på Odes cityverkstad: Kom och testa uv-skrivaren och storbildsskrivaren. Du kan också kika in i inspelningsstudion och har möjlighet att fråga våra experter om användningen av studiorna.</p><p>Kl. 18-18.30 Villimarjat-körens festkonsert. Dirigent är <strong>Pasi Eskelinen</strong>.</p><h2>Litteratur på Saarikoskimattan:</h2><p>Kl. 15.30 Helsingfors stads borgmästare <strong>Juhana Vartiainen</strong> berättar om sina favoritböcker. Odes bibliotekschef <strong>Anna-Maria Soininvaara</strong> intervjuar.</p><p>Kl. 16.00 Influencern <strong>Nelli Orell</strong> diskuterar med POC-bokcirkelns <strong>Aracelis Correa</strong> och <strong>Téri Zambrano</strong> om bokutställningarna de ordnat på Ode samt om böcker de upplevt som fängslande.</p><p>Kl. 16.30 Författaren <strong>Philip Teir</strong> kommer till Ode för att berätta om böcker som betytt mycket för honom.</p><p>Kl. 17.00 Biskop emerita <strong>Irja Askola</strong> berättar om sina favoritböcker på Saarikoskimattan. Odes bibliotekschef Anna-Maria Soininvaara intervjuar.</p><p>Bokutställningarna som Philip Teir, Nelli Orell och POC-bokcirkeln kuraterat visas på Ode 27.11-10.12. Välkommen att låna!</p><h2>För barn och familjer:</h2><p>Under dagen ordnar Lekparken Loru program för familjens minsta.</p><p>Kl. 17.00 och kl. 18.00 roar clownen<strong> Lilli Pii</strong> barnfamiljer på barnavdelningen.</p><p>Födelsedagsfesten är öppen för alla. Välkommen!</p>",
                "en": "<p>Central Library Oodi is turning 5 years old!</p><p>We will be celebrating on Tuesday 5.12. and everyone is invited.</p><p>There will be at least afternoon dance, birthday cake and a circus performance.</p><p>Welcome! </p>"
            },
            "short_description": {
                "fi": "Oodi on palvellut kaupunkilaisia Kansalaistorin reunalla jo huimat 5 vuotta. Juhlimme syntymäpäiväsankaria tiistaina 5.12. monipuolisen ohjelman kera.",
                "sv": "Ode har redan i fem års tid betjänat stadsborna vid utkanten av Medborgarplatsen. Vi firar födelsedagshjälten på tisdagen den 5.12 med ett mångsidigt program.",
                "en": "Central Library Oodi is turning 5 years. Everyone is invited to celebrate!"
            },
            "name": {
                "fi": "Oodi täyttää 5 vuotta!",
                "sv": "Centrumbiblioteket Ode fyller 5 år!",
                "en": "Oodi is turning 5 years old!"
            },
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270726/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271361",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2582,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:56.013746Z",
                    "last_modified_time": "2024-02-06T13:38:19.975977Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T15:21:28.977841Z",
            "last_modified_time": "2023-12-01T09:21:20.259462Z",
            "date_published": "2023-06-09T07:01:00Z",
            "start_time": "2023-12-01T15:00:00Z",
            "end_time": "2023-12-01T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><ul> <li>1.12.2023</li> <li>5.1.2024</li> <li>2.2.2024</li> <li>1.3.2024</li> <li>5.4.2024</li> <li>3.5.2024</li> <li>7.6.2024</li> </ul>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille."
            },
            "name": {
                "fi": "Lasten perjantaileffa"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271361/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271372",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2582,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:26:56.013746Z",
                    "last_modified_time": "2024-02-06T13:38:19.975977Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T15:21:12.061485Z",
            "last_modified_time": "2023-12-01T09:21:04.108917Z",
            "date_published": "2023-06-09T07:01:00Z",
            "start_time": "2023-11-24T15:00:00Z",
            "end_time": "2023-11-24T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><ul> <li>1.12.2023</li> <li>5.1.2024</li> <li>2.2.2024</li> <li>1.3.2024</li> <li>5.4.2024</li> <li>3.5.2024</li> <li>7.6.2024</li> </ul>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille."
            },
            "name": {
                "fi": "Lasten perjantaileffa"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Nuortentila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271372/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262076",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8350/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2721,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:30:29.388917Z",
                    "last_modified_time": "2024-02-06T13:38:57.868460Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{6CDD1465-4D0E-4D6C-9B83-0697FFBC02DE}/74710",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2721/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T16:15:38.285784Z",
            "last_modified_time": "2023-12-01T08:22:21.430763Z",
            "date_published": "2023-06-21T16:06:00Z",
            "start_time": "2023-12-21T16:00:00Z",
            "end_time": "2023-12-21T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Dekkarilukupiiri kokoontuu kerran kuukaudessa Maunulan kirjastossa. Jos olet intohimoinen dekkareiden lukija, tervetuloa mukaan!</p><p>Syksyn tapaamiskerrat:</p><p>To 24.8. Mick Herron: Luupäät<br> To 21.9. Tove Alsterdal: Juurakko<br> To 26.10. Fredrik Backman: Ahdistunutta porukkaa<br> To 23.11. Cara Hunter: Jäljettömiin<br> To 21.12. William Burroughs ja Jack Kerouac: Ja virtahevot kiehuivat altaissaan</p><p>Seuraavaksi tapaamiskerraksi luettavan kirjan voi lainata Maunulan kirjaston asiakaspalvelupisteestä kuukautta ennen lukupiiriä. Lukupiiriin mahtuu 12 osallistujaa.</p><p>Lisätiedot ja ilmoittautumiset: antti.lehtovirta(at)hel.fi.</p><p>Lämpimästi tervetuloa!</p>"
            },
            "short_description": {
                "fi": "Dekkarilukupiirissä luetaan jännityskirjallisuutta ja keskustellaan siitä kahvikupin äärellä."
            },
            "name": {
                "fi": "Maunulan dekkarilukupiiri"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Akvaario-monitoimitila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262076/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270317",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10655/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10794/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5849,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-03T13:23:37.086426Z",
                    "last_modified_time": "2023-11-03T13:23:37.086441Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{C015B0ED-9AC9-4139-B44A-EF1A950B12AD}/107252",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5849/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-03T13:23:37.067746Z",
            "last_modified_time": "2023-12-01T08:22:14.564855Z",
            "date_published": "2023-11-03T10:53:00Z",
            "start_time": "2023-12-16T11:00:00Z",
            "end_time": "2023-12-16T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa teippityöpajaan taiteilemaan kuusenkoristeita! Pajan vetää lastenkirjailija Vuokko Hurme, ja se sopii kaikille yli 3-vuotiaille.</p><p>Paja pidetään ryhmätila Otsossa kirjaston ensimmäisessä kerroksessa, ja sinne mahtuu mukaan 50 ensimmäistä.</p><p>Vapaa pääsy!</p>"
            },
            "short_description": {
                "fi": "Tervetuloa teippityöpajaan taiteilemaan kuusenkoristeita! Pajan vetää lastenkirjailija Vuokko Hurme."
            },
            "name": {
                "fi": "Jouluinen teippityöpaja"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Ryhmätila Otso, 1. krs"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270317/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:262078",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8350/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2721,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:30:29.388917Z",
                    "last_modified_time": "2024-02-06T13:38:57.868460Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{6CDD1465-4D0E-4D6C-9B83-0697FFBC02DE}/74710",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2721/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T16:04:06.642760Z",
            "last_modified_time": "2023-12-01T08:21:25.303721Z",
            "date_published": "2023-06-21T16:06:00Z",
            "start_time": "2023-11-23T16:00:00Z",
            "end_time": "2023-11-23T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Dekkarilukupiiri kokoontuu kerran kuukaudessa Maunulan kirjastossa. Jos olet intohimoinen dekkareiden lukija, tervetuloa mukaan!</p><p>Syksyn tapaamiskerrat:</p><p>To 24.8. Mick Herron: Luupäät<br> To 21.9. Tove Alsterdal: Juurakko<br> To 26.10. Fredrik Backman: Ahdistunutta porukkaa<br> To 23.11. Cara Hunter: Jäljettömiin<br> To 21.12. William Burroughs ja Jack Kerouac: Ja virtahevot kiehuivat altaissaan</p><p>Seuraavaksi tapaamiskerraksi luettavan kirjan voi lainata Maunulan kirjaston asiakaspalvelupisteestä kuukautta ennen lukupiiriä. Lukupiiriin mahtuu 12 osallistujaa.</p><p>Lisätiedot ja ilmoittautumiset: antti.lehtovirta(at)hel.fi.</p><p>Lämpimästi tervetuloa!</p>"
            },
            "short_description": {
                "fi": "Dekkarilukupiirissä luetaan jännityskirjallisuutta ja keskustellaan siitä kahvikupin äärellä."
            },
            "name": {
                "fi": "Maunulan dekkarilukupiiri"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Akvaario-monitoimitila"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262078/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270675",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10791/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5987,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-13T14:24:34.017390Z",
                    "last_modified_time": "2024-02-06T13:41:30.839509Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{866FA3B7-7EC2-4832-B91B-1F29FA999D20}/106052",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5987/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-11-13T14:24:33.991674Z",
            "last_modified_time": "2023-12-01T07:21:45.148393Z",
            "date_published": "2023-11-13T12:38:00Z",
            "start_time": "2023-12-07T11:00:00Z",
            "end_time": "2023-12-07T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Etsitkö töitä? Haluatko perustaa yrityksen?</p><p>Startup Refugees on täällä sinua varten! Tuemme pakolaisia,<br> turvapaikanhakijoita ja maahanmuuttajia löytämään töitä ja<br> perustamaan yrityksen Suomessa. Palvelumme ovat vapaaehtoisia ja ilmaisia.</p><p>Tule tekemään kanssamme CV ja profiili työnhakua varten, etsimme sinulle sopivia työmahdollisuuksia! Nähdään to 7.12.2023 13-16:00 Itäkeskuksen kirjaston Kanerva-tilassa (Turunlinnantie 1, 00900 Helsinki).</p><p>OTA YHTEYTTÄ:<br> Mustafa<br> mustafa.aal-sahek@startuprefugees.com<br> +358 41 314 4654 (arabia, englanti &amp; suomi)</p>",
                "en": "<p>Looking for a job? Want to start a business?</p><p>Startup Refugees is here for you! We support refugees, asylum seekers and immigrants to find work and start their own businesses in Finland. All our services are free of charge.</p><p>Come create a CV and a work profile with us and we can find you<br> suitable job opportunities. See you on Thursday 7.12. 2023 13-16.00 at the Itäkeskus library Kanerva Hall (Turunlinnantie 1, 00900 Helsinki).</p><p>CONTACT US FOR MORE INFORMATION:</p><p>Mustafa: mustafa.aal-sahek@startuprefugees.com<br> +358 41 314 4654 (Arabic, English &amp; Finnish)</p><p>Oleksandr: oleksandr@startuprefugees.com<br> +358 44 240 8261 (Ukrainian, English &amp; Russian)</p><p>Sara: sara@startuprefugees.com<br> +358 50 303 6788 (Dari/Farsi)</p>"
            },
            "short_description": {
                "fi": "Etsitkö töitä? Haluatko perustaa yrityksen? Startup Refugees on täällä sinua varten!",
                "en": "Looking for a job? Want to start a business? Startup Refugees is here for you!"
            },
            "name": {
                "fi": "Startup Refugeesin Match-klinikka",
                "en": "Match Clinic by Startup Refugees"
            },
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270675/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271779",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6392,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-30T16:21:41.486501Z",
                    "last_modified_time": "2023-11-30T16:21:41.486527Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{F0B914E6-A367-4EE6-87A1-F619F867DF40}/107823",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6392/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-30T16:21:41.451894Z",
            "last_modified_time": "2023-11-30T16:21:41.619416Z",
            "date_published": "2023-11-30T14:40:00Z",
            "start_time": "2023-12-01T14:00:00Z",
            "end_time": "2023-12-17T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p> <strong>Tervetuloa ihan pöhköön satunäyttelyyn kirjaston lastenosasto Vintille </strong>(3. krs)<strong>!</strong><br><br> Näyttelyssä on kuvituksia ja osallistavia tehtäviä <strong>Petra Raivosen</strong> lastenkirjoista Ihan pöhkö satukirja sekä Satukielen ihan pöhkö katoaminen. Tule etsimään hassuja yksityiskohtia ja Pöhkömaan piilotettuja otuksia.</p><p>Kirjat Helmet-kirjastoissa:</p><p> <strong>Ihan pöhkö satukirja</strong>: <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2446999\">https://haku.helmet.fi/iii/encore/record/C__Rb2446999</a><br><strong>Satukielen ihan pöhkö katoaminen</strong>: <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2543915\">https://haku.helmet.fi/iii/encore/record/C__Rb2543915</a> </p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 857 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p>"
            },
            "short_description": {
                "fi": "Tule etsimään hassuja yksityiskohtia ja Pöhkömaan piilotettuja otuksia. Lue lisää..."
            },
            "name": {
                "fi": "Näyttely: Ihan pöhkö"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Vintti, 3. krs"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:270406",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?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:p1808/?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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5893,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-07T15:22:25.897062Z",
                    "last_modified_time": "2023-11-07T15:22:25.897079Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{69B0D683-BE37-4D25-B168-A05CC2BFA9CF}/107305",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5893/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-07T15:22:25.883488Z",
            "last_modified_time": "2023-11-30T16:21:12.245126Z",
            "date_published": "2023-11-07T08:18:00Z",
            "start_time": "2023-12-02T12:00:00Z",
            "end_time": "2023-12-02T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tapahtuma on valitettavasti jouduttu perumaan sairastapauksen vuoksi.</p>"
            },
            "short_description": {
                "fi": "Railakasta lastenmusiikkia kirjastossa - tule kuuntelemaan!"
            },
            "name": {
                "fi": "TAPAHTUMA PERUTTU: Lastenmusiikkiyhtye Leimu"
            },
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270406/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60632",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4625,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:27:53.629902Z",
                    "last_modified_time": "2023-09-07T14:27:53.629925Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730659.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:27:53.317745Z",
            "last_modified_time": "2023-11-30T15:13:31.841570Z",
            "date_published": null,
            "start_time": "2023-12-06T11:30:00Z",
            "end_time": "2023-12-06T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Meistä on moneksi! Tule juhlistamaan Suomen itsenäisyyttä ja samalla meitä kaikkia yhteiseen juhlaan. Juhla-aterian ääressä nautitaan juhlaohjelmasta ja yhdessäolosta.</p><p>Voit tulla yksin tai ottaa mukaan kaverin, naapurin, tuttavan, serkun, perheen tai suvun – tilaisuus on maksuton ja kaikille avoin.</p><p>Lämminhenkinen tapahtuma järjestetään Kanneltalossa jo viidettä kertaa. Itsenäisyyspäivän ohjelman tuottaa Kanneltalo ja Pand – taiteilijat rauhan puolesta. Mukana tapahtumassa ovat myös D-asema Kannelmäki, Lännen aikuissosiaalityö, Kannelmäen kirjasto ja Kannelmäen nuorisotalo sekä Kaarela-Seura.</p><p><b><i>Ohjelma:</i><br>13.30–16.30 | Kaikille avoin juhlabuffet</b><br>• KARJALANPAISTI<br>sika, nauta, hirvi, porkkana, sipuli – m, g<br>• TOFUINEN PATA<br>tofu, porkkana, sipuli, tomaatti – v, g<br>• Keitinperunat – m, g <br>• Vihersalaatti – m,g<br>• Mustikkapiirakka – L<br>• Kahvi tai tee</p><p>Tarjoilun toteuttaa Pöytäliina Catering.</p><p><b>Klo 13.30–17 | Klovni Martan juhlavastaanottopiste</b><br>Klovni Martta (Taina Mäki-Iso) pistää pystyyn jälleen oman juhlavastaanottopisteensä itsenäisyyspäivän kunniaksi. Tällä kertaa hän lupaa käyttäytyä hyvin asiallisen pellemäisesti. Luvassa on myös sekä itsenäisyys- että itsepäisyysvinkkejä kaikille halukkaille. Juhlavastaanottopisteeseen ovat kaikki ikäluokat tervetulleita ja siellä voi piipahtaa yksin, kaverin tai perheen kanssa. Juhlaväen seassa Martta saattaa tarkistaa juhlamielesi. <br> <br><b>Klo 14–15 | Varjoteatteriesitys: YMMYRKÄISENÄ! ja varjoteatterityöpaja</b><br>Koko perheelle suunnattu esitys sukeltaa syvälle varjoteatterin maailmaan. Esityksen aikana päästään tutustumaan Kummalan perheeseen, joka rakastaa sirkusta ja yhdessä tarinointia. Esityksen jälkeen päästään koko perheen voimin kokeilemaan varjonukkien tekemistä ja elävöittämistä. Ohjaajana Elviira Davidow. Kanneltalon auditoriossa.</p><p><b>Klo 16.30–17.30 |Konserttisalin juhlaohjelma</b><br>Kaarela-seuran puheenjohtaja Jauri Varvikon juhlapuhe, vuoden kaarelalaisen palkitseminen, Snadin Juhlaorkesterin konsertti.</p><p>Snadin Juhlaorkesteri panostaa erityisesti perinteikkääseen, akustiseen sointiin. Orkesterin ohjelmisto pohjautuu vanhaan swingiin, latinalaisiin rytmeihin ja tyylikkään nostalgiseen rytmimusiikkiin. Tunnelmia luodaan kaihoisasta suomiromantiikasta aina hilpeämpiin ralleihin.<br> <br>Kim Rantala – haitari/kosketinsoittimet<br>Topi Karvonen – basso/kontrabasso<br>Esteban Ferro – rummut/lyömäsoittimet/laulu<br>Juki Välipakka – laulu/perkussiot<br>Juhani Tuulivaara – kitara<br>Aki Hauru – kapellimestari, perkussiot</p><p><i><b>Kahvilan stagen ohjelma:</i><br><b>Klo 13.30–14 | Iryna Gorkun-Silen (huilu) ja Marina Kramarenko (piano)</b><br>Ukrainalaisia sävelmiä sekä klassista ja kevyttä musiikkia.<br><b>Klo 14.20–15 | Mehrnoosh Zolfaghari and Sara Majidinejad</b><br>Iranilaisten naisten duo.<br><b>Klo 15.30–16 | Aakusti</b><br>Elektronista musiikkia afrikkalaisilla rytmeillä.</p><p><b><i>Työpajat:</i><br>Klo 14–17 | Käpykolon väkeä: Syysvieras</b><br>Kanneltalon gallerian työpajassa Käpykolon väkeä -kirjan tekijät kuvataiteilija Zagros Manuchar ja kirjailija Leena Parkkinen opastavat lapsia ja lapsenmielisiä miniatyyriesineiden tekoon. Kielet: suomi, englanti, kurdi.</p><p><b>Klo 14–17 | Kassi omakuvana</b><br>Kirjaston työpajassa pohditaan, voisiko kangaskassilla kertoa jotain itsestään? Tule suunnittelemaan, painamaan kangasväreillä ja muutoinkin koristamaan itsellesi kangaskassi, joka on vähän kuin omakuvasi. Kannetaan kaikki kassiamme ylpeänä! Ohjaajina Anne Rossi-Horto ja Chloé Mahy-Hulkko.<br> <br><b>Klo 14–17 | Unelmointityöpaja</b><br>Kutsumme kaikkia unelmoimaan kanssamme. Miltä sinun unelmasi näyttävät? Unelmista koostamme teoksen, joka ripustetaan D-asema Kannelmäen yhteisötilaa koristamaan. Ohjaamassa D-asema Kannelmäki.</p><p>Tapahtuman kesto: 3 t<br>Vapaa pääsy<br>Kahvila, aula, galleria ja auditorio</p>",
                "sv": "<p>Vi är ett mångsidigt folk! Kom och fira Finland och oss alla på vår gemensamma fest. Under festmåltiden njuts av festprogram och samvaro.</p><p>Du kan komma ensam eller ta med en vän, granne, bekant, kusin, familj eller släkt – evenemanget är gratis och öppet för alla.</p>",
                "en": "<p>We are many for all intents and purposes! Come and celebrate Finland and all of us in a joint festive event featuring an enjoyable programme and togetherness at a festive buffet table.</p><p>Come on your own or bring a friend, a neighbour, an acquaintance, a cousin, your family or extended family – the event is free of charge and open to everyone.</p><p>This warm-spirited event is being held at Kanneltalo for the fifth time now. The Independence Day programme is produced by Kanneltalo and PAND – Artists for Peace. The D-asema (D-station) Kannelmäki, Western Adult Social Work, Kannelmäki Library, Kannelmäki Youth Centre and Kaarela-Seura are also involved in the event.</p><p>Programme:<br>13:30–16:30 | Buffet open to all<br>• KARELIAN HOT POT<br>pork, beef, elk, carrot, onion – m, g (dairy-free, gluten-free)<br>• TOFU STEW<br>tofu, carrot, onion, tomato – v, g (vegetarian, gluten-free)<br>• Boiled potatoes – m, g (dairy-free, gluten-free)<br>• Green salad – m, g (dairy-free, gluten-free)<br>• Blueberry pie – L (lactose-free)<br>• Coffee or tea</p><p>The catering will be provided by Pöytäliina Catering.</p><p>13:30–17:00 | Clown Martta’s celebration reception area<br>Clown Martha (Taina Mäki-Iso) will set up her reception area again to celebrate Independence Day. This time, she promises to be very properly clownish. There will also be tips on being independent and stubborn for everyone interested. All ages are welcome! Feel free to stop by the reception area on your own, with friends or with your family. Martta might just check on your party spirit in the crowd.</p><p>14:00–15:00 | Shadow theatre performance: YMMYRKÄISENÄ! and a shadow theatre workshop<br>This performance for the whole family dives deep into the world of shadow theatre. During the performance, we will be introduced to the Kummala family, who love the circus and telling stories together. After the performance, your whole family can try making shadow puppets and bringing them to life. Directed by Elviira Davidow. In the Kanneltalo auditorium.</p><p>16:30–17:30 | Concert hall celebration programme<br>Keynote speech by Jauri Varvikko, Chair of the Kaarela Society, Kaarela resident of the year award ceremony, and a concert by Snadin Juhlaorkesteri (a professional orchestra).</p><p>Snadin Juhlaorkesteri focuses particularly on a traditional acoustic sound. The orchestra’s repertoire is based on old swing, Latin rhythms and music with elegant, nostalgic rhythms.  The atmosphere will range from wistful Finnish romanticism to more light-hearted tunes.</p><p>Kim Rantala – accordion/keyboard<br>Topi Karvonen – bass/double bass<br>Esteban Ferro – drums/percussion/vocals<br>Juki Välipakka – vocals/percussion<br>Juhani Tuulivaara – guitar<br>Aki Hauru – conductor, percussion</p><p>Café stage programme:<br>13:30–14:00 | Iryna Gorkun-Silen (flute) and Marina Kramarenko (piano)<br>Ukrainian melodies and classical and light music.<br>14:20–15:00 | Mehrnoosh Zolfaghari and Sara Majidinejad<br>A duo of Iranian women.<br>15:30–16:00 | Aakusti<br>Electronic music with African rhythms.</p><p>Workshops:<br>14:00–17:00 | Käpykolon väkeä: Syysvieras (autumn guest)<br>In the Kanneltalo gallery workshop, the authors of the book Käpykolon väkeä, visual artist Zagros Manuchar and author Leena Parkkinen, will teach children and anyone else interested how to make miniatures. Languages: Finnish, English, and Kurdish.</p><p>14:00–17:00 | A bag as a self-portrait<br>The library workshop will hold a workshop where we consider whether a canvas bag can say something about its owner. Join us to design, print with fabric dyes and otherwise decorate your own canvas bag, which will be a bit like your self-portrait. Let’s all carry our bags with pride! Directed by Anne Rossi-Horto and Chloé Mahy-Hulkko.</p><p>14:00–17:00 | Daydreaming workshop<br>We invite everyone to daydream with us. What do your daydreams look like? We will compile a work of art from these daydreams, which will be displayed in the Kannelmäki community space in D-asema (D-station). Directed by Taru Tuomola and D-asema.</p><p>Duration of the event: 3 hours<br>Free admission<br>Café, lobby, gallery and auditorium</p>"
            },
            "short_description": {
                "fi": "Meistä on moneksi! Tule juhlistamaan Suomen itsenäisyyttä ja samalla meitä kaikkia yhteiseen juhlaan. Juhla-aterian ääressä nautitaan juhlaohjelmasta ja yhdessäolosta.",
                "sv": "Vi är ett mångsidigt folk! Kom och fira Finland och oss alla på vår gemensamma fest. Under festmåltiden njuts av festprogram och samvaro.",
                "en": "We are many for all intents and purposes! Come and celebrate Finland and all of us in a joint festive event featuring an enjoyable programme and togetherness at a festive buffet table."
            },
            "name": {
                "fi": "Kanneltalon itsenäisyyspäivän juhla",
                "sv": "Gamlasgårdens självständighetsdagsfest",
                "en": "Kanneltalo’s Independence Day celebration"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/76CBFF19920FCDFF1B29B84AAC09AF4F/Kanneltalon_itsenaisyyspaivan_juhla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/76CBFF19920FCDFF1B29B84AAC09AF4F/Gamlasgardens_sjalvstandighetsdagsfest",
                "en": "http://www.kanneltalo.fi/en/events/event/76CBFF19920FCDFF1B29B84AAC09AF4F/Kanneltalo_s_Independence_Day_celebration"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60632/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:257263",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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: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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6390,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-30T14:20:27.400184Z",
                    "last_modified_time": "2024-02-06T13:40:05.485224Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BE98324E-4536-47BE-A19E-CBE629D107D1}/107812",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6390/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T16:15:00.694310Z",
            "last_modified_time": "2023-11-30T14:22:01.465593Z",
            "date_published": "2023-03-21T11:25:00Z",
            "start_time": "2023-12-19T15:30:00Z",
            "end_time": "2023-12-19T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>",
                "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>"
            },
            "short_description": {
                "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.",
                "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment."
            },
            "name": {
                "fi": "Toastmasters - become a better speaker",
                "en": "Toastmasters - become a better speaker"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Akseli-sali",
                "en": "Akseli-sali"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257263/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:257260",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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: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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6390,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-30T14:20:27.400184Z",
                    "last_modified_time": "2024-02-06T13:40:05.485224Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BE98324E-4536-47BE-A19E-CBE629D107D1}/107812",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6390/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T16:09:09.593591Z",
            "last_modified_time": "2023-11-30T14:21:33.117853Z",
            "date_published": "2023-03-21T11:25:00Z",
            "start_time": "2023-12-05T15:30:00Z",
            "end_time": "2023-12-05T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>",
                "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>"
            },
            "short_description": {
                "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.",
                "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment."
            },
            "name": {
                "fi": "Toastmasters - become a better speaker",
                "en": "Toastmasters - become a better speaker"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Akseli-sali",
                "en": "Akseli-sali"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257260/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271777",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:11699/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2810,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:27.565448Z",
                    "last_modified_time": "2024-02-06T13:38:05.274541Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D8BFE00A-0ED9-41F1-851D-4B02769C00AD}/102067",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2810/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-30T14:21:29.710923Z",
            "last_modified_time": "2023-11-30T14:21:29.846988Z",
            "date_published": "2023-04-24T16:30:00Z",
            "start_time": "2023-12-04T16:00:00Z",
            "end_time": "2023-12-04T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kiinnostaako 3D-tulostus, mutta et ole saanut tartuttua toimeen? Tervetuloa tutustumaan Tapanilan kirjaston 3D-tulostimeen ja tulostamisen alkeisiin yhdessä. Et tarvitse mitään ennakkotietoja aiheesta, utelias mieli riittää. Avoin opastus kirjaston 3D-tulostimen käyttöön joka kuun ensimmäisenä maanantaina klo 18-19.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa tutustumaan Tapanilan kirjaston 3D-tulostimeen ja tulostamisen alkeisiin yhdessä joka kuun ensimmäisenä maanantaina."
            },
            "name": {
                "fi": "Avoin 3D-opastus"
            },
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271777/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271374",
            "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:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6309,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-28T17:21:29.601495Z",
                    "last_modified_time": "2023-11-28T17:21:29.601518Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{E61B4C48-3D8A-4642-9059-74142598A72B}/107664",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6309/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-23T15:21:30.110195Z",
            "last_modified_time": "2023-11-30T14:21:27.346525Z",
            "date_published": "2023-11-23T13:14:00Z",
            "start_time": "2023-12-02T10:30:00Z",
            "end_time": "2023-12-02T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p> Mitä teette lauantaina 2.12? Tule mukaan suomenruotsalaisen viittomakielen festivaaliin! </p><p> Missä? Kirjasto Oodi, Helsinki. Aika? 12:30-16.00 </p><p> Kenelle? Kaikille! Tarjoamme kaikenlaisia hauskoja ja opettavaisia ohjelmia kaikenikäisille, päiväkoti-ikäisistä senioreihin! Voit tulla yksin, kavereiden kanssa tai perheen kanssa. </p><p> <b>1. kerros</b> </p><p>12.30 Esittelypöydät</p><p> <strong> 3. kerros, Saarikoski-matto</strong> </p><p>13.00 Luentoja</p><p>14.15 Tauko</p><p>14.30 Elämäntarinoita</p><p>15.15 Tauko</p><p>15.25 Lavaesitykset</p><p>15.50 Festivaalin päätös</p><p> <strong> 3. kerros, lasten tapahtumatila ja parvi</strong> </p><p>Lasten ohjelma</p><p>12:30 Satutuokio</p><p>13:00 Lauluja Sandran kanssa</p><p>13.30 Askartelutuokio, kasvomaalausta, leikkipisteitä</p><p>14:30 Satutuokio</p><p>15.00 Leikkituokio</p><p>15:30 Lauluja Sandran kanssa</p><p> <strong>2. kerros, OP3</strong> </p><p>Viittomakielen tunti</p><p>12:30-13.00 Viikonpäivät, kuukaudet, sää</p><p>14.00-14.30 Värit, numerot ja arkipäivän viittomat</p><p> Tapahtuman tarkoitus on levittää ja lisätä tietoisuutta suomenruotsalaisesta viittomakielestä. Paikan päällä on mahdollisuus kysellä, oppia ja tutustua suomenruotsalaiseen viittomakieleen. </p><p> Tapahtuman kielet: suomenruotsalainen viittomakieli, suomalainen viittomakieli ja suomi. Lasten ohjelmassa myös ruotsi. </p><p> Sydämellisesti tervetuloa mukaan! </p><p>Tapahtuman järjestää Finlandssvenska teckenspråkiga r.f.</p>",
                "sv": "<p> Vad gör du lördag 2.12? Kom på Finlandssvensk teckenspråksfestival! </p><p> Var? Biblioteket Ode, i Helsingfors. Tid? 12:30-16 </p><p> För vem? Vem som helst! Det erbjuds olika roliga och lärorika program för alla åldrar, från daghemsålder till äldre personer! Du kan komma ensam, med kompisar, eller hela familjen. </p><p> <b>Första våningen</b> </p><p>12.30 Presentationsbord</p><p> <strong>3. våningen, Saarikoski-mattan</strong> </p><p>13.00 Föreläsningar</p><p>14.15 Paus</p><p>14.30 Livsberättelser</p><p>15.15 Paus</p><p>15.25 Scenföreställningar</p><p>15.50 Festivalsavslutning</p><p> <strong>3. våningen, evenemangsrummet och loftet</strong> </p><p>Barnprogram</p><p>12:30 Sagostund</p><p>13:00 Sång med Sandra</p><p>13.30 Pysselstund, ansiktsmålning, lekstationer</p><p>14:30 Sagostund</p><p>15.00 Lekstund</p><p>15:30 Sång med Sandra</p><p> <strong>2. våningen, OP3</strong> </p><p>Teckenspråkslektion</p><p>12:30-13.00 veckodagar, månader, väder</p><p>14.00-14.30 färger, nummer och vardagstecken</p><p> Evenemangets syfte är att sprid kunskap och öka medvetenhet om finlandssvenskt teckenspråk. På plats har du möjlighet att fråga, lära och ta del av finlandssvenskt teckenspråk. </p><p> Evenemangens språk: Finlandssvenskt teckenspråk, finskt teckenspråk och finska. Barnprogrammet är också på svenska </p><p> Hjärtligt välkomna med! </p><p>Festivalen arrangeras av föreningen Finlandssvenska teckenspråkiga r.f.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa suomenruotsalaisen viittomakielen festivaaliin 2.12.2023!",
                "sv": "Kom på Finlandssvensk teckenspråksfestival!"
            },
            "name": {
                "fi": "Suomenruotsalaisen viittomakielen festivaali",
                "sv": "Finlandssvensk teckenspråksfestival"
            },
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271374/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271130",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2670,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:29:10.752405Z",
                    "last_modified_time": "2024-02-06T13:38:15.787865Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{4E6C9897-A323-46DF-9B7D-272403F91B1F}/98143",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2670/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-22T15:19:56.292688Z",
            "last_modified_time": "2023-11-30T14:21:22.048320Z",
            "date_published": "2023-11-22T13:40:00Z",
            "start_time": "2023-11-30T10:00:00Z",
            "end_time": "2023-11-30T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<h3>Torstaina 30.11. klo 12-15 aulassa</h3><p>Työnantajatreffeillä Sellon kirjastossa Leppävaarassa on työnantajana New Hairstore, joka etsii partureita, kampaajia ja kauneusalan ammattilaisia. Lisäksi yritys hakee uusia koulutettavia edellä mainittuihin työtehtäviin. Lisää aiheesta täältä: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fnewhairstore.fi%2Ftule-toihin%2F&amp;data=05%7C01%7C%7C9639505c28b8487ecdf908dbeb528cc6%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638362512014959038%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=KjuuEgrvULkPuoh1YkaQlpfEX3ehGvdOSFm%2BhY%2FdCAc%3D&amp;reserved=0\">https://newhairstore.fi/tule-toihin/</a></p><p>Lisää tapahtumasta myös Espoo kaupungin sivulta: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.espoo.fi%2Ffi%2Ftapahtumat%2Fespooevents%3Aagfufwf7cu&amp;data=05%7C01%7C%7C9639505c28b8487ecdf908dbeb528cc6%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638362512014968451%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=DvZhVvNDQ8rXcsmisdvZf6FQEPgZeV8IVDNCIGlmn4k%3D&amp;reserved=0\">https://www.espoo.fi/fi/tapahtumat/espooevents:agfufwf7cu</a></p><p>Tervetuloa!</p><p> <br> </p>"
            },
            "short_description": {
                "fi": "Tule kuulemaan avoimista työpaikoista!"
            },
            "name": {
                "fi": "PERUTTU Työnantajatreffit"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Lava"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271130/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:269328",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 5071,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-10-08T23:09:41.617865Z",
                    "last_modified_time": "2023-10-08T23:09:41.617887Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{E47D6A4C-9328-44F6-8AD0-F801F1DDC176}/106581",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5071/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-10-08T23:09:40.823091Z",
            "last_modified_time": "2023-11-30T14:21:21.167819Z",
            "date_published": "2023-10-08T21:00:00Z",
            "start_time": "2023-10-09T13:00:00Z",
            "end_time": "2023-11-30T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Inkeri Makkosen näyttelyiden ”Rakas päiväkirjani” sarja alkoi syyskuussa 23 Galleria Katariinasta,<br> Helsingistä. Arabianrannan kirjastossa on nyt loka marraskuussa esillä myös ”uusia sivuja”.</p><p>Inkeri Makkonen maalaa maisemaa allegorioita, mielentiloja, kuvajaisia. Ne ovat muotokuvia<br> taiteilijasta itsestään. Näyttelyyn on val ttu teossarjan syksystä 2022 syksyyn 2023.<br> Teoksen nimi syntyy työskennellessä ja viittaa prosessiin, jota maalari käy läpi työskennellessään.<br> Muotokuva, lävitseni tullut, on monin langoin kiinni ympäröivässä maailmassa, sen tapahtumissa<br> ja osa sitä. </p><p>Maalaukset on tehty pääasiassa omatekoisilla öljypastelleilla. Pohjamaalauksineen teokset ovat sekatekniikkaa. Työskentelyä on tukenut Taike.</p><p>Taiteilijan lämpimät kiitokset myötäelämisestä ja avusta kirjailija Helinä Siikalalle ja kuvataiteilija<br> Olavi Suomelalle!</p><p>Näyttely on järjestetty yhteistyössä Helsingin Taiteilijaseuran ja Arabianrannan kirjaston kanssa.</p><p>INKERI MAKKONEN<br> “My Dear Diary - with new leaves”</p><p>Paintings in Arabianranta Library 9.10 – 30.11.2023</p><p>Inkeri Makkonen paints landscapes – allegories, states of mind, reflections. They are portraits of herself. For her exhibition she has chosen a series of works from autumn 2022 to autumn 2023.<br> The names of the paintings come about spontaneously as she works and refers to the process she is going through while working.<br> “The portrait which has come through me, is in many ways connected to the world around me, its events and part of it.”<br> Makkonen paints mainly with homemade oil pastels. With the primers they are mixed media paintings.<br> Arts Promotion Centre Finland has supported working</p>"
            },
            "short_description": {
                "fi": "Inkeri Makkosen maalauksia Arabianrannan kirjastossa loka-marraskuun ajan"
            },
            "name": {
                "fi": "Inkeri Makkonen - ”Rakas päiväkirjani – uusin sivuin”"
            },
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269328/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:257257",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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: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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6390,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-30T14:20:27.400184Z",
                    "last_modified_time": "2024-02-06T13:40:05.485224Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BE98324E-4536-47BE-A19E-CBE629D107D1}/107812",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6390/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T16:02:29.502054Z",
            "last_modified_time": "2023-11-30T14:21:00.236300Z",
            "date_published": "2023-03-21T11:25:00Z",
            "start_time": "2023-11-21T15:30:00Z",
            "end_time": "2023-11-21T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>",
                "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>"
            },
            "short_description": {
                "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.",
                "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment."
            },
            "name": {
                "fi": "Toastmasters - become a better speaker",
                "en": "Toastmasters - become a better speaker"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Akseli-sali",
                "en": "Akseli-sali"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257257/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:257258",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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: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:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6390,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-30T14:20:27.400184Z",
                    "last_modified_time": "2024-02-06T13:40:05.485224Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{BE98324E-4536-47BE-A19E-CBE629D107D1}/107812",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6390/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-08-15T15:55:57.979471Z",
            "last_modified_time": "2023-11-30T14:20:27.448843Z",
            "date_published": "2023-03-21T11:25:00Z",
            "start_time": "2023-11-07T15:30:00Z",
            "end_time": "2023-11-07T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>",
                "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>"
            },
            "short_description": {
                "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.",
                "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment."
            },
            "name": {
                "fi": "Toastmasters - become a better speaker",
                "en": "Toastmasters - become a better speaker"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Akseli-sali",
                "en": "Akseli-sali"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257258/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}