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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). 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&keyword=yso%3Ap4354&page=273
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6936,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=274",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=272"
    },
    "data": [
        {
            "id": "kulke:61407",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-23T11:13:36.844247Z",
                    "last_modified_time": "2024-02-06T13:22:46.491102Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739639.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6167/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-23T11:13:36.814603Z",
            "last_modified_time": "2024-02-06T13:22:46.527946Z",
            "date_published": null,
            "start_time": "2023-12-13T12:00:00Z",
            "end_time": null,
            "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,
            "short_description": {
                "fi": "Joulu on jo ovella, kun Viiru-kissa kuulee lasten puhuvan pukista ja tontuista. Se ryntää kotiin vaatimaan selitystä Pesoselta. Pesosen on luvattava, että joulupukki tulee!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9E0F3355B664A4714A1DE13A6F2F3173/Viiru_ja_Pesonen_joulupuuhissa_S_"
            },
            "description": {
                "fi": "<p>Joulu on jo ovella, kun Viiru-kissa kuulee lasten puhuvan pukista ja tontuista. Se ryntää kotiin vaatimaan selitystä Pesoselta. Pesosen on luvattava, että joulupukki tulee!</p><p>Puhuttu suomeksi.</p><p>Ikäraja: S, sallittu kaikenikäisille<br>Kesto: 79 min</p>"
            },
            "name": {
                "fi": "Viiru ja Pesonen joulupuuhissa (S) – Malmitalon joulu | Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61407/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60945",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5261,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:33:24.444479Z",
                    "last_modified_time": "2024-02-06T13:22:46.017955Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737184.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5261/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:33:24.024936Z",
            "last_modified_time": "2024-02-06T13:22:46.062173Z",
            "date_published": null,
            "start_time": "2023-12-13T08:00:00Z",
            "end_time": "2023-12-13T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!",
                "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EC1AF5289B253ED8A5B3FB7609C2D962/Naperokino_Mielikuvitus",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/EC1AF5289B253ED8A5B3FB7609C2D962/Knattebion_fantasi",
                "en": "http://www.annantalo.fi/en/events/event/EC1AF5289B253ED8A5B3FB7609C2D962/Naperokino_toddler_cinema_Imagination"
            },
            "description": {
                "fi": "<p>Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>0–3-vuotiaiden Naperokino palaa ohjelmistoon syksyllä 2023! Rento, mukava esityspaikka ja -tilanne mahdollistavat vaipanvaihdon, syöttämisen/imettämisen tai vaikkapa pienet päiväunet lyhäreiden lomassa.</p><p>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen ottamaan vastaan ja katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas painottuu pienimmillekin sopiviin sanattomiin animaatioihin, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja.</p><p>Naperokino on suunnattu kotiäideille ja –isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ke 11.10., 22.11. ja 13.12. pääset myös paikan päällä tapaamaan ja halaamaan Naperokinossa vierailevaa Myyrää, jonka seikkailuita voit seurata tänä syksynä Annantalon somessa!</p><p>Näytöksillä on joka viikko vaihtuva teema.</p><p>Kieli: suomi<br>Ikäsuositus: 0-3-vuotiaille vanhempiensa kanssa<br>Tila: 1. kerroksen oleskelutila</p>",
                "sv": "<p>Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!</p><p>De minsta barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se även för en liten stund i taget. En avslappnad, bekväm plats för filmvisningen gör det möjligt att byta blöjor, mata/amma barnet eller t.ex. ta en liten tupplur under de korta filmerna.</p><p>Syftet är att visa barnet filmer av hög kvalitet och gradvis vänja hen vid att ta emot och titta på långa barnfilmer på biografer. Under den första halvan av visningen som varar två timmar ligger fokusen på animerade filmer utan tal och på den andra halvan visas det favoriter med tal.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Ons 11.10, 22.11. och 13.12 på plats kan du också möta och krama Mullvaden som besöker Knattebion. Mullvadens äventyr kan du följa under hösten också i Annegårdens sociala medier!</p><p>Föreställningarna har ett varierande tema varje vecka. Denna vecka visas bekanta animationer från Knattebion i september med temat fantasi.</p><p>Mer information från kultural producent, tel. +358 40 188 3416</p>",
                "en": "<p>Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!</p><p>The cinema for toddlers, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while. The relaxed, comfortable venue and setting allow nappy changes, feeding/breastfeeding, or even little naps between short films.</p><p>The goal is to show children high-quality films and gradually get them used to engaging with and watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on wordless animations suitable for even the smallest children, and the second hour will feature favourites with spoken dialogue.</p><p>Naperokino is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>On Wed Oct 11, Nov 22 and Dec 13 you also get to meet and hug Naperokino’s guest Mole, whose adventures you can also follow this autumn on Annantalo’s social media!</p><p>The screenings have a different theme each week. This week, we will show familiar animations from September’s Naperokino with the theme of Imagination!</p><p>For more information please contact cultural produces +358 40 188 3416</p>"
            },
            "name": {
                "fi": "Naperokino: Mielikuvitus",
                "sv": "Knattebion: fantasi",
                "en": "Naperokino (toddler cinema): Imagination"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60945/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60635",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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/yso:p2625/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/",
                        "sv": "https://nukketeatterisampo.fi/esityskalenteri/",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/"
                    },
                    "description": null,
                    "price": {
                        "fi": "12 €",
                        "sv": "12 €",
                        "en": "12 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4642,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:12.123469Z",
                    "last_modified_time": "2024-02-06T13:22:45.916854Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731912.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4642/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:11.973602Z",
            "last_modified_time": "2024-02-06T13:22:45.956501Z",
            "date_published": null,
            "start_time": "2023-12-13T08:00:00Z",
            "end_time": null,
            "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,
            "short_description": {
                "fi": "”Joulu tulla jollottaa, hyvän mielen hyrinässä!” Mukaansatempaava jouluinen nukketeatterikonsertti, joka on luonut joulumieltä jo vuosien ajan!",
                "sv": "Medryckande julig dockteaterkonsert som skapat julstämning redan i flera år!",
                "en": "A captivating Christmas puppet show that has been building the Christmas spirit for years!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/474912EFDFB7CFDE0170EA53C50E1726/Nukketeatteri_Sampo_Joulu_tulla_jollottaa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/474912EFDFB7CFDE0170EA53C50E1726/Dockteatern_Sampo_Joulu_tulla_jollottaa",
                "en": "http://www.kanneltalo.fi/en/events/event/474912EFDFB7CFDE0170EA53C50E1726/Puppet_Theatre_Sampo_Christmas_is_Coming"
            },
            "description": {
                "fi": "<p>”Joulu tulla jollottaa, hyvän mielen hyrinässä!” Mukaansatempaava jouluinen nukketeatterikonsertti, joka on luonut joulumieltä jo vuosien ajan!</p><p>Yhdessä hellyttävän Duppaduulix-koiran, tonttuystävien ja muusikoiden seurassa valmistaudutaan joulun tunnelmaan. Tässä konsertissa viihtyvät kaikenikäiset musiikin ja nukketeatterin ystävät. Saa laulaa mukana!</p><p>Käsikirjoitus, ohjaus, nuket, laulut: Maija Barić <br>Lavastus ja puvut: Suvi Ylinen<br>Esiintyjät: Iivo Barić, Antero Reinistö, Tuuli Saarnio/Jenni Rahunen, Sanna Kaisa Sundström</p><p>Kesto: 45 min<br>Ikäsuositus 0+<br>Liput 12 €, Nukketeatteri Sampon sivulla https://nukketeatterisampo.fi/esityskalenteri/</p>",
                "sv": "<p>Medryckande julig dockteaterkonsert som skapat julstämning redan i flera år!</p><p>Tillsammans med hunden Duppaduulix, tomtvännerna och musikerna förbereder vi oss på julen. På den här konserten trivs vänner av musik och dockteater oavsett ålder. Man får sjunga med!</p><p>Språk: finska<br>Längd: 45 min <br>Åldersrekommendation: 0+<br>Biljetter: https://nukketeatterisampo.fi/esityskalenteri/</p>",
                "en": "<p>A captivating Christmas puppet show that has been building the Christmas spirit for years!</p><p>The audience will get into the Christmas spirit together with the endearing dog Duppaduulix, the elves and the musicians. A concert for lovers of music and puppetry of all ages. Singing along is allowed!</p><p>Language: Finnish<br>Duration: 45 min <br>Age recommendation: 0+<br>Tickets: https://nukketeatterisampo.fi/esityskalenteri/</p>"
            },
            "name": {
                "fi": "Nukketeatteri Sampo: Joulu tulla jollottaa",
                "sv": "Dockteatern Sampo: Joulu tulla jollottaa",
                "en": "Puppet Theatre Sampo: Christmas is Coming"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60635/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60466",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-2/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4638,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:07.535398Z",
                    "last_modified_time": "2024-02-06T13:22:45.136662Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725191.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4638/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:07.379091Z",
            "last_modified_time": "2024-02-06T13:22:45.177267Z",
            "date_published": null,
            "start_time": "2023-12-12T11:30:00Z",
            "end_time": "2023-12-12T13: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,
            "short_description": {
                "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6AD61C4CCF7D19B9E2F54EF978109329/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers",
                "sv": "http://www.caisa.fi/sv/evenemang/event/6AD61C4CCF7D19B9E2F54EF978109329/Open_Art_Studio_for_Toddlers-verkstader_",
                "en": "http://www.caisa.fi/en/events/event/6AD61C4CCF7D19B9E2F54EF978109329/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers"
            },
            "description": {
                "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers",
                "sv": "Open Art Studio for Toddlers-verkstäder",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60466/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60503",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4635,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:04.932684Z",
                    "last_modified_time": "2024-02-06T13:22:44.845922Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731782.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4635/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:04.070598Z",
            "last_modified_time": "2024-02-06T13:22:44.884515Z",
            "date_published": null,
            "start_time": "2023-12-11T08:15:00Z",
            "end_time": "2023-12-11T09: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,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/AD1FB6DF99EFEC2D5578E35295B7FA61/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset",
                "sv": "http://www.caisa.fi/sv/evenemang/event/AD1FB6DF99EFEC2D5578E35295B7FA61/Dans_och_lek_verkstad_Barn_i_lekaldern",
                "en": "http://www.caisa.fi/en/events/event/AD1FB6DF99EFEC2D5578E35295B7FA61/Dance_and_play_workshops_Play-age"
            },
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar",
                "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60503/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60491",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4634,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:03.236382Z",
                    "last_modified_time": "2024-02-06T13:22:44.744351Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731766.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4634/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:02.853819Z",
            "last_modified_time": "2024-02-06T13:22:44.783025Z",
            "date_published": null,
            "start_time": "2023-12-11T07:15:00Z",
            "end_time": "2023-12-11T08: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,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/2C5B41C7122A8944DAE6504158E829F0/Tanssi_ja_leikki_-tyopaja_Taaperot",
                "sv": "http://www.caisa.fi/sv/evenemang/event/2C5B41C7122A8944DAE6504158E829F0/Dans_och_lek_verkstad_Smabarn",
                "en": "http://www.caisa.fi/en/events/event/2C5B41C7122A8944DAE6504158E829F0/Dance_and_play_workshops_Toddlers"
            },
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar",
                "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60491/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59940",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/daltonit-3417949/",
                        "sv": "https://www.lippu.fi/artist/stoa/daltonit-3417949/",
                        "en": "https://www.lippu.fi/artist/stoa/daltonit-3417949/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4632,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:02.218203Z",
                    "last_modified_time": "2024-02-06T13:22:44.453841Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731719.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4632/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:02.040376Z",
            "last_modified_time": "2024-02-06T13:22:44.494552Z",
            "date_published": null,
            "start_time": "2023-12-10T13:00:00Z",
            "end_time": null,
            "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,
            "short_description": {
                "fi": "Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.",
                "sv": "Daltonit är ett dansteateräventyr för hela familjen som kombinerar dansens och cirkusens rörelsekulturer.",
                "en": "‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0D78D20F1536AFFC1D3237E814D2C045/Daltonit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0D78D20F1536AFFC1D3237E814D2C045/Daltonit_",
                "en": "http://www.stoa.fi/en/events/event/0D78D20F1536AFFC1D3237E814D2C045/The_Daltons"
            },
            "description": {
                "fi": "<p>Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.</p><p><b>Daltonien</b> edesottamuksista ei tunnetta, vauhtia ja vaarallisia tilanteita puutu, kun sirkustaiteilijat <b>Onni Toivonen ja Kalle Lehto</b> ja Kinetic Orchestran perustajan <b>Jarkko Mandelinin</b> tanssivat lapset tulkitsevat sarjakuvistakin tuttujen antisankarien tarinaa.</p><p>Daltonien kantavana teemana on syrjäytyminen ja sen henki on hurja, jännittävä, ja koominen. Kaiken sekoilun ja slapstickin jälkeen se toisaalta näyttää omanlaisensa itsepäisen omalakisen elämänkatsomuksen tai vastuuttomuuden traagisenkin puolen.</p><p>Daltonit on ikäänkuin humoristisempi, monitulkintaisempi ja lennokkaampi versio seitsemästä veljeksestä, jossa neljästä elämän kolhimasta, mutta hyväntahtoisesta sekoilijasta, paljastuu uusia puolia, kun heidän normaalin remuamisensa katkaisee tärkeän perheenjäsenen yllättävä katoaminen.</p><p>Daltonien maailma rakentuu tanssin, sirkuksen ja koomisen liikkumisen varaan.</p><p>Koreografia ja konsepti Jarkko Mandelin<br>Esiintyjät: Onni Toivonen, Kalle Lehto, Jarkko Mandelin, Lyyli Mandelin, Oiva Mandelin, Rauha Mandelin, Urho Mandelin<br>Sävellys ja äänisuunnittelu: Josu Mämmi ja Petri Kautto<br>Valosuunnittelu: Niila Rantala ja Jarkko Mandelin<br>Puvustus: Jenna Mandelin<br>Lavastus: Jarkko Mandelin ja työryhmä<br>Tuotanto: Tuotanto: Kinetic Orchestra ja JoJo - Oulun Tanssin Keskus</p><p>Ikäsuositus 5+<br>Kesto n. 45 min <br>Liput la ja su esityksiin 6 €</p><p>Ilmoittautuminen perjantain 8.12.2023 klo 10 koululaisesitykseen: kultus.fi 15.8.2023 alkaen, vapaa pääsy.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Daltonit är ett dansteateräventyr för hela familjen som kombinerar dansens och cirkusens rörelsekulturer.</p><p>‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus.</p><p>Åldersrekommendation 5+<br>Längd cirka 45 min</p>",
                "en": "<p>‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus.</p><p>The Daltons’ performances are full of emotion, speed and dangerous situations as circus artists Onni Toivonen and Kalle Lehto, the dancing children of Jarkko Mandelin, founder of Kinetic Orchestra interpret the story of the comic-book anti-heroes.</p><p>Age recommendation: 5+<br>Duration approx. 45 min</p>"
            },
            "name": {
                "fi": "Daltonit",
                "sv": "Daltonit",
                "en": "The Daltons"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59940/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59939",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/daltonit-3417949/",
                        "sv": "https://www.lippu.fi/artist/stoa/daltonit-3417949/",
                        "en": "https://www.lippu.fi/artist/stoa/daltonit-3417949/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4631,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:01.639693Z",
                    "last_modified_time": "2024-02-06T13:22:43.781638Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731718.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4631/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:00.085715Z",
            "last_modified_time": "2024-02-06T13:22:43.821811Z",
            "date_published": null,
            "start_time": "2023-12-09T13:00:00Z",
            "end_time": null,
            "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,
            "short_description": {
                "fi": "Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.",
                "sv": "Daltonit är ett dansteateräventyr för hela familjen som kombinerar dansens och cirkusens rörelsekulturer.",
                "en": "‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/729BD081DEC81A773669A8D7F5CED2B2/Daltonit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/729BD081DEC81A773669A8D7F5CED2B2/Daltonit_",
                "en": "http://www.stoa.fi/en/events/event/729BD081DEC81A773669A8D7F5CED2B2/The_Daltons"
            },
            "description": {
                "fi": "<p>Daltonit on tanssin ja sirkuksen liikekulttuureja yhdistelevä koko perheelle suunnattu tanssiteatteriseikkailu.</p><p><b>Daltonien</b> edesottamuksista ei tunnetta, vauhtia ja vaarallisia tilanteita puutu, kun sirkustaiteilijat <b>Onni Toivonen ja Kalle Lehto</b> ja Kinetic Orchestran perustajan <b>Jarkko Mandelinin</b> tanssivat lapset tulkitsevat sarjakuvistakin tuttujen antisankarien tarinaa.</p><p>Daltonien kantavana teemana on syrjäytyminen ja sen henki on hurja, jännittävä, ja koominen. Kaiken sekoilun ja slapstickin jälkeen se toisaalta näyttää omanlaisensa itsepäisen omalakisen elämänkatsomuksen tai vastuuttomuuden traagisenkin puolen.</p><p>Daltonit on ikäänkuin humoristisempi, monitulkintaisempi ja lennokkaampi versio seitsemästä veljeksestä, jossa neljästä elämän kolhimasta, mutta hyväntahtoisesta sekoilijasta, paljastuu uusia puolia, kun heidän normaalin remuamisensa katkaisee tärkeän perheenjäsenen yllättävä katoaminen.</p><p>Daltonien maailma rakentuu tanssin, sirkuksen ja koomisen liikkumisen varaan.</p><p>Koreografia ja konsepti Jarkko Mandelin<br>Esiintyjät: Onni Toivonen, Kalle Lehto, Jarkko Mandelin, Lyyli Mandelin, Oiva Mandelin, Rauha Mandelin, Urho Mandelin<br>Sävellys ja äänisuunnittelu: Josu Mämmi ja Petri Kautto<br>Valosuunnittelu: Niila Rantala ja Jarkko Mandelin<br>Puvustus: Jenna Mandelin<br>Lavastus: Jarkko Mandelin ja työryhmä<br>Tuotanto: Tuotanto: Kinetic Orchestra ja JoJo - Oulun Tanssin Keskus</p><p>Ikäsuositus 5+<br>Kesto n. 45 min <br>Liput la ja su esityksiin 6 €</p><p>Ilmoittautuminen perjantain 8.12.2023 klo 10 koululaisesitykseen: kultus.fi 15.8.2023 alkaen, vapaa pääsy.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Daltonit är ett dansteateräventyr för hela familjen som kombinerar dansens och cirkusens rörelsekulturer.</p><p>‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus.</p><p>Åldersrekommendation 5+<br>Längd cirka 45 min</p>",
                "en": "<p>‘The Daltons’ is a dance theatre adventure for the whole family, combining the movement cultures of dance and circus.</p><p>The Daltons’ performances are full of emotion, speed and dangerous situations as circus artists Onni Toivonen and Kalle Lehto, the dancing children of Jarkko Mandelin, founder of Kinetic Orchestra interpret the story of the comic-book anti-heroes.</p><p>Age recommendation: 5+<br>Duration approx. 45 min</p>"
            },
            "name": {
                "fi": "Daltonit",
                "sv": "Daltonit",
                "en": "The Daltons"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59939/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61579",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6403,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-01T15:13:08.594956Z",
                    "last_modified_time": "2024-02-06T13:22:43.690039Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741561.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6403/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-01T15:13:08.557060Z",
            "last_modified_time": "2024-02-06T13:22:43.731173Z",
            "date_published": null,
            "start_time": "2023-12-09T12:00:00Z",
            "end_time": null,
            "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,
            "short_description": {
                "fi": "Lauantaina 9.12. klo 14-16 juhlitaan Vuotalolla MLL Perhehaavin kauden päätöstä."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/43E5100B5E3F58E3688CBAB3D5D6A555/MLL_Perhehaavin_Talvijuhla_"
            },
            "description": {
                "fi": "<p>Lauantaina 9.12. klo 14-16 juhlitaan Vuotalolla MLL Perhehaavin kauden päätöstä.</p><p>Jos et vielä tunne MLL Uudenmaan piirin tai Perhehaavin toimintaa, tervetuloa mukaan niin kuulet siitä lisää!<br>Juhlassa on kivaa ohjelmaa koko perheelle; musiikkia, pipareiden koristelua, jättimäisiä pelejä ja herkullista syötävää!<br>Tervetuloa mukaan koko perheen yhteiseen juhlaan!</p>"
            },
            "name": {
                "fi": "MLL Perhehaavin Talvijuhla!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61579/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61318",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5962,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T10:13:31.694910Z",
                    "last_modified_time": "2024-02-06T13:22:43.386044Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739284.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-13T10:13:31.676046Z",
            "last_modified_time": "2024-02-06T13:22:43.427478Z",
            "date_published": null,
            "start_time": "2023-12-09T09:00:00Z",
            "end_time": "2023-12-09T11: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,
            "short_description": {
                "fi": "Voihan lumikissan viikset ja karhun talvikuono!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2E52E1F4F23AB9B4B8265AECB129AAB5/Askartelutyopaja_Talvinen_elainnaamari_"
            },
            "description": {
                "fi": "<p>Voihan lumikissan viikset ja karhun talvikuono!</p><p>Lumi on satanut metsään ja metsäneläimet ovat muuttuneet kovin talvisiksi. Turkit ja höyhenet ovat sinisävyisiä ja hiutaleita löytyy kuonon päältä. Tule askartelemaan oma talvinen eläinnaamari: lumikettu, hiutalepöllö tai vaikka talviuniltaan hetkeksi herännyt nallekarhu!</p><p>Työpajan suunnittelu ja toteutus, Ulla-Maija Vanhala/Runoropinoita <br>Malmitalon aulassa.</p><p>Vapaa pääsy, tervetuloa!</p>"
            },
            "name": {
                "fi": "Askartelutyöpaja: Talvinen eläinnaamari – Malmitalon joulu"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61318/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:276585",
            "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: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:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 2788,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:05.529912Z",
                    "last_modified_time": "2024-02-06T13:39:48.918845Z",
                    "url": "https://www.helmet.fi/download/noname/{1EF6AEC1-A323-45F0-96EE-D8EADDC7A410}/99626",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2788/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-02T13:24:21.353439Z",
            "last_modified_time": "2024-01-31T14:29:35.306688Z",
            "date_published": "2024-01-02T11:32:00Z",
            "start_time": "2024-01-05T08:00:00Z",
            "end_time": "2024-01-05T10: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,
            "short_description": {
                "fi": "Maunulan Baby Kino –näytös järjestetään kerran kuussa. Näytös on tarkoitettu vanhemmille/hoitajille ja vauvoille."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Maunula-talon nuorisotalo muuttuu elokuvasaliksi!</p><p>Baby Kino järjestetään nuorisotalon olohuoneessa 2.krs:</p><p> <strong>pe 5.1., 2.2. (SIIRRETÄÄN pidettäväksi 9.2.), 1.3., 5.4. ja 3.5. klo 10-12</strong> </p><p>Baby Kino -näytös on tarkoitettu vanhemmille/hoitajille ja vauvoille.<br> Elokuvaesitykset ovat vauvaystävällisiä, mutta elokuvat on valittu aikuiseen makuun sopiviksi.<br> Elokuvan äänet ovat normaalia hiljaisemmalla<br> Tilassa on himmeä valaistus<br> Elokuvat ovat ikärajaltaan sallittuja (S)<br> Vauvanhoitoa helpottavat tilassa sijaitsevat vesipiste ja mikroaaltouuni<br> Maunula-talon aulasta löytyy lastenhoitotaso.</p><p>Kahvia ja teetä on tarjolla.</p><p>Olohuoneessa on sohvia, nojatuoleja ja lattialla iso peitoin päällystetty matto. Lisäksi oma alusta toisi mukavuutta vauvalle. Voit myös ottaa mukaan kantokassin/turvaistuimen, jossa vauvasi voi nukkua leffan aikana.</p><p> <strong>Kevään 2024 leffat </strong> <br> 5.1. New year’s eve / ohj. Garry Marshall <br> 2.2. Marie Antoinette / ohj. Sofia Coppola <strong>SIIRRETÄÄN pidettäväksi 9.2.</strong><br> 1.3. Chef / ohj. Jon Favreau <br> 5.4. In the heights / ohj. Jon M. Chu <br> 3.5. Havannan taivaan alla / ohj. Laurent Cantet </p><p>Esitykset ovat aina maksuttomia. Tervetuloa!</p>"
            },
            "name": {
                "fi": "Maunulan Baby Kino (SIIRRETTY PIDETTÄVÄKSI 9.2.)"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Maunula-talo, nuorisotalo"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276585/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:280689",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 7433,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-30T16:28:53.976796Z",
                    "last_modified_time": "2024-01-30T16:28:53.976816Z",
                    "url": "https://www.helmet.fi/download/noname/{7603DAAB-D96A-47FE-89DB-B69FA73E495C}/109078",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-30T16:28:53.932170Z",
            "last_modified_time": "2024-01-30T16:28:54.105794Z",
            "date_published": "2024-01-30T12:31:00Z",
            "start_time": "2024-02-01T08:00:00Z",
            "end_time": "2024-02-01T10: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,
            "short_description": {
                "fi": "Hakunilan kirjastossa luetaan pehmopresidenttiehdokkaiden suosikkikirjoja torstaina 1.2. klo 10-12. Tervetuloa kuuntelemaan!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule Hakunilan kirjastoon kuuntelemaan pehmopresidenttiehdokkaiden lempikirjoja ääneen luettuna torstaina 1.2. kello 10-12. Luvassa seikkailua, jännitystä ja hieman kauhua.</p><p>Arvaatko, mikä kirja on kenenkin suosikki? Luettavat kirjat ovat Mahtava Milli, Kuka tuli sisälle ulkokengät jalassa, Kavereita ei saa syödä!, Nuku hyvin kullanmuru ja Yksi sinne tai tänne.</p><p>Vantaan kaupunginkirjastossa etsitään pehmopresidenttiä lapsille ja perheille suunnatun toiminnan keulakuvaksi. Lue lisää: <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Hakunilan_kirjasto/Juttuja_kirjastosta/Pehmopresidentinvaalit_Vantaan_kirjastoi(277852)\">Pehmopresidentinvaalit Vantaan kirjastoissa | Helmet</a>. Äänestys on käynnissä 22.1.-3.2.2024.</p>"
            },
            "name": {
                "fi": "Luetaan pehmoehdokkaiden lempikirjoja"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280689/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:aggvtcw6uu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8657/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 7425,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-30T08:44:47.077382Z",
                    "last_modified_time": "2024-01-30T08:44:47.077400Z",
                    "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=14c1123b-cb65-45f4-ba82-c6a5b536bdae&Timestamp=638422007755573872",
                    "name": "Kuvan Kuvatekstikentän tietoa ykkösen ratikasta",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7425/?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:p1235/?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:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-30T08:44:49.714123Z",
            "last_modified_time": "2024-01-30T08:44:49.714144Z",
            "date_published": "2024-01-30T08:38:11Z",
            "start_time": "2024-01-30T06:00:00Z",
            "end_time": "2024-01-30T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 99,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 1000,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2024-01-22T08:00:00+02:00",
            "enrolment_end_time": "2024-01-29T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "MKtest 300120240900 D365 to LE 6 SHORT DESC FI",
                "en": "MKtest 300120240900 D365 to LE 6 SHORT DESC EN",
                "ru": "MKtest 300120240900 D365 to LE 6 SHORT DESC RUS ФЫВАПРОЛД"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>MKtest 300120240900 D365 to LE 6 <strong>LONG DESC</strong> FI</div></div>",
                "en": "<div><div>MKtest 300120240900 D365 to LE 6 <strong>LONG DESC</strong>&nbsp;EN</div></div>",
                "ru": "<div><div>MKtest 300120240900 D365 to LE 6 <strong>LONG DESC</strong>&nbsp;RUS<br><br><br>ФЫВАПРОЛД</div>\n<div>&nbsp;</div>\n<div>&lt;span style=\"font-size:16pt\"&gt;<strong>ФЫВАПРОЛД</strong>&lt;/span&gt;</div>\n<div>&nbsp;</div>\n<div>ФЫВАПРОЛД</div></div>"
            },
            "name": {
                "fi": "MKtest 300120240900 D365 to LE 6",
                "sv": "",
                "en": "MKtest 300120240900 D365 to LE 6 EN",
                "ru": "MKtest 300120240900 D365 to LE 6 RUS ФЫВАПРОЛД",
                "zh_hans": "",
                "ar": ""
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Business Helsinki FI",
                "en": "Business Helsinki EN",
                "ru": "Business Helsinki RUS"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggvtcw6uu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:280479",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 6758,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-20T16:24:57.102301Z",
                    "last_modified_time": "2024-02-06T13:39:58.336848Z",
                    "url": "https://www.helmet.fi/download/noname/{B65F4EDF-95F1-4A15-8CF9-813EF97065D1}/108243",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-26T14:25:29.191286Z",
            "last_modified_time": "2024-01-26T14:25:29.312671Z",
            "date_published": "2024-01-25T22:00:00Z",
            "start_time": "2024-01-30T07:15:00Z",
            "end_time": "2024-01-30T07:50: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,
            "short_description": {
                "fi": "Tervetuloa nauttimaan saduista ja tarinoista Lumon kirjastoon!"
            },
            "info_url": null,
            "description": {
                "fi": "<p> <strong>Valitettavasti tiistain 30.1. satuhetki joudutaan perumaan. Pahoittelumme!</strong> </p><p>--------------------</p><p>Kirjaston satuhuoneessa järjestetään kaikille avoimia satuhetkiä. Tervetuloa!</p><p>Satuhetkiä on peräkkäin kaksi, joista ensimmäinen alkaa klo 9.15 ja toinen klo 9.30. Molemmat satuhetket ovat samansisältöisiä. Yhden satuhetken kesto on noin 20 minuuttia.</p><p>Isoilta lapsiryhmiltä toivomme ennakkoilmoittautumista osoitteeseen anneli.outinen@vantaa.fi.</p><p>Kevään 2024 satuhetket ovat: 16.1., 30.1., 13.2., 7.3., 26.3., 9.4., 23.4., 7.5. ja 21.5.</p> . </p><p>\"Asiasana: Lastenkulttuuri\"</p><p> <em>Kuva: Pixabay</em> </p>"
            },
            "name": {
                "fi": "Satuhetki"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280479/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:aggubvaxvy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64635/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21257/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?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:p5590/?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:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": {
                        "fi": "Hintatietojen kuvaus-kentän tietoa LE-välilehdellä FI"
                    },
                    "price": {
                        "fi": "12345"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 7348,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-24T14:13:10.627914Z",
                    "last_modified_time": "2024-02-06T13:23:25.680695Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741247.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-25T13:34:18.050950Z",
            "last_modified_time": "2024-01-25T13:34:18.050970Z",
            "date_published": "2024-01-25T08:47:43Z",
            "start_time": "2024-01-25T17:00:00Z",
            "end_time": "2024-01-25T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 2,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 2,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2024-01-25T08:00:00+02:00",
            "enrolment_end_time": "2024-01-25T16:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tämä on SHORT DESC -kentän kuvaus FI",
                "en": "Tämä on SHORT DESC -kentän kuvaus EN"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>Tämä on LONG DESC -kentän kuvaus FI</div></div>",
                "en": "<div><div>Tämä on LONG DESC -kentän kuvaus EN<br><br>Tämä on <strong>BOLDATTUA</strong> tekstiä<br><br>Tämä on <em><strong>KURSIIVIA</strong></em> ja boldattua tekstiä</div></div>"
            },
            "name": {
                "fi": "MKtest 240120240830 D365 to LE 2",
                "en": "MKtest 240120240830 D365 to LE 2"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Business Helsinki FI",
                "en": "Business Helsinki EN"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggubvaxvy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:aggtunh4du",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46044/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21257/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?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:p5590/?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:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://https//www.mtv3.fi"
                    },
                    "description": {
                        "fi": "Hyvä hinta. Halvalla lähtee."
                    },
                    "price": {
                        "fi": "1500"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-24T06:42:47.466199Z",
            "last_modified_time": "2024-01-24T06:42:47.466218Z",
            "date_published": "2024-01-24T06:32:23Z",
            "start_time": "2024-01-24T12:00:00Z",
            "end_time": "2024-01-25T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 4,
            "audience_max_age": 18,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 12,
            "minimum_attendee_capacity": 10,
            "enrolment_start_time": "2024-01-24T08:00:00+02:00",
            "enrolment_end_time": "2024-01-25T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "MKtest 240120240830 to LE asdf 12345 asdf 12345 SHORT DESC FIN",
                "sv": "MKtest 240120240830 to LE asdf 12345 asdf 12345 SHORT DESC SWE",
                "ru": "MKtest 240120240830 to LE asdf 12345 asdf 12345 SHORT DESC ФЫВЖФЫВАЖФЫВЛАЖФЫВДЛАО",
                "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC FIN</div></div>",
                "sv": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>",
                "ru": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC ФЫВЖФЫВАЖФЫВЛАЖФЫВДЛАО</div></div>",
                "ar": "<div><div>&lt;span style=\"language:fi\"&gt;&lt;span style=\"unicode-bidi:embed\"&gt;&lt;span style=\"word-break:normal\"&gt;&lt;span style=\"punctuation-wrap:hanging\"&gt;&lt;span style=\"font-size:16.0pt\"&gt;&lt;span style=\"font-family:Arial\"&gt;&lt;span style=\"color:black\"&gt;&lt;span style=\"language:ar-DZ\"&gt;من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;</div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<div>&lt;span style=\"language:fi\"&gt;&lt;span style=\"unicode-bidi:embed\"&gt;&lt;span style=\"word-break:normal\"&gt;&lt;span style=\"punctuation-wrap:hanging\"&gt;&lt;span style=\"font-size:16.0pt\"&gt;&lt;span style=\"font-family:Arial\"&gt;&lt;span style=\"color:black\"&gt;&lt;span style=\"language:ar-DZ\"&gt;من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;<br>&nbsp;</div>\n<div>&nbsp;</div>\n<div><strong>&lt;span style=\"language:fi\"&gt;&lt;span style=\"unicode-bidi:embed\"&gt;&lt;span style=\"word-break:normal\"&gt;&lt;span style=\"punctuation-wrap:hanging\"&gt;&lt;span style=\"font-size:16.0pt\"&gt;&lt;span style=\"font-family:Arial\"&gt;&lt;span style=\"color:black\"&gt;&lt;span style=\"language:ar-DZ\"&gt;من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;</strong><br>&nbsp;</div></div>"
            },
            "name": {
                "fi": "MKtest 240120240830 to LE asdf 12345 asdf 12345"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Business Helsinki FIN",
                "sv": "Business Helsinki SWE",
                "ru": "Business Helsinki RUS",
                "ar": "Business Helsinki ARAB"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggtunh4du/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:aggtm4vxvy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:28414/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-23T13:11:44.312502Z",
            "last_modified_time": "2024-01-23T13:11:44.312522Z",
            "date_published": "2024-01-23T13:03:48Z",
            "start_time": "2024-01-24T00:30:00Z",
            "end_time": "2024-01-24T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 18,
            "audience_max_age": 99,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 8,
            "minimum_attendee_capacity": 4,
            "enrolment_start_time": "2024-01-23T08:00:00+02:00",
            "enrolment_end_time": "2024-01-23T23:30:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "MKtest 230120241502 SHORT DESC FI",
                "sv": "MKtest 230120241502 SHORT DESC SV"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>MKtest 230120241502 TAPAHTUMAN LONG DESCRIPTION SUOMEKSI</div></div>",
                "sv": "<div><div>MKtest 230120241502 TAPAHTUMAN LONG DESCRIPTION RUOTSIKSI</div></div>"
            },
            "name": {
                "fi": "MKtest 230120241502"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Business Helsinki FI",
                "sv": "Business Helsinki SV"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggtm4vxvy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:279829",
            "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:10592/?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: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:10856/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 7291,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-19T13:25:10.531049Z",
                    "last_modified_time": "2024-01-19T13:25:10.531068Z",
                    "url": "https://www.helmet.fi/download/noname/{0DF1B231-AE3A-4C7E-93C9-7D9CE0017CD0}/108814",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7291/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-01-19T13:25:10.510803Z",
            "last_modified_time": "2024-01-22T16:26:18.566352Z",
            "date_published": "2024-01-19T12:51:00Z",
            "start_time": "2024-01-27T10:00:00Z",
            "end_time": "2024-01-27T15: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,
            "short_description": {
                "fi": "Barnaamijka sabtida 27.1.2024 wa sidaan oo hoos ku qoron!\nTervetuloa juhlistamaan somalialaista kulttuuria Vuotaloon!"
            },
            "info_url": null,
            "description": {
                "fi": "Tervetuloa juhlistamaan somalialaista kulttuuria Vuotaloon!<br><br> Tapahtuman pääjärjestäjänä toimii Somalitoons yhteistyössä Kulttuurikeskus Vuotalo.<br><br> Somalitoons tuottaa somalinkielisiä opettavaisia piirrettyjä sekä äänikirjoja lapsille. Yksi Somalitoonsin päätavoitteista on edistää ja vahvistaa somalinkielistä lastenkulttuuria. Tätä tehdään mm. järjestämällä elokuva - ja kirjallisuustapahtumia lapsiperheille.<br><br><b>Ohjelma</b><br> klo 12–13<br> Somalitoonsin alkutervehdys<br> Aivotutkija, professori Minna Huotilaisen videoesitys kulttuurin merkityksestä lapsen kehitykselle<br><br> klo 13–16<br> Toiminnalliset pisteet lapsiperheille:<br> - buraanbur-kansallistanssin harjoittelua<br> - nonstop korupaja<br> - <strong>somalinkielinen satutuokio kirjaston lastenalueella klo 13, 13.30, 14, &amp; 14.30.</strong><br> - kasvomaalausta<br><br> klo 16–17.30<br> Somalinkielen yliopisto-opettaja Liban Ali Hersi - kuinka oppia somalinkieltä ja kehittää oman äidinkielen opiskelua.<br> Kiitospuheet<br> Animaationäytös alkaa! Vuotalon elokuvasalissa näytetään Somalitoonsin somalinkielelle dubbaama uusin animaatioelokuva!<br><br> Paikalla tapahtumassa<br> Musa M. Isse kirjailija, kutsuvieras Ruotsista (PERUTTU)<br> Tähti &amp; Kuu Books pienkustantamo<br> Shacni Aw-Musse &amp; Nasteho M. Hassan,<br> Ubadka Mustaqbalka<br> Nimco Noor opettaja, kirjailija<br> Abdijabbar Ismael, lastenkirjailija<br> Kulttuurin kummilapset ja Annantalo<br> Ateneum<br> Helmet - Monikielinen kirjasto<br> Naju Cosmetics - Halima Abokor<br><br> HUOM. Tilaisuudessa myynnissä paljon somalinkielisiä lastenkirjoja!<br><br> Tervetuloa mukaan! Vapaa pääsy!<br><br> Assalaamu aleikum!<br> Waxaan mar kale qabanqaabinaynnaa maalinka dhaqanka Soomaalida oo lagu qaban doono magaalada Helsinki. Waa maalinta sabtida ah 27.1.2024, saacadda 12.00-17.30.<br> Goobta munaasabaddaan lagu qaban doono waa Xarunta Dhaqanka ee Vuotalo (Kulttuurikeskus Vuotalo) oo cinwaankeedu yahay: Mosaiikkitori 2, 00980 Helsinki.<br><br> Isla munaasabbadaan oo kale ayaan hore ugu qabannay xarumaha kala ah: Malmintalo iyo maktabadda Oodi, labadaaas munaasabadod waxaa ka soo qaybgalay dad wadaratooda guud lagu qiyaasay 650 qof.<br><br> Haddaba waxaan dhammaantiin idiinku yeereynnaa inaad nagala soo qaybgashaan munaasabaddaan, taasoo aan ku muujinaynno dhaqanka soomaalida. Waxaa goobta lagu soo bandhigi doonnaa barnaamijyo kala duwan oo la xiriira dhaqanka iyo farahaxanka.<br> Qabanqaabinta guud ee munaasabadda waxaa si wadajir ah u samaynaaya Somalitoons iyo xarunta dhaqanka oo Vuotalo.<br><br> Somalitoons waxaa ay soo saaraan buugaag cod iyo kartoonno kooban oo loogu talaggalay in ilmaha yar ay afka ku bartaan.<br> Ahdaafta ugu waawayn ee Somalitoons waxaa ka mid ah in la horumariyo oo la xoojiyo dhaqanka carruurta Soomaaliyeed, waxaana hadafkaas lagu gaari karaa, iyadoo la qabto munaasabadaha noocaan oo kale ah ee ka kooban filimmada iyo munaasabadaha suugaanta ah, kuwaasoo loogu talagalay qoysaska carruurta leh.<br><br><b>Barnaamijka sabtida 27.1.2024 wa sidaan oo hoos ku qoron</b><br><br> Saacadda 12-13<br> Furitaan iyo salaan oo ka socda qabanqaabiyaasha Somalitoons.<br> Cilmibaare dhanka maskaxda ah, barfasoor Minna Huotilainen, (bandhig fiidoyoow) -<br> Muhiimadda dhaqanku u leeyahay horumarka korriinka iyo caafimaadka ee ilmaha.<br><br> Saacadda 13-16<br> Waxaa sidoo kale goobta ka dhici doona barnaamijyo waxqabad oo xiiso leh:<br> Buraanbur ayaa caruurta yar la baraa, sheekooyin ayaa af-soomaali loogu akhrinaa ah iyo waji midabayn oo caruurta loogu tala galey.<br><br> Saacadda 16.00<br> Bare luqadda soomaaliga ka dhiga Jaamacadda Helsinki.<br> Liban Ali Hersi – Sidee ayaad u baran kartaa islamarkaana u horumarin kartaa luqaddaada hooyo.<br> Ugu dambeyn mahadnaq, markaa ka dhib waxaa hoolka Vuotalo ee filimada loogu talaggalay ka bilaaban doona soo bandhigista filimada kaartoonka ah, kuwaasoo ay Somalitoons saareen cod luqadda soomaaliga ah.<br><br> Goobta waxaa lagu iibin doonaa buugaag badan oo kuwa carruurta ah oo ku qoran luqadda soomaaliga.<br> Ku soo dhowaada munaasabaddaan qiimaha badan!"
            },
            "name": {
                "fi": "Somalinkielinen kulttuuripäivä"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Satutuokiot kirjaston lastenalueella, muu ohjelma toisaalla Vuotalossa"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:279829/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:278723",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 7121,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-11T08:23:54.135861Z",
                    "last_modified_time": "2024-01-11T08:23:54.135878Z",
                    "url": "https://www.helmet.fi/download/noname/{9C2321D2-6E0C-4D95-8953-7D43DED7C8A4}/108599",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-11T08:23:54.113243Z",
            "last_modified_time": "2024-01-18T14:28:33.548471Z",
            "date_published": "2024-01-11T06:51:00Z",
            "start_time": "2024-01-22T06:00:00Z",
            "end_time": "2024-02-03T14: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,
            "short_description": {
                "fi": "Vantaan kaupunginkirjastossa etsitään pehmopresidenttiä lapsille ja perheille suunnatun toiminnan keulakuvaksi.",
                "sv": "Vanda stadsbibliotek söker en mjukispresident som galjonsfigur för verksamheten som riktar sig till barn och familjer. Valet ordnas i alla bibliotek i Vanda (förutom Mårtensdal) 22.1– 3.2.2024."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Vantaan kaupunginkirjastossa etsitään pehmopresidenttiä lapsille ja perheille suunnatun toiminnan keulakuvaksi. Vaalit järjestetään kaikissa Vantaan kirjastoissa (pl. Martinlaakso) 22.1.-3.2.2024. Myös molemmissa kirjastoautoissa voi äänestää. Ehdolla on viisi pehmolelua ja valitun pehmopresidentin virkakausi kestää vuoden 2024 loppuun. </p><p>Ehdolle asettuivat tiukan esikarsinnan jälkeen Aavikkokettu, Papukaija, Kameleontti, Rotta ja Siili. Pehmopresidentinvaalien taustalla on idea samaan aikaan pidettävien varsinaisten presidentinvaalien hyödyntämisestä niin, että vaalien kautta välitetään aina ajankohtaista demokratiakasvatusta lapsille ja vieläpä hauskalla tavalla. Samalla tavoitetaan niin perheitä kuin koululuokkia käyttämään kirjastoa. </p><p>Vaalien ensisijaisena kohderyhmänä toimivat lapsiperheet, varhaiskasvatusikäiset lapset sekä alakoululaiset. Ehdokkaille onkin tämä mielessä pitäen luotu tunnetaitojen opetteluun liittyvät vaalilauseet ja niiden nimissä kootaan äänestyspaikkojen yhteyteen kirjanäyttelyitä esimerkiksi kaveritaidoista ja tunnekasvatuksesta. Kuvakirjoista koostuvia kirjavinkkilistoja eri aiheista voi viedä myös mukanaan kotiin. Ketään ei myöskään käännytetä pois äänestyspaikalta, vaan yhtä lailla aikuinen voi äänestää omaa suosikkiaan kirjaston pehmopresidentiksi. </p><p>Vaalien voittaja julkaistaan helmikuussa ja tämä tulee näkymään Vantaan kaupunginkirjaston somessa ja kirjastoissa koko vuoden 2024 ajan. Työtehtäviä pehmopresidentille tuleekin riittämään, sillä luvassa on ainakin kesätöitä, TET-harjoittelupäivä, muiden ansioituneiden pehmojen kestitsemistä pehmopresidentin vastaanotolla sekä edustamista kirjaston tapahtumissa. </p><p>Pehmopresidenttiä voit äänestää omassa lähikirjastossasi sen aukioloaikojen mukaan. Äänestää voit sekä suomen että ruotsin kielellä.</p><p>Tervetuloa mukaan valitsemaan Vantaan kaupunginkirjaston ensimmäistä pehmopresidenttiä! </p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Tikkurilan_kirjasto/Juttuja_kirjastosta/Pehmopresidentinvaalien_ehdokkaat_esitte(279470)\">Tarkemmat esittelyt ehdokkaista löydät täältä.</a> </p><p>Lisätietoja: <a href=\"mailto:pauliina.eriksson@vantaa.fi\">pauliina.eriksson@vantaa.fi</a> tai +358 403 585 704 </p>",
                "sv": "<p>Vanda stadsbibliotek söker en mjukispresident som galjonsfigur för verksamheten som riktar sig till barn och familjer. Valet arrangeras i alla bibliotek i Vanda (förutom Mårtensdal) 22.1– 3.2.2024. Det går att rösta också i de båda bokbussarna. Fem mjukisdjur är nominerade och mandatperioden för den valda mjukispresidenten varar till slutet av år 2024.</p><p>Efter en tuff förhandsgallring kandiderar Ökenräven, Papegojan, Kameleonten, Råttan och Igelkotten. Valet av en mjukispresident baserar sig på idéen att använda det egentliga presidentvalet som hålls samtidigt till en alltid aktuell demokratifostran för barn och dessutom göra det på ett roligt sätt. Samtidigt försöker man få både familjer och skolklasser att använda sig av biblioteket.</p><p>Den huvudsakliga målgruppen för valet är barnfamiljer, barn i åldern för småbarnspedagogik samt lågstadieelever. Med tanke på detta har kandidaterna fått valslogans som hänför sig till emotionella färdigheter och på röstningsställena kommer det att finnas bokutställningar som passar mjukiskandidaternas personlighet och slogans, till exempel om kompisfärdigheter och känslofostran. Man kan också ta med sig boklistor hem med tips på bilderböcker om olika ämnen. Ingen avvisas från röstningsstället, utan en vuxen kan likaså rösta på sin favorit till mjukispresident för biblioteket.</p><p>Vinnaren i valet offentliggörs i februari och detta kommer att synas i Vanda stadsbiblioteks sociala medier och bibliotek under hela 2024. Mjukispresidenten kommer att ha gott om arbetsuppgifter, eftersom den åtminstone utlovas sommarjobb, en PRAO-dag, traktering av andra mjukisar på mjukispresidentens mottagning, samt representation vid bibliotekets evenemang.</p><p>Du kan rösta på mjukispresidenten i ditt eget närbibliotek enligt öppettiderna. Du kan rösta både på finska och svenska. Välkommen med för att välja Vanda stadsbiblioteks första mjukispresident!</p><p>Närmare information: pauliina.eriksson@vantaa.fi eller +358 403 585 704</p>"
            },
            "name": {
                "fi": "Pehmopresidentinvaalit Vantaan kirjastoissa",
                "sv": "Mjukispresidentval"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278723/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271253",
            "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:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 7232,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-17T16:25:06.051149Z",
                    "last_modified_time": "2024-01-17T16:25:06.051169Z",
                    "url": "https://www.helmet.fi/download/noname/{E0CE0B6E-15FA-4565-A78B-B84DA51A0E99}/108763",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7232/?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-23T15:21:41.589391Z",
            "last_modified_time": "2024-01-17T16:25:06.078527Z",
            "date_published": "2024-01-17T15:20:00Z",
            "start_time": "2024-02-03T11:00:00Z",
            "end_time": "2024-02-03T13: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,
            "short_description": {
                "fi": "Tervetuloa runoaiheiseen perhelauantaihin loruttelemaan ja riimittelemään."
            },
            "info_url": null,
            "description": {
                "fi": "Kevään ensimmäisessä perhelauantaissa lorutellaan ja riimitellään. Tule kokeilemaan ihmeellistä Runomaattia, ratkomaan runopalapeliä ja askartelemaan oma kollaasirunosi vaikkapa ystävänpäiväkorttiin. <br><br> Juhlistamme Kirsi Kunnaksen 100-vuotisjuhlavuotta runonäyttelyllä ja lukemalla hänen rakastettuja lastenrunojaan yhteisessä lorutuokiossa klo 13 alkaen."
            },
            "name": {
                "fi": "Perhelauantai: Runopäivä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271253/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}