Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 18629,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=193",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=191"
    },
    "data": [
        {
            "id": "espoo_le:aghoc4oku4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:tapiontori_1_espoo/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-08T06:31:17.369271Z",
            "last_modified_time": "2024-04-15T09:09:27.141020Z",
            "date_published": "2024-04-08T06:19:00Z",
            "start_time": "2024-04-30T12:00:00Z",
            "end_time": "2024-04-30T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tapiolan keskustassa Heikki Von Hertzenin aukiolla. Tervetuloa mukaan!"
            },
            "provider": {
                "fi": "Tapiolan kilta"
            },
            "location_extra_info": {
                "fi": "Heikki von Hertzenin aukio"
            },
            "info_url": null,
            "name": {
                "fi": "Tapiolan Vapun avaus"
            },
            "description": {
                "fi": "<p>Ohjelmaa koko perheelle veijareista vaariin!</p><p>Lavalla<br>15.00–15.30 Retuperän WBK<br>15.30–16.15 Lastenyhtye Orffit<br>16.15–16.45 Shit Kickers, Sinfonietan kantriryhmä<br>16.45–17.00 Kaupunginjohtajan vapputervehdys<br>17.00–17.15 Häikäistyneen lasitus ja Helmet-kvartetin patsastervehdys<br>17.15– Neuvosto ja the Voice of finland -23 voittaja Onni Kivipelto</p><p>Paikalla myös Elämysauto Välkky, Pomppulinna, Tapiolan Lämmön työkone ja Partiolaisten hauska hedelmäpeli!</p><p>Bunitin herkullisia Bao buneja, Pullabilin herkkuja, Killan minihodareita, mehua ja hattaroita, Bernard Massard -kuohuviiniä, lettuja...</p><p>Yhteistyössä: Tapiolan kilta ry, Tapiolan kirjasto, Elämysauto Välkky, Tapiola Toimii ry, mikrofonikauppa.fi, Tapiolan Lämpö, Asuntosäätiö.</p><p>#vappu #tapiola</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oku4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63216",
            "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:104/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 41711,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-28T08:13:09.581756Z",
                    "last_modified_time": "2024-03-28T08:13:09.581769Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746094.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/41711/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-28T08:13:09.561435Z",
            "last_modified_time": "2024-04-15T07:14:00.896491Z",
            "date_published": null,
            "start_time": "2024-04-24T14: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "CaisaKallio esittää!"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D7C1E1F7B4C138FABEB9BD2D742E5742/CaisaKallio_esittaa_Puheilmaisun_lopputoita"
            },
            "name": {
                "fi": "CaisaKallio esittää: Puheilmaisun lopputöitä – Caisan ja Kallion lukion yhteinen taidefestivaali"
            },
            "description": {
                "fi": "<p>CaisaKallio esittää!</p><p>CaisaKalliossa nähdään keskiviikkona puheilmaisun oppiaineen lopputöitä. Pääosin itsenäisesti työstettävä lopputyö on opiskelijoille mahdollisuus näyttää osaamistaan ja kokeilla siipiensä kantavuutta taiteellisen produktion valmistamisessa.</p><p>CaisaKalliossa nähtävät lopputyöt:</p><p><b>Ines Koponen</b>: Liukuportaissa<br>Liukuportaissa ehtii tapahtua kaikenlaista. Liukuportaat vievät paikasta toiseen ja niissä voi seistä yksin tai seurassa.</p><p><b>Pihla Koski Järvinen:</b> Calluna Vulgaris (s.) Kanerva (kanervakasvit, ericaceae)<br>Tieteelliset määritelmät:<br>1. Persoonaton autofiktiivinen konsepti (ystävä, amicus), yliajattelun yliannostus, platonisen rakkauden, metatason huolenpidon ja hämmennyksen ylitsepääsemätön rypeämä. <br>2. Suomessa elinvoimainen puuvartinen ikivihreä varpu (10–15cm, Wikipedia).</p><p><b>Elias Kuokkanen ja Anna Majamaa:</b> Kaverikoru<br>Mietitkö koskaan, onko jollain vielä tallessa toinen puoli siitä sydämenmuotoisesta kaverikorusta, jota pidit kaulassa jokaisena ala-asteen päivänä? Tai että muistaako joku muukin vielä sen kolmosluokalla kehitetyn salakielen? Kaverikoru kertoo lapsuuden ystävyyssuhteista ja siitä, miten pienelle lapselle maailmassa ei ollut mitään tärkeämpää kuin ensimmäinen paras kaveri.</p><p><b>Iris Kässi:</b> Loppujen lopuksi<br>Kun kiipee Skybariin viimestä kertaa ja jäävuorisalaattiin sekottuu kyyneleitä. Kun penkkarirekka kiitää kohti maailmanloppua. Kun kaikki aamut on avattu ja edessä ammottaa tyhjyys, on jäljellä tasan yks ratkasu. Täytyy koko helvetin herkän teinisielun vimmalla kirjottaa päiväkirjan sivut rikki ja puhua ittensä pyörryksiin. Loppujen lopuksi ei jää enää mitään sanottavaa.</p><p>Tervetuloa nauttimaan vaikuttavasta puhetaiteesta!<br>Ole ajoissa, paikkoja on rajoitetusti.</p><p><b>CaisaKallio</b><br>Tarvitsetko piristystä tähän harmaaseen arkeen? Oletko aina unelmoinut pääseväsi kokemaan maailmasi mullistavan taide-elämyksen?</p><p>Nyt on tilaisuutesi sukeltaa taiteen maailmaan nuorten taiteilijoiden johdattelemana. Kallion lukion taiteenopiskelijat herättävät kulttuurikeskus Caisan tilat henkiin mahtavilla esityksillään. Luvassa on musiikkia, puhetaidetta, lyhytelokuvia, sekä tanssia. Tätä et halua missata!</p><p>Kaikkiin CaisaKallio -viikon tapahtumiin on vapaa pääsy, lämpimästi tervetuloa mukaan!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63216/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4ol4u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150332,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-11T09:41:40.744593Z",
                    "last_modified_time": "2024-04-11T09:41:40.744614Z",
                    "name": "MLL-Perhekahvila",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/MLL.Perhekahvila.PNG",
                    "cropping": "56,0,894,839",
                    "photographer_name": "MLL",
                    "alt_text": "Äidit ja lapset lukevat yhdessä kirjoja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150332/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-04-15T06:06:32.826795Z",
            "last_modified_time": "2024-04-15T06:06:32.826840Z",
            "date_published": "2024-04-15T07:05:41.378000Z",
            "start_time": "2024-04-17T06:30:00Z",
            "end_time": "2024-04-17T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!"
            },
            "provider": {
                "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys"
            },
            "location_extra_info": {
                "fi": "Perhealue"
            },
            "info_url": null,
            "name": {
                "fi": "MLL-perhekahvila"
            },
            "description": {
                "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ol4u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63200",
            "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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12337,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T09:19:03.701768Z",
                    "last_modified_time": "2024-03-14T09:19:03.701791Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745337.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12337/?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": "2024-03-14T09:19:03.676198Z",
            "last_modified_time": "2024-04-14T10:13:01.537477Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tuo taaperosi pomppimaan!"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B36C9C577BD370B624D2BAB5F452C028/Pomppulinna"
            },
            "name": {
                "fi": "Pomppulinna – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Tuo taaperosi pomppimaan!</p><p>Pehmeitä pyllähdyksiä, värikästä vilinää ja iloisia pomppuja. Pienperheyhdistys mahdollistaa Vaippakarnevaalien pomppulinnan, joka riemastuttaa takuulla jokaista liikehtivää taaperoa.</p><p>Pomppiminen on tehokasta liikehdintää, joka vahvistaa lasten lihaksia ja kehittää motorisia taitoja, samalla kun se tarjoaa iloa ja hauskuutta lapsen liikkeeseen. Pomppulinnassa temmeltäessä askel on kevyt ja ilmava, ja myös uusia kavereita voi löytää!</p><p>Pomppulinna löytyy Malmitalon kokoushuone 2:sta.</p><p>Vapaa pääsy</p><p>Pomppulinnan Vaippikseen tarjoaa Pienperheyhdistys.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63200/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63196",
            "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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/vaippakansan-karnevaalit/#calendar-start=2024-04",
                        "sv": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/#calendar-start=2024-04",
                        "en": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/#calendar-start=2024-04"
                    },
                    "price": {
                        "fi": "5 € per työpaja / esitys, sis. lapsi + aikuinen",
                        "sv": "5 € per työpaja / esitys, sis. lapsi + aikuinen",
                        "en": "5 € per työpaja / esitys, sis. lapsi + aikuinen"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12147,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T14:14:03.091503Z",
                    "last_modified_time": "2024-03-13T14:14:03.091522Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745863.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12147/?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": "2024-03-13T14:14:03.047526Z",
            "last_modified_time": "2024-04-14T07:13:01.540226Z",
            "date_published": null,
            "start_time": "2024-04-14",
            "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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!",
                "sv": "Barnens och småbarnens egen festival, Blöjfolkets karneval, kommer igen!",
                "en": "Babies and toddlers’ very own Carnival for Diaper People is back!"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/03DB535DCE8BED78EC3DD1BB75355C3D/Vaippakansan_karnevaali",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/03DB535DCE8BED78EC3DD1BB75355C3D/Blojfolkets_karneval",
                "en": "http://www.malmitalo.fi/en/events/event/03DB535DCE8BED78EC3DD1BB75355C3D/Carnival_for_Diaper_People"
            },
            "name": {
                "fi": "Vaippakansan karnevaali",
                "sv": "Blöjfolkets karneval",
                "en": "Carnival for Diaper People"
            },
            "description": {
                "fi": "<p>Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!</p><p>Malmitalo saa taaperot tanssimaan ja kannustaa kurottelemaan kohti kulttuuria, kun talo täyttyy vauvaikäisille suunnatuista työpajoista, musiikista, esityksistä ja muusta vauvaikäisille sopivasta ohjelmasta.</p><p>Nappaa siis pienokaiset kainaloon, olalle tai kantoon ja rullaa rattaasi huhtikuussa Malmitalolle! Ohjelmaa on tarjolla myös maksuttomana.</p><p>Tämän vuoden Vaippiksen teemana on kiehtova vedenalainen maailma, jossa vedelliset aistimukset tervehtivät pienokaisiasi, samalla ohjaten heidät taiteen maailmaan erilaisten aktiviteettien ja ohjelman kautta. Talosta löydät myös värikkään pomppulinnan, joka kutsuu pieniä pomppimaan ja nauttimaan liikkeestä.</p><p>Ei huolta, jos nälkä yllättää tai tarvitset pientä hengähdystaukoa tällä seikkailullasi! Ravintola Zoppa palvelee koko tapahtuman ajan ja tarjoaa herkullista ruokaa niin aikuisille kuin taaperoillekin. Löydät Zoppasta runsaan lounasvalikoiman ja pientä purtavaa monenlaiseen nälkään.</p><p>Huom! Lastenvaunut ja rattaa tulee jättää Malmitalon edustalla sijaitsevaan vartioituun vaunuparkkiin. Varaathan mukaasi kantovälineen tarvittaessa.</p><p><b>Vaippiksen ohjelma klo 10-14</b></p><p>klo 10:15<br>Veden äärellä - Lammikon tohinaa taaperoille -runoesitys<br>Kirjaston monitoimitila, vapaa pääsy</p><p>klo 11 <br>Veden äärellä - Runopulahdus vauvoille -runoesitys <br>Kirjaston monitoimitila, vapaa pääsy</p><p>klo 10–14<br>Vedenalainen maailma: tehdään vesiotuksia tiskirättiin<br>Nonstop-työpaja, vapaa pääsy</p><p>klo 10–13<br>Keltainen hihitys -aistitila<br>Kokoushuone 3<br>Ohjatut taidetuokiot klo 10, 10:40, 11:20, 11:40, 12  ja 12:40<br>Vapaa pääsy, ilmaislippuja jaetaan klo 9:45 alkaen</p><p>klo 10–14<br>Pomppulinna<br>Kokoushuone 2, vapaa pääsy</p><p>klo 10–14<br>Lastentarvikekirppis<br>Malmitalon aula, vapaa pääsy<br>Vaippakansan karnevaalien kirpputoria koordinoi Mannerheimin Lastensuojeluliiton Malmin yhdistys. Vanhempaintoimikunnat ovat tervetulleita myymään. Vanhempaintoimikunnat voivat ottaa yhteyttä Elina Lappalaiseen WhatsAppin tai puhelimen välityksellä 0503552778.</p><p>klo 10–14<br>Onni on olla -näyttely ja leikkitila<br>Malmitalon galleria, vapaa pääsy</p><p>klo 11 ja klo 13<br>Lastenmusiikkiorkesteri Leimu: ”Pidä lujasti kiinni!”<br>Malmisali, vapaa pääsy</p><p>klo 11 ja 13.30<br>AEIOU: Vedet<br>Pieni sali, lippu 5 € (sis. lapsi + aikuinen-pari)</p><p><b>Työpajat</b></p><p>klo 10, 11, 12, 13<br>Vauvojen värikylvyt<br>Taideluokka 3<br>Ikäsuositukset: klo 10 ja klo 13 värikylvyt: 6-18 kk lapsille,<br>klo 11 ja 12 värikylvyt: 18-24 kk lapsille<br>Pajan kesto 45 min<br>Liput 5 € (sis. lapsi + aikuinen)</p><p>klo 10, 11, 12:15 ja 13:15<br>Vauva- ja taaperosirkustyöpajat<br>Tanssisali, liput 5 € (sis. lapsi + aikuinen)</p><p>klo 10 ja 11<br>Muskarit<br>Musiikkiluokka<br>Ikäsuositus: 6-18 kk lapsille aikuisen kanssa<br>Muskarin kesto noin 30 min<br>Lippu 5 €  (sis. lapsi + aikuinen)</p>",
                "sv": "<p>Barnens och småbarnens egen festival, Blöjfolkets karneval, kommer igen!</p><p>På Malms kulturhus får vi småbarnen att dansa och sträcka sig mot kulturen, då huset fylls av workshoppar, musik, föreställningar och annat lämpligt program som riktar sig till bebisar.</p><p>Ta småttingarna med och styr barnvagnen mot Malms kulturhus i april! Även avgiftsfritt program erbjuds.</p><p>Årets tema är den fascinerande undervattensvärlden. I huset hittar du även en färgglad hoppborg, som lockar de små att hoppa och njuta av rörelse.</p><p>Restaurang Zoppa betjänar under hela evenemanget och bjuder på läcker mat både för vuxna och småbarn. I Zoppa hittar du ett rikligt utbud av lunchmåltider och litet tilltugg för olika nivåer av hunger.</p><p><b>Program kl 10-14</b></p><p>kl. 10<br>Vid vattnet – Dammens sus-diktföreställning för småbarn<br>Dikterna framförs på finska.<br>Plats: Bibliotekets allaktivitetslokal, fritt inträde</p><p>kl. 11<br>Vid vattnet – Diktdykning för bebisar-diktföreställning<br>Dikterna framförs på finska.<br>Plats: Bibliotekets allaktivitetslokal, fritt inträde</p><p>kl. 10–14<br>Undervattensvärlden: vi skapar underliga vattendjur i en disktrasa<br>Skapa en skojig disktrasa med vattendjur på äventyr tillsammans med din småtting. <br>8 småbarn-vuxenpar får plats på en gång i workshoppen och man kommer i turen genom att köa på plats.<br>Plats: Balkongen i Malms kulturhus<br>Fritt inträde</p><p>kl. 10–13<br>Sinnesutrymmet Keltainen hihitys (Det gula fnittret)<br>Sinnesutrymmet Keltainen hihitys leder hela familjen till färgernas och lekens glädje! Får gult dig att hoppa? Var bor det gula?<br>Nonstop-workshopp med 20 minuters mellanrum<br>Avgiftsfri, gratisbiljetter till workshopparna delas ut från kl. 9:45.<br>Plats: Mötesrum 3</p><p>kl. 10–14<br>Hoppborg<br>Stegen är lätta och luftiga då vi tumlar om i hoppborgen, och kanske man även hittar nya kompisar!<br>Plats: Mötesrum 2, fritt inträde</p><p>kl. 10–14<br>Loppis för barntillbehör<br>Foajén i Malms kulturhus, fritt inträde</p><p>kl. 10–14<br>Utställningen Onni on olla (Lyckan att vara) och lekutrymme<br>Galleriet i Malms kulturhus, fritt inträde</p><p>kl. 11 och kl. 13<br>Barnmusikorkestern Leimu: ”Pidä lujasti kiinni!” (Håll hårt i)<br>På konserten åker vi på äventyr i en varmluftsballong omkring världen och bekantar oss med olika djur och deras kunskaper.<br>Malmsalen, fritt inträde</p><p>kl. 11 och 13.30<br>AEIOU: Vedet (Vatten)<br>Vedet är levande musik, dockteater och cirkus. Föreställningen sker ovan om och omkring publiken, och är icke-verbal.<br>Lilla salen, biljett 5 € (per barn+vuxen)</p><p><b>Workshoppar</b><br>kl. 10, 11, 12, 13 <br>Färgbad för bebisar<br>Kom med och bada i färger och lär din baby fler sätt att uttrycka sig själv på ett skapande och lekfullt sätt!<br>Färgbad för bebisar varje heltimme, det vill säga kl. 10, 11, 12 och 13.</p><p>Åldersrekommendationer: <br>workshopparna kl. 10 och 13 lämpar sig bäst för 6–18 mån. gamla barn<br>workshopparna kl. 11 och 12 lämpar sig bäst för 18–24 mån. gamla barn</p><p>Workshoppens längd 45 min<br>Plats: Konstklass 3<br>Biljetter 5 € / barn + vuxen</p><p>kl. 10, 11, 12:15 och 13:15<br>Cirkusworkshoppar för bebisar och småbarn<br>Kom med och upplev cirkuskonstens tjusning med din baby eller ditt småbarn!</p><p>Cirkusworkshoppar i danssalen vid Malms kulturhus kl. 10, 11, 12:15 och 13:15</p><p>Åldersrekommendationer:<br>workshopparna kl. 10 och 13:15 lämpar sig bäst för 6–18 mån. gamla barn<br>workshopparna kl. 11 och 12:15: lämpar sig bäst för 18–24 mån. gamla barn</p><p>Workshoppens längd är 45 min<br>Plats: Danssalen<br>Biljetter 5 € (inklusive barn + vuxen)</p><p>kl. 10 och 11<br>Musikskola för bebisar<br>I musikklassen klingar sångerna och barnen får utforska musikens förtrollande värld tillsammans med en musiklärare.<br>Åldersrekommendation: 6–18 mån. gamla barn i sällskap av en vuxen<br>Musikskolans längd är cirka 30 min.<br>Plats: Musikklassen<br>Biljetter 5 € (inklusive barn + vuxen)</p><p>kl. 10–14<br>Utställningen Onni on olla (Lyckan att vara) och lekutrymme<br>Onni on olla är en utställning och ett lekutrymme för 2–8-åringar. Utställningen baserar sig på Sanna Pelliccionis bildboksserie ONNI som utkom år 2007.</p><p>Plats: Galleriet i Malms</p>",
                "en": "<p>Babies and toddlers’ very own Carnival for Diaper People is back!</p><p>Malmitalo gets toddlers to dance and reach for culture, when the cultural centre fills up with young children’s workshops, music, performances and other programming for young children.<br>So, grab your little ones and roll your pram up to Malmitalo in April!</p><p>We have events that are free of charge, as well.<br>This year’s theme is the fascinating underwater world. We also have a colourful bouncy castle for the little ones to bounce around and enjoy some physical activity.</p><p>Restaurant Zoppa will be open for the entire event with delicious food for both the adults and toddlers. Zoppa sells a wide variety of lunches as well as snacks when you’re feeling peckish.</p><p><b>Programme at 10 am to 2 pm</b></p><p>10 am<br>Veden äärellä - Lammikon tohinaa (poetry reading for toddlers)<br>Poetry reading session for toddlers, in Finnish.<br>Place: The library's multifunctional space, free of charge</p><p>11 am<br>Veden äärellä - Runopulahdus (poetry reading for babies)<br>Poetry reading session for babies, in Finnish.<br>Place: The library's multifunctional space, free of charge</p><p>10 am–2 pm<br>Underwater world: imprinting water creatures on dishrags<br>Make a fun dishrag that has water creatures on it with your toddler.  The workshop has spaces for 8 adult-child pairs at once, line up for a ticket at the entrance.<br>Place: Malmitalo gallery<br>Free of charge</p><p>10 am–1 pm<br>Keltainen hihitys sensory space<br>The Keltainen hihitys sensory space introduces the whole family to the joy of colours and play! Does the colour yellow make you bounce? Where does yellow live?<br>Nonstop workshop, every 20 minutes<br>Admission is free, workshop tickets are given out from 9:45 am<br>Place: Meeting room 3</p><p>10 am–2 pm<br>Bouncy castle<br>Lighten your steps and catch some air at the bouncy castle – maybe even find new friends!<br>Place: Meeting room 2, free of charge</p><p>10 am–2 pm<br>Flea market for children’s accessories<br>Malmitalo lobby, free of charge</p><p>10 am–2 pm<br>Onni on olla (Happiness is to Be) exhibition and playroom<br>Malmitalo art gallery, free of charge</p><p>11 am–13 pm<br>Children's music orchestra Leimu: “Pidä lujasti kiinni!” (Children’s music)<br>This concert is all about going on an adventure on a hot-air balloon and getting to know various animals and their skills.<br>Malmisali, free of charge</p><p>11 am and 1:30 pm<br>AEIOU: Vedet<br>Vedet (Water) is a live music, puppet theatre and circus performance. This non-verbal show happens above and around the audience.<br>Small hall, tickets €5 (for an adult + child pair)</p><p><b>Workshops</b><br>10 am, 11 am, 12 noon and 1 pm <br>Colour baths for babies<br>Bathe in colour and teach your baby more ways of playful and creative expression!</p><p>Colour baths every hour at. 10 am, 11 am, 12 noon, and 1 pm.<br>Age recommendations: <br>Workshops at 10 am and 1 pm are suited for children aged 6–18 months<br>Workshops at 11 am and 12 noon are suited for children aged 18–24 months</p><p>Workshop duration: 45 min<br>Place: Art room 3<br>Tickets €5 / adult + child</p><p>10 am, 11 am, 12:15 pm and 1:15 pm<br>Circus workshops for babies and toddlers<br>Experience enchanting circus art with your baby or toddler!</p><p>Circus workshops at the Malmitalo dance hall at 10 am, 11 am, 12:15 pm and 1:15 pm</p><p>Age recommendations:<br>Workshops at 10 am and 1:15 pm are suited for children aged 6–18 months<br>Workshops at 11 am and 12:15 pm are suited for children aged 18–24 months</p><p>Workshop duration: 45 min<br>Place: Dance hall<br>Tickets €5 (incl.  adult + child)</p><p>10 am and 11 am<br>Music playschool for babies<br>In the music classroom, children get to listen to songs and explore the magical world of music with a music teacher.<br>Age recommendation: For children aged 6–18 months with an adult<br>Music playschool duration approx. 30 min<br>Place: Music classroom<br>Tickets €5 (incl.  adult + child)</p><p>10 am–2 pm<br>Onni on olla (Happiness is to Be) exhibition and playroom<br>Happiness is to Be is an exhibition and play space for children aged 2 to 8 years. It is based on Sanna Pelliccioni’s Onni picture book series that ha</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63196/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61841",
            "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:31/?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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?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/malmijazz/malmijazz-sylvain-rifflet-verneri-pohjola-3561894/",
                        "sv": "https://www.lippu.fi/artist/malmijazz/malmijazz-sylvain-rifflet-verneri-pohjola-3561894/",
                        "en": "https://www.lippu.fi/artist/malmijazz/malmijazz-sylvain-rifflet-verneri-pohjola-3561894/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6971,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-03T13:13:17.462224Z",
                    "last_modified_time": "2024-02-06T13:23:35.021789Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733106.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6971/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-03T13:13:17.416580Z",
            "last_modified_time": "2024-04-13T12:12:59.651079Z",
            "date_published": null,
            "start_time": "2024-04-16T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sukupolvensa ylistetyimpiin ranskalaismuusikoihin lukeutuva Sylvain Rifflet tuo Suomeen kvartettinsa, jonka solistina kiertueella kuullaan trumpetisti Verneri Pohjolaa.",
                "sv": "Den franska musikern Sylvain Rifflet räknas bland de mest lovprisade musikerna i sin generation. På Finlandsturnén har han med sig sin kvartett och trumpetisten Verneri Pohjola som solist.",
                "en": "One of the most prominent French musicians of his generation, Sylvain Rifflet, brings his quartet to Finland, whose soloist for the show will be trumpetist Verneri Pohjola."
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/531E914E0A7EBAC4ADD3D1E119F9ACCF/LOPPUUNMYYTY_Sylvain_Rifflet_Verneri_Pohjola",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/531E914E0A7EBAC4ADD3D1E119F9ACCF/UTSALD_Sylvain_Rifflet_Verneri_Pohjola",
                "en": "http://www.malmitalo.fi/en/events/event/531E914E0A7EBAC4ADD3D1E119F9ACCF/SOLD_OUT_Sylvain_Rifflet_Verneri_Pohjola"
            },
            "name": {
                "fi": "LOPPUUNMYYTY: Sylvain Rifflet & Verneri Pohjola – MalmiJazz",
                "sv": "UTSÅLD: Sylvain Rifflet & Verneri Pohjola – MalmiJazz",
                "en": "SOLD OUT: Sylvain Rifflet & Verneri Pohjola – MalmiJazz"
            },
            "description": {
                "fi": "<p>Sukupolvensa ylistetyimpiin ranskalaismuusikoihin lukeutuva Sylvain Rifflet tuo Suomeen kvartettinsa, jonka solistina kiertueella kuullaan trumpetisti Verneri Pohjolaa.</p><p>Konsertissa ohjelmassa on Rifflet’n omille ”ikonisille enkeleille” omistettuja kappaleita. Inspiraation lähteinä musiikille ovat toimineet mm. amerikkalaiset modernistit Steve Reich, Terry Riley, Philip Glass, laulaja, aktivisti Abbey Lincoln ja kirjailija James Baldwin.</p><p>”Cake Walk from a Spaceship” on Pohjolalle omistettu sävellys sekä keväällä 2022 Eclipse Recordsin Suomessa julkaiseman albumin nimi.</p><p>Trumpetisti-säveltäjä Verneri Pohjola on luonut viimeisen parinkymmenen vuoden aikana ainutlaatuisen soittotyylin, jonka tunnistaa ensi kuulemalta. Hänen soitossaan hehkuvat lämpö, rauhallisuus sekä vahva ja ilmeikäs improvisaatio.</p><p>Vuodesta 2012 Rifflet’n kanssa yhteistyötä tehnyt Pohjola kuvailee häntä näin: ”Sylvain on todella kunnianhimoinen taiteilija, joka pyrkii aina esittämään taidettaan korkeimmalla mahdollisella integriteetillä ja tarjoamaan yleisölle jotain mitä he eivät ole aiemmin kuulleet. Saksofonistina hänellä on todella ainutlaatuinen tenorisoundi, lähes hypnoottinen. Hän on virtuoosi, mutta ei koskaan itsetarkoituksellisesti”.</p><p><b>Sylvain Rifflet</b> tenorisaksofoni, shruti box, klarinetti, sävellykset <br><b>Verneri Pohjola</b> trumpetti, elektroniikka <br><b>Csaba Palotaï</b> kitara <br><b>Benjamin Flament</b> lyömäsoittimet</p><p>Kesto 1h 15min.</p><p>Kiertueen tuotanto: Vapaat äänet<br>Kiertueetta tukevat: Ranskan Instituutti Suomessa, AJC, Adami, Spedidam</p>",
                "sv": "<p>Den franska musikern Sylvain Rifflet räknas bland de mest lovprisade musikerna i sin generation. På Finlandsturnén har han med sig sin kvartett och trumpetisten Verneri Pohjola som solist.</p><p>Den franska saxofonisten, klarinettisten, kompositören och improvisatören Sylvain Rifflet räknas bland de mest lovprisade musikerna i sin generation. På Finlandsturnén har han med sig sin kvartett och trumpetisten Verneri Pohjola som solist.  Konsertprogrammet inkluderar låtar som Rifflet har tillägnat sina ”ikoniska änglar”. Musiken har inspirerats av bland annat de amerikanska modernisterna Steve Reich, Terry Riley, Philip Glass, sångaren, aktivisten Abbey Lincoln och författaren James Baldwin. ”Cake Walk from a Spaceship” är ett musikverk tillägnat Norden och också namnet på det album som Eclipse Records släppte i Finland 2022.</p><p>Trumpetisten och kompositören Verneri Pohjola har under de senaste tjugo åren skapat en unik spelstil som går att känna igen från de första noterna. Hans spelande präglas av värme, lugn och stark och själfull improvisation. Pohjola har samarbetat med Rifflet sedan 2012, och beskriver honom så här: ”Sylvain är en verkligt ambitiös konstnär som alltid strävar efter att framföra sin konst med den största möjliga integriteten och erbjuda publiken något de aldrig har hört förut. Som saxofonist har han ett verkligt unikt, nästan hypnotiskt tenorsound. Han är en virtuos, men aldrig som ett självändamål”.</p><p>Sylvain Rifflet tenorsaxofon, shruti box, klarinett, komposition<br>Verneri Pohjola trumpet, elektronik<br>Csaba Palotaï gitarr<br>Benjamin Flament slagverk</p><p>Längd: 1h 15min.</p><p>Turnéns produktion:  Vapaat äänet<br>Turnén stöds av: Franska institutet i Finland, AJC, Adami, Spedidam</p>",
                "en": "<p>One of the most prominent French musicians of his generation, Sylvain Rifflet, brings his quartet to Finland, whose soloist for the show will be trumpetist Verneri Pohjola.</p><p>The concert programme will feature dedicated pieces to Rifflet’s own ‘iconic angels’. His inspirations include American modernists Steve Reich, Terry Riley, Philip Glass, singer-activist Abbey Lincoln and writer James Baldwin.</p><p>‘Cake Walk from a Spaceship’ is a composition dedicated to Pohjola, as well as the name of his 2022 album, which was released in Finland by Eclipse Records.</p><p>Trumpetist-composer Verneri Pohjola has, in the past two decades, created a unique style of music that stands out whenever you hear it. His music exudes warmth, a sense of calm and strong, expressive improvisation. Pohjola, who’s worked with Rifflet since 2012, describes him as such: “Sylvain is an incredibly ambitious artist, who aims to present his art at the highest possible level of integrity and provide his audiences with something that they’ve never heard before. As a saxophone player, his tenor is very unique, it’s almost hypnotic. He is a virtuoso, but never just for the sake of it.”</p><p>Sylvain Rifflet tenor saxophone, shruti box, clarinet, composition<br>Verneri Pohjola trumpet, electronics<br>Csaba Palotaï guitar<br>Benjamin Flament percussion</p><p>Duration: 1 hr. 15 mins.</p><p>Tour production: Vapaat äänet<br>Tour sponsors: Institute of France in Finland, AJC, Adami, Spedidam</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61841/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63354",
            "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:31/?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"
                }
            ],
            "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/helsingin-kulttuurikeskus-vuotalo/kurdiartisti-dilniya-rezazin-konsertti-3631848/"
                    },
                    "price": {
                        "fi": "33,50 € / 28,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 131897,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-12T13:13:01.948609Z",
                    "last_modified_time": "2024-04-12T13:13:01.948626Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746554.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/131897/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-12T13:13:01.902755Z",
            "last_modified_time": "2024-04-12T13:13:02.002137Z",
            "date_published": null,
            "start_time": "2024-04-19T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Korkeatasoisesta musiikista tunnettu kurdiartisti Dilniya Rezazî saapuu Suomeen ensimmäistä kertaa."
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2B645D730E126AA8987A8EFAD696F04D/Kurdiartisti_Delniya_Rezazin_konsertti"
            },
            "name": {
                "fi": "Kurdiartisti Delniya Rezazin konsertti – Kurdimusiikkia huipulta!"
            },
            "description": {
                "fi": "<p>Korkeatasoisesta musiikista tunnettu kurdiartisti Dilniya Rezazî saapuu Suomeen ensimmäistä kertaa.</p><p>Konsertin ohjelmassa on sekä perinteistä että uutta kurdimusiikkia. Ohjelma juonnetaan suomeksi ja kurdiksi. Lämpimästi tervetuloa mukaan!</p><p>Kesto noin 3h. 45 min, väliaika on</p><p>Järj. Suomen Kurdiliitto</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4omgy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omaa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omdq/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2024-04-12T12:37:55.166518Z",
            "last_modified_time": "2024-04-12T12:37:55.166632Z",
            "date_published": "2024-04-12T12:55:17.114000Z",
            "start_time": "2024-04-26T13:00:00Z",
            "end_time": "2024-05-03T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kirjoitusklubi on nuorten järjestämä, 7-14-vuotiaille nuorille tarkoitettu kerho.\n\nKielinä suomi ja englanti.",
                "sv": "Skrivklubb är en klubb för ungdomar i åldern 7-14 år, organiserad av ungdomar.\n\nSpråken är finska och engelska.",
                "en": "The Writing Club is a club for young people aged 7-14, organised by young people.\n\nThe languages are Finnish and English."
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": null,
            "name": {
                "fi": "Nuorten kirjoitusklubi",
                "sv": "Skrivklubb för unga",
                "en": "Youth writing club"
            },
            "description": {
                "fi": "<p>Klubissa kirjoitetaan itse omia tarinoita ja luetaan niitä toisille, piirretään, askarrellaan ja pelataan.</p><p>Kielinä suomi ja englanti.<br></p>",
                "sv": "<p>I klubben skriver vi våra egna berättelser och läser dem för andra, ritar, pysslar och spelar spel.</p><p>Språken är finska och engelska.<br></p>",
                "en": "<p>We write our own stories and read them to others, draw, do arts and crafts and play games.</p><p>The languages are Finnish and English.<br></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omgy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghnd7rrg4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:22/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:9/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "kultus:6",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2024-04-12T11:08:00.712031Z",
            "last_modified_time": "2024-04-12T12:20:53.577385Z",
            "date_published": null,
            "start_time": "2024-04-12T12:20:47.325000Z",
            "end_time": "2024-04-14T12:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-04-12T14:10:00+03:00",
            "enrolment_end_time": "2024-04-14T12:21:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Testijonotustapahtuma 2024-04-10",
                "sv": "",
                "en": ""
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.example.org/testikuva/",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Testijonotustapahtuma 2024-04-10",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testijonotustapahtuma 2024-04-10</p>\n",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghnd7rrg4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4omka",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 150326,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-12T09:43:27.503183Z",
                    "last_modified_time": "2024-04-12T09:43:27.503210Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kellopeli",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-12T09:44:51.578313Z",
            "last_modified_time": "2024-04-12T09:44:51.578337Z",
            "date_published": null,
            "start_time": "2024-04-17T07:30:00Z",
            "end_time": "2024-04-17T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa."
            },
            "provider": null,
            "location_extra_info": {
                "fi": "Jaminurkka"
            },
            "info_url": null,
            "name": {
                "fi": "Vauvamuskari"
            },
            "description": {
                "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta. </p><p>#musiikki #muskari #vauva </p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä. </p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. </p><p>https://link.webropol.com/s/vauvamuskari </p><p>Ilmoittautuminen on auki alla oleviin muskareihin: <br> </p><p>Sellon kirjasto (Jaminurkka) keskiviikko 17.4 klo 10.30<br>Kalajärven kirjasto (Nuorten tila) keskiviikko 17.4 klo 10.30<br>Tapiolan kirjasto (Heikki) tiistai 23.4 klo 10.30</p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin  </p><p>sakari.heikka(at)espoo.fi  <br>lauri.iljin(at)espoo.fi </p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omka/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63199",
            "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: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:669/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12320,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T08:13:59.837479Z",
                    "last_modified_time": "2024-03-14T08:13:59.837507Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745334.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12320/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T08:13:59.785325Z",
            "last_modified_time": "2024-04-12T08:13:40.685431Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Keltainen hihitys -aistitila johdattaa koko perheen värien ja leikin riemuun! Saako keltainen sinut pomppimaan? Missä keltainen asustaa?"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/966EF551550886369BCCCA65133ADD90/Keltainen_hihitys_-aistitila"
            },
            "name": {
                "fi": "Keltainen hihitys -aistitila – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Keltainen hihitys -aistitila johdattaa koko perheen värien ja leikin riemuun! Saako keltainen sinut pomppimaan? Missä keltainen asustaa?</p><p>Keltaisen riemukkaissa rytmeissä liikutaan, lorutellaan ja leikitään. Suristaan kuin ampiaiset, pompitaan kuin banaanit, hihitellään kuin aurinko! Sujahda aurinkovarjon alle ja ihmettele valojen säihkettä! Kuti kuti kutisee, kainalosta varpaaseen! Mistä kurkkaa keltainen? Nappaa mukaasi pieni ilon pilkahdus, tervetuloa!</p><p>Keltainen hihitys on ohjattu taidetuokio perheille, yhden tuokion kesto on noin 20 min.</p><p>Ohjatut taidetuokiot alkavat klo 10:00, 10:40, 11:20, 11:40, 12:00 ja 12:40.</p><p>Vapaa pääsy, ilmaislippuja jaetaan klo 9.45 alkaen kokoushuone 3 edustalla.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63199/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63329",
            "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:32/?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:596/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 113438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-09T14:13:43.152644Z",
                    "last_modified_time": "2024-04-09T14:13:43.152656Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745524.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/113438/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-09T14:13:43.119867Z",
            "last_modified_time": "2024-04-12T07:13:49.253691Z",
            "date_published": null,
            "start_time": "2024-04-30T12:00:00Z",
            "end_time": "2024-04-30T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "DJ Lord Fatty soittaa perinteisten diskobiisien lisäksi lattareita ja vauhdikkaita Finnhitsejä diskoksi loihditussa musiikkisalissa."
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C0FDD744B0C6A1D217920687797F1690/K-60_DISKO"
            },
            "name": {
                "fi": "K-60 DISKO"
            },
            "description": {
                "fi": "<p>DJ Lord Fatty soittaa perinteisten diskobiisien lisäksi lattareita ja vauhdikkaita Finnhitsejä diskoksi loihditussa musiikkisalissa.</p><p>Diskossa mukana myös kokenut tanssiopettaja ja esiintyjä Lasse Muuronen. Tule mukaan tanssimaan omalla tyylillä tai oppimaan yhdessä Lassen kanssa!</p><p>Lasse Muuronen on pitkän linjan StepUp-tanssija ja supersuosittu ohjaaja, jonka tunneilla yhdistyvät mukaansa tempaavat biisit, helpot askelkuviot ja iloisen välitön meininki.</p><p>Tällä kertaa pääsemme diskoilemaan Lassen johdolla Stoan K-60 vappudiskoon!</p><p>Vapaa pääsy</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63329/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63210",
            "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:31/?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:669/?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/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi+aikuinen)"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12377,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:03.382896Z",
                    "last_modified_time": "2024-03-14T11:14:03.382914Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745330.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12377/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:03.357914Z",
            "last_modified_time": "2024-04-11T13:14:03.993718Z",
            "date_published": null,
            "start_time": "2024-04-14T10:30: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vedet on elävää musiikkia, nukketeatteria ja sirkusta."
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB671986173B24721818C5A4860B841/LOPPUUNMYYTY_AEIOU_Vedet"
            },
            "name": {
                "fi": "LOPPUUNMYYTY AEIOU: Vedet – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Vedet on elävää musiikkia, nukketeatteria ja sirkusta.</p><p>Vedet on moniaistinen esitys lasten ajatuksista vedestä: sateesta, jäästä, meristä, uimisesta, suihkuista, virvokkeista, pastan keitinvedestä ja lirahduksesta.</p><p>Esitys tapahtuu yleisön yllä ja ympärillä ja se on sanaton.</p><p>Esitys huomioi vauvojen erityispiirteet yleisönä, mutta puhuttelee myös laajempaa yleisöä. Taiteellisen työryhmän rinnalla esityssisällöstä vastaa Kulttuurikeskus PiiPoon 5–8-vuotiaista koostuva Väriläiskä-asiantuntijaryhmä.</p><p>Vedet-esitys klo 11 ja 13.30<br>Kesto 30 min<br>Liput 5 € (lapsi+aikuinen)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63209",
            "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:31/?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:669/?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/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi+aikuinen)"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12375,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:03.113657Z",
                    "last_modified_time": "2024-03-14T11:14:03.113674Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745329.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12375/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:03.088768Z",
            "last_modified_time": "2024-04-11T13:14:03.829397Z",
            "date_published": null,
            "start_time": "2024-04-14T08: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vedet on elävää musiikkia, nukketeatteria ja sirkusta."
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BB36D27E4A87F9FFAF8E052E6AA9A49C/LOPPUUNMYYTY_AEIOU_Vedet"
            },
            "name": {
                "fi": "LOPPUUNMYYTY AEIOU: Vedet – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Vedet on elävää musiikkia, nukketeatteria ja sirkusta.</p><p>Vedet on moniaistinen esitys lasten ajatuksista vedestä: sateesta, jäästä, meristä, uimisesta, suihkuista, virvokkeista, pastan keitinvedestä ja lirahduksesta.</p><p>Esitys tapahtuu yleisön yllä ja ympärillä ja se on sanaton.</p><p>Esitys huomioi vauvojen erityispiirteet yleisönä, mutta puhuttelee myös laajempaa yleisöä. Taiteellisen työryhmän rinnalla esityssisällöstä vastaa Kulttuurikeskus PiiPoon 5–8-vuotiaista koostuva Väriläiskä-asiantuntijaryhmä.</p><p>Vedet-esitys klo 11 ja 13.30<br>Kesto 30 min<br>Liput 5 € (lapsi+aikuinen)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63209/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63204",
            "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: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"
                }
            ],
            "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/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi + aikuinen)"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12339,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T09:19:03.910822Z",
                    "last_modified_time": "2024-03-14T09:19:03.910840Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745352.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T09:19:03.894911Z",
            "last_modified_time": "2024-04-11T13:14:03.598172Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule mukaan muskariin, jossa nauru raikaa, laulut soivat ja lapset pääsevät tutkimaan yhdessä musiikkiopen kanssa musiikin taianomaista maailmaa!"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/43B77058A7361A33508BF60FB1ED2542/LOPPUUNMYYTY_Vauvamuskarit"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Vauvamuskarit – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Tule mukaan muskariin, jossa nauru raikaa, laulut soivat ja lapset pääsevät tutkimaan yhdessä musiikkiopen kanssa musiikin taianomaista maailmaa!</p><p>6–18 kuukauden ikäisille lapsille soveltuva musiikkityöpaja tutustuttaa perheen pienokaiset musiikin ihastuttavaan maailmaan ja saa heidät soittamaan ja laulamaan yhdessä lasten musiikkikasvatukseen perehtyneen ammattilaisen kanssa.</p><p>Muskarin tarkoituksena on opettaa lapsille luovaa itseilmaisua ja kehittää lasten kiinnostusta musikaalisuutta kohtaan. Ryhmässä musisoiminen opettaa taaperoille myös yhteistyötä ja vuorovaikutustaitoja samalla kun se rakentaa pienokaisen ilmaisutaitoa.</p><p>Vauvamuskarit järjestetään klo 10 ja 11</p><p>Ikäsuositus: 6-18 kk lapsille aikuisen kanssa</p><p>Muskarin kesto noin 30 min</p><p>Liput 5 €  (lapsi + aikuinen)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63204/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63203",
            "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: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"
                }
            ],
            "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/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi+aikuinen)"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12371,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:02.465066Z",
                    "last_modified_time": "2024-03-14T11:14:02.465089Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745344.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12371/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:02.425552Z",
            "last_modified_time": "2024-04-11T13:14:03.518251Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa värikkääseen ja iloiseen sirkustyöpajaan, jossa pienokaiset pääsevät tutustumaan sirkuksen lumoavaan maailmaan!"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1E0F1CB0CA517EBDC688BD3D20B2607D/LOPPUUNMYYTY_Vauva-_ja_taaperosirkustyopajat"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Vauva- ja taaperosirkustyöpajat – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Tervetuloa värikkääseen ja iloiseen sirkustyöpajaan, jossa pienokaiset pääsevät tutustumaan sirkuksen lumoavaan maailmaan!</p><p>Pukinmäen sirkuskoulun opettajat ohjaavat taaperoita innostavien sirkusaktiviteettien äärellä.</p><p>Sirkustyöpajassa lapset saavat nauttia liikkeen riemusta, kokea värien lumoa ja osallistua vuorovaikutteisiin leikkeihin. Tärkeintä on ilo ja hauskuus, jotka rohkaisevat pienokaisia liikkumaan ja oppimaan uusia asioita.</p><p>Tule mukaan kokemaan sirkustaiteen lumo taaperosi kanssa!</p><p>Sirkustyöpajat Malmitalon tanssisalissa klo 10, 11, 12:15 ja 13:15</p><p>Ikäsuositukset:<br>klo 10 ja 13:15 työpajat soveltuvat parhaiten 6-18 kk ikäisille lapsille klo 11 ja 12:15: työpajat soveltuvat parhaiten 18-24 kk ikäisille lapsille</p><p>Työpajan kesto on 45 min</p><p>Lippu 5 € (lapsi + aikuinen)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63203/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63201",
            "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: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"
                }
            ],
            "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/vaippakansan-karnevaalit/"
                    },
                    "price": {
                        "fi": "5 € (lapsi + aikuinen)"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12338,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T09:19:03.815415Z",
                    "last_modified_time": "2024-03-14T09:19:03.815435Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745339.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12338/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T09:19:03.801567Z",
            "last_modified_time": "2024-04-11T13:14:03.404052Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi!"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5385D3121389138A2678757B60492A68/LOPPUUNMYYTY_Vauvojen_varikylvyt"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Vauvojen värikylvyt – Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi!</p><p>Pohjois-Helsingin kuvataidekoulun järjestämät moniaistilliset värikylvyt ovat vauvoille suunnattu elämyksellinen tapa tutustua kuvataiteen maailmaan. Värien, materiaalien ja sävyjen rikkaus avautuu perheen pienimmille taiteellisessa työpajassa.</p><p>Työpajan aikana vauvat saavat kokea värejä monin eri tavoin, kun heidän aistinsa ja sormensa kylpevät kirkkaissa ja eloisissa sävyissä. Vanhemmat voivat osallistua toimintaan yhdessä vauvojensa kanssa.</p><p>Vauvojen värikylvyt aina tasatunnein eli klo 10, 11, 12 ja 13.</p><p>Ikäsuositukset: <br>klo 10 ja 13 olevat työpajat sopivat parhaiten 6-18 kk ikäisille lapsille<br>klo 11 ja 12 olevat työpajat sopivat parhaiten 18-24 kk ikäisille lapsille</p><p>Työpajan kesto 45 min<br>Paikka: Taideluokka 3<br>Liput 5 € / lapsi + aikuinen</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63201/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:1ea8a6a1-557d-4af1-899e-0f35c8a545a6",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50610/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=Testi_Tapahtuma_Uusituilla_URL-Kentill_TL-DG-230220241820434191"
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 125592,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-11T13:13:21.163560Z",
                    "last_modified_time": "2024-04-11T13:13:21.163575Z",
                    "name": "Helsinki",
                    "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=1ea8a6a1-557d-4af1-899e-0f35c8a545a6&Timestamp=638482365062140549&Full=true",
                    "cropping": "",
                    "photographer_name": "",
                    "alt_text": "Helsinki",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/125592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "created_time": "2024-04-09T05:06:26.546925Z",
            "last_modified_time": "2024-04-11T13:13:23.172831Z",
            "date_published": "2024-03-22T09:21:07Z",
            "start_time": "2024-04-17T21:00:00Z",
            "end_time": "2024-04-18T11:00:19Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 0,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-02-21T06:00:00+02:00",
            "enrolment_end_time": "2024-04-09T08:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Testi Tapahtuma Uusituilla URL-Kentillä TL-DG-21.02.2024"
            },
            "provider": {
                "fi": "Tomi Lepistö"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.hel.fi"
            },
            "name": {
                "fi": "Testi Tapahtuma Uusituilla URL-Kentillä TL-DG-23.02.2024"
            },
            "description": {
                "fi": "<div><div>Testi Tapahtuma Uusituilla URL-Kentillä TL-DG-21.02.2024</div></div>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:1ea8a6a1-557d-4af1-899e-0f35c8a545a6/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63195",
            "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: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: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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?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/eventseries/aloha-night-2024-3614151/",
                        "sv": "https://www.lippu.fi/eventseries/aloha-night-2024-3614151/",
                        "en": "https://www.lippu.fi/eventseries/aloha-night-2024-3614151/"
                    },
                    "price": {
                        "fi": "20 €",
                        "sv": "20 €",
                        "en": "20 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 125328,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-11T12:13:44.540994Z",
                    "last_modified_time": "2024-04-11T12:13:44.541019Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745862.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/125328/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-11T12:13:44.517194Z",
            "last_modified_time": "2024-04-11T12:13:44.602275Z",
            "date_published": null,
            "start_time": "2024-05-25T13: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tutustu Tyynenmeren saarten kulttuuriin värikkäiden tanssiesitysten saattelemana!",
                "en": "Come and enjoy the music and dances of Polynesia!"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night",
                "en": "http://www.malmitalo.fi/en/events/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night"
            },
            "name": {
                "fi": "Aloha Night – Polynesian Dance Show",
                "sv": "Aloha Night – Polynesian Dance Show",
                "en": "Aloha Night – Polynesian Dance Show"
            },
            "description": {
                "fi": "<p>Tutustu Tyynenmeren saarten kulttuuriin värikkäiden tanssiesitysten saattelemana!</p><p>Ukulelen soinnut, hypnoottiset rummut ja kaislahameiden kahina vievät mielen paratiisisaarille palmujen katveeseen.</p><p>Aloha Nightissa näet perinteisiä tansseja mm. Havaijilta, Tahitilta, Cookin saarilta, Tongalta ja Samoalta.</p><p>Tanssitapahtumalla kerätään varoja kehitysprojektia varten.</p><p>Järjestäjä: PIFS: Tyynenmeren Saarten Ystävyysseura ry</p>",
                "en": "<p>Come and enjoy the music and dances of Polynesia!</p><p>Our “Aloha Night” is the only event that showcases the exotic, hypnotic and colourful dances from the Pacific Islands such as Cook Islands, Hawaii, Samoa, Tahiti and Tonga. It is our fund-raising event for our future Development Project in the Pacific.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63195/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63332",
            "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: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/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 125327,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-11T12:13:42.654868Z",
                    "last_modified_time": "2024-04-11T12:13:42.654896Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749048.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/125327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-11T12:13:42.630681Z",
            "last_modified_time": "2024-04-11T12:13:42.717625Z",
            "date_published": null,
            "start_time": "2024-05-16T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa seuraamaan, miten viikingit tykittävät niin pelialustoilla kuin näyttämölläkin!"
            },
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BDB729D4581CFEB69DD002AEA5557094/Game_over"
            },
            "name": {
                "fi": "Game over – Kannelmäen peruskoulun näytös"
            },
            "description": {
                "fi": "<p>Tervetuloa seuraamaan, miten viikingit tykittävät niin pelialustoilla kuin näyttämölläkin!</p><p>Sunolandon pitkäkyntiset ovat soluttautuneet Suomeen ja havittelevat vaurauksia. Agentit puuttuvat peliin ja poliisit pinkovat rikollisten perässä. Milloin peli päättyy?</p><p>Ohjaus: Mari Martela <br>Apulaisohjaajat: Lotta Lahti-Nuuttila ja Matilda Oinas 9D<br>Käsikirjoitus ja ideointi Mari Martela ja oppilaat<br>Lavastus ja puvustus: Anne Mäkelä ja oppilaat<br>Tanssin ja koreografian ohjaus: Laura Yrttimaa<br>Musiikin ohjaus, biisit ja sanoitukset: Marianne Ojala<br>Viidesluokkalaisten esityksen valmistelu: Marika Ojala</p><p>Kesto noin tunti, ei väliaikaa.<br>Vapaa pääsy, ohjelma 10 euroa (tuotto menee oppilaiden draamatyöskentelyn hyväksi)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63332/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}