Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&page=507&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 10295,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=508&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=506&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:61395",
            "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:33/?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: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/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": 6141,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-22T14:13:48.463526Z",
                    "last_modified_time": "2024-02-06T13:22:50.292693Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740309.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6141/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-22T14:13:48.425655Z",
            "last_modified_time": "2024-02-06T13:22:50.332760Z",
            "date_published": null,
            "start_time": "2023-12-19T16: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": "Joulupallo on lumoava joulutarina lapsen omien vahvuuksien etsimisestä ja löytämisestä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF76EC88B3944AC58DF6F08778025F9B/Maria_Baric_Company_Joulupallo_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Maria Baric Company: Joulupallo – Malmitalon joulu"
            },
            "description": {
                "fi": "<p>Joulupallo on lumoava joulutarina lapsen omien vahvuuksien etsimisestä ja löytämisestä.</p><p>“Jokaisella meistä on jokin lahja, joka tekee meistä erityisen. Se pitää vain löytää.”</p><p>Esityksessä esiintyjä on läpinäkyvän, kuin lumisadepallon muotoisen esiintymislavan sisällä. Yleisö kerääntyy pallon ympärille kokemaan taianomaisen hetken tonttujen kanssa, tähtiin kirjoitettujen tarinoiden äärellä.</p><p><i>Neljä pientä tonttua.<br>Neljä erityistä lahjaa.<br>Neljä kaunista kohtaamista,<br>jotka johdattavat joulun tunnelmaan.</i></p><p>Esityksen aikana se lukuisin jouluvaloin koristeltu pallo syttyy tuikkimaan valoaan, ja muuttuu kaunista musiikkia soittavaksi joulupalloksi, tuoden mukanaan yleisöilleen pienen pieniä jouluyllätyksiä.</p><p>Lämminhenkinen koko perheen joulusatu joulunodotukseen.</p><p>Kesto: 30 minuuttia<br>Ikäsuositus: sopii kaikenikäisille</p><p>Joulupallo - Maria Baric Company:<br>Esiintyjä: Heidi Tiainen<br>Käsikirjoitus & ohjaus Maria Baric<br>Dramaturgia  Nemanja Stojanovic<br>Musiikki  Maria Baric, Saana Trygg-Nevanlinna<br>Nuket: Anu Pensola ja Aapo Repo<br>Kertoja äänitteellä Veikko Honkanen<br>Tuotanto Maria Baric Company/Kulttuurimylly</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61395/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61322",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5967,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T10:13:35.724485Z",
                    "last_modified_time": "2024-02-06T13:22:50.200018Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739959.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5967/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T10:13:35.706657Z",
            "last_modified_time": "2024-02-06T13:22:50.239749Z",
            "date_published": null,
            "start_time": "2023-12-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": "Malmitalon yhteislaulut – kuukauden paras tiistai! Joulukuussa kahdesti!",
                "sv": "Allsång på Malms kulturhus – den bästa tisdagen i månaden!",
                "en": "Sing-alongs at Malmitalo – best Tuesday of the month!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/25DFD60D59B6F98D217AC432B8104C52/Malmitalon_yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/25DFD60D59B6F98D217AC432B8104C52/Allsang_pa_Malms_kulturhus",
                "en": "http://www.malmitalo.fi/en/events/event/25DFD60D59B6F98D217AC432B8104C52/Sing-alongs_at_Malmitalo"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Malmitalon yhteislaulut – Malmitalon joulu",
                "sv": "Allsång på Malms kulturhus",
                "en": "Sing-alongs at Malmitalo"
            },
            "description": {
                "fi": "<p>Malmitalon yhteislaulut – kuukauden paras tiistai! Joulukuussa kahdesti!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla saa Malmisalissa taas laulaa ihan sydämensä kyllyydestä!</p><p>Syksyn yhteislaulut järjestetään 12.9., 17.10., 14.11., 13.12. sekä 19.12. klo 17.00 Malmisalissa. Tervetuloa!</p>",
                "sv": "<p>Allsång på Malms kulturhus – den bästa tisdagen i månaden!</p><p>Nu får publiken åter sjunga för full hals i Malmsalen under ledning av Jukka Okkonen och Pauli Kainulainen!</p><p>Vårens allsång ordnas 12.9, 17.10, 14.11, 13.12 samt 19.12 kl. 17.00 i Malmsalen.</p><p>Välkommen!</p>",
                "en": "<p>Sing-alongs at Malmitalo – best Tuesday of the month!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, you can once again sing your heart out in Malmisali!</p><p>Spring sing-alongs are held in Malmisali on 12 September, 17 October, 14 November, and13 and 19 December at 17.00.</p><p>We look forward to seeing you!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61322/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60762",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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/club-for-five/club-for-five-jouluna-2023-3465005/"
                    },
                    "price": {
                        "fi": "47 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4662,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:34.779045Z",
                    "last_modified_time": "2024-02-06T13:22:50.106166Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736329.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4662/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:34.463003Z",
            "last_modified_time": "2024-02-06T13:22:50.143999Z",
            "date_published": null,
            "start_time": "2023-12-18T17: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": "Club For Five tuo tänäkin vuonna joulun suomalaisten sydämiin."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C10BEB977CB0411C37D78B009AC0DF4B/Club_For_Five_-_Jouluna_2023"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Club For Five - Jouluna 2023"
            },
            "description": {
                "fi": "<p>Club For Five tuo tänäkin vuonna joulun suomalaisten sydämiin.</p><p>Yhtyeen viime jouluna loppuunmyyty JOULUNA -konsertti liikkuu sulavasti tunnelmasta toiseen luoden kuulijalleen vuoroin hartaita hengähdyksiä, vuoroin iloa ja kuplivaa joulun odotuksen riemua.</p><p>Tule kokemaan joulun rakastetuin konsertti.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "provider": {
                "fi": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60762/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60436",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "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": 4661,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:33.233577Z",
                    "last_modified_time": "2024-02-06T13:22:50.008340Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730319.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4661/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:32.170927Z",
            "last_modified_time": "2024-02-06T13:22:50.045952Z",
            "date_published": null,
            "start_time": "2023-12-18T16: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": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A418840B2692B748F317B4C1ACA60AB7/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A418840B2692B748F317B4C1ACA60AB7/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/A418840B2692B748F317B4C1ACA60AB7/Let_us_sing_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii Mari Kätkä.</p><p>Kesto: 1 t</p><p>Maksuttomat maanantait on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60436/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60666",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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/event/name-17444635"
                    },
                    "price": {
                        "fi": "53,90 /45,40 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4660,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:31.428007Z",
                    "last_modified_time": "2024-02-06T13:22:49.910057Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735092.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4660/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:31.118031Z",
            "last_modified_time": "2024-02-06T13:22:49.948770Z",
            "date_published": null,
            "start_time": "2023-12-17T17: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": "Erja Lyytinen - Sami Yaffa – Mira Luoti IKIMUISTOINEN KONSERTTIELÄMYS SINISEN BLUESIN JA PUNAISEN JOULUN YSTÄVILLE!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/626504B059F3509351B7B63707F1349D/_Erja_Lyytinen_Friends_Blue_Christmas_2023"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Erja Lyytinen & Friends: Blue Christmas 2023 – Erja Lyytinen - Sami Yaffa – Mira Luoti"
            },
            "description": {
                "fi": "<p>Erja Lyytinen - Sami Yaffa – Mira Luoti IKIMUISTOINEN KONSERTTIELÄMYS SINISEN BLUESIN JA PUNAISEN JOULUN YSTÄVILLE!</p><p>Rokkaavan riemukas Blue Christmas 2023 -kiertue on laulaja-kitaristi Erja Lyytisen emännöimä kiertue, joka on vakiinnuttanut paikkansa blues-rockista nauttivien kuulijoiden jokavuotisena jouluperinteenä! Tänä vuonna kiertueella nähdään Lyytisen rinnalla basisti Sami Yaffa sekä laulaja Mira Luoti.<br> <br>Konsertissa kuullaan Erja Lyytisen ja hänen solistivieraidensa suosikkikappaleita vuosien varrelta. Lisäksi ohjelmistossa on rokkaavia sovituksia ja tunnelmallisia tulkintoja tutuista – ja vähän tuntemattomammistakin – joululauluista. Solistikolmikko esittää kappaleita kaksi tuntia kestävässä konserttikokonaisuudessa yhdessä ja erikseen, taustallaan Erja Lyytisen luotettu bändi. Konsertti on siis monipuolinen kattaus bluesia, rock’n’rollia ja ikivihreitä sävelmiä!</p><p>Erja Lyytinen kuuluu nykyään maailman tunnetuimpien ja arvostetuimpien valkoihoisten<br>blues-artistien harvalukuiseen joukkoon. Lyytisen viimeisin albumi ”Waiting for the Daylight” on saanut erittäin laajaa huomiota maailmanlaajuisesti musiikkialan medioissa ja lisäksi albumin ”Bad Seed” -kappaleen kitarasoolo valittiin vuoden 2022 parhaaseen kymmenikköön Guitar World -lehden äänestyksessä.</p><p>Sami Yaffa on basistilegenda, rockmaailman ikoni ja tinkimätön oman tiensä kulkija, joka nousi rockin huipulle myyttisen Hanoi Rocksin basistina. Tämä New Yorkin kujakolli, valojen ja varjojen mies sekä katu-uskottavuuden ruumiillistuma on levyttänyt Bruce Springsteenin ja Slashin kanssa, soittanut New York Dollsissa ja Joan Jett & The Blackheartsissa ja esiintynyt Carnegie Hallissa.</p><p>Legendaarisesta PMMP-yhtyeestä aloittanut Mira Luoti tunnetaan nykyisin myös pitkästä soolourastaan. Lisäksi Luoti on näytellyt useissa teatteriproduktioissa, joista viimeisimpänä Mä maalaispoika oon -musikaali Sappeen kesäteatterissa. Luoti on hurmannut suomalaisia myös television välityksellä, muun muassa Vain Elämää sekä Suomi Soi -ohjelmissa.</p><p>Konsertin kesto 2 h 25 min, sis. väliaika 30 min</p>"
            },
            "provider": {
                "fi": "Bluesland Productions Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60666/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60040",
            "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: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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "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/kulttuurikeskus-caisa/global-club-nights-3424014/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/global-club-nights-3424014/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/global-club-nights-3424014/"
                    },
                    "price": {
                        "fi": "10 € / 6 €",
                        "sv": "10 € / 6 €",
                        "en": "10 € / 6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4659,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:30.869296Z",
                    "last_modified_time": "2024-02-06T13:22:49.809477Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732305.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4659/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:30.681830Z",
            "last_modified_time": "2024-02-06T13:22:49.848102Z",
            "date_published": null,
            "start_time": "2023-12-16T17: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": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.",
                "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/B59F183CADA3352D404F7367AAAF8F61/Global_Club_Nights_Faso_Kan_The_Shameless_Shongololo_Band",
                "sv": "http://www.caisa.fi/sv/evenemang/event/B59F183CADA3352D404F7367AAAF8F61/Global_Club_Nights_Faso_Kan_The_Shameless_Shongololo_Band",
                "en": "http://www.caisa.fi/en/events/event/B59F183CADA3352D404F7367AAAF8F61/Global_Club_Nights_Faso_Kan_The_Shameless_Shongololo_Band"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Global Club Nights: Faso Kan | The Shameless Shongololo Band",
                "sv": "Global Club Nights: Faso Kan | The Shameless Shongololo Band",
                "en": "Global Club Nights: Faso Kan | The Shameless Shongololo Band"
            },
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p><b>Faso Kan</b> <br>Faso Kan esittää Länsi-Afrikan rikkaasta musiikkiperinteestä ponnistavaa melodista ja vauhdikasta musiikkia, joka ei jätä yhtäkään yleisöä kylmäksi. Lavalla yhtye antaa soiton, tanssin ja laulun ilon näkyä.</p><p>Kokoonpano: <br>Issa Dembele, balafon, laulu, djembe, congat <br>Adama Koné, kora, balafon, laulu, djembe <br>Ossi Raippalinna, rummut, perkussiot</p><p><b>The Shameless Shongololo Band</b><br>The Shameless Shongololo Band esittää orgaanisia rytmejä, häpeämättömiä diskobiittejä, mahtavia torvisointuja ja koskettavaa laulua! Suomalais-eteläafrikkalaisen laulaja-huilisti Ayla Brinkmannin johtama yhdeksänhenkinen orkesteri herättää henkiin ainutlaatuisen soundin, josta skandinaavinen yleisö pääsee harvoin nauttimaan. Shongololo (isXhosa, isiZulu: tuhatjalkainen) on pysäyttämätön kiiltävä kaveri, joka liikuttaa lukuisia jalkoja.</p><p>Kesto: 3,5 h (sis. 15 min väliaika)<br>Ikäsuositus: sopii kaikille<br>Kieli: englanti, suomi, portugali ja espanja<br>Liput: 10/6 €, lippu.fi</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p>Global Club Nights (GCN) anordnas i samarbete med Globala musikinstitutionen vid Sibeliusakademin och Kulturcentret Caisa.</p><p><b>Faso Kan</b><br>Faso Kan framför melodisk och fartfylld musik som tar sats från Västafrikas rika musikaliska arv och som inte lämnar publiken oberörd. Bandet låter spelandet, dansen och glädjen synas på scenen.</p><p><b>The Shameless Shongololo Band</b><br>The Shameless Shongololo Band presenterar organisk groove och fräcka discotakter, mäktiga horn och suggestiv sång! Denna orkester bestående av nio medlemmar, ledd av den finsk-sydafrikanska sångaren-flöjtisten Ayla Brinkmann ger liv åt ett unikt sound som man sällan får höra live i Skandinavien. Shongololo (isXhosa, isiZulu: tusenfoting) är en ostoppbar glänsande varelse som vandrar på jorden med många, många ben.</p><p>Längd: 3,5 t (med 15 min paus)<br>Åldersrekommendation:  för alla åldrar<br>Språk: engelska, finska, portugal, spanska  <br>Biljetter: 10/6 €, lippu.fi</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive and creative environment.</p><p>With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p>Global Club Nights (GCN) is produced in collaboration with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p><p><b>Faso Kan</b><br>Faso Kan’s new album Tungaladen (Adventurer) highlights elements from West African music and storytelling tradition. In griot families the wisdom of the ancestors has been passed from generation to generation during centuries in the form of stories, music and dances. Each member of the band brings their musical adventures and expertice into the mix. The shared love for music results in a musical meeting of diverse cultures, the past, and the future.</p><p><b>The Shameless Shongololo Band</b><br>The shameless band Shongololo organic grooves and shameless disco beats, mighty horns and haunting vocals! This nine-piece orchestra led by Finnish–South Africa singer-flutist Ayla Brinkmann brings to life a unique sound seldom heard live in Scandinavia. The Shongololo (isXhosa, isiZulu: millipede) is an unstoppable shiny fellow who walks the earth with many many legs.</p><p>Duration: 3,5 h (inc. 15 min intermission)<br>Age recommendation: for all ages<br>Language: English, Finnis, Portuguese, Spanish <br>Tickets: 10/6 €, lippu.fi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60040/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61378",
            "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: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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": {
                        "fi": "8 € / 11 € / 16 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6089,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-17T10:13:42.858445Z",
                    "last_modified_time": "2024-02-06T13:22:49.717911Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740150.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6089/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-17T10:13:42.836944Z",
            "last_modified_time": "2024-02-06T13:22:49.758952Z",
            "date_published": null,
            "start_time": "2023-12-16T16: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": "Mihin Aika katosi? Ainan ja Einon aikamatkalla palataan menneisyydestä tulevaisuuteen ja etsitään tämän hetken tärkeyttä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BCE0A3067EEB857C626CB2CE9AD2AC89/Pukinmaen_taidekoulut_AIKA-sirkusmusikaali"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pukinmäen taidekoulut: AIKA-sirkusmusikaali"
            },
            "description": {
                "fi": "<p>Mihin Aika katosi? Ainan ja Einon aikamatkalla palataan menneisyydestä tulevaisuuteen ja etsitään tämän hetken tärkeyttä.</p><p>Kuka uskaltaa ottaa pisimmän aikahypyn?</p><p>Aika-sirkusmusikaali kokoaa yhteen koko Pukinmäen taidekoulujen yhteisön. Eri-ikäiset oppilaat, opettajat ja alumnit tuovat Malmitalon näyttämölle 14.–16.12. monitaideproduktion, joka toteutetaan yhdessä luomisen periaatteilla.<br> <br>Alkuperäisidea, käsikirjoitus ja ohjaus: Kaija-Leena Alatalo<br>Sirkusohjaus: Jilka Repo<br>Sävellykset, sanoitukset, sovitukset: Kaija-Leena Alatalo <br>Musiikin harjoituttaminen: Hanna Paatelma, Inka Liitiäinen, Sakurako Ishiyama<br>Puvustus: Johanna Salonen, Mari Rissanen, Maria Metsojoki<br>Esiintyjät: Pukinmäen taidekoulujen sirkus-, musiikki-, tanssi- ja teatterioppilaita<br>Visuaalinen ilme: kuvataidekoulun opettajat ja oppilaat<br> <br>Tekijätiedot täydentyvät luomisprosessin aikana.</p><p>Liput Lippupisteestä, tulevat myyntiin lähempänä tapahtumaa</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61378/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:58659",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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/event/name-16144841",
                        "sv": "https://www.lippu.fi/event/name-16144841",
                        "en": "https://www.lippu.fi/event/name-16144841"
                    },
                    "price": {
                        "fi": "65/48,50 €",
                        "sv": "65/48,50 €",
                        "en": "65/48,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4658,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:30.452460Z",
                    "last_modified_time": "2024-02-06T13:22:49.623507Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_722937.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4658/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:30.285904Z",
            "last_modified_time": "2024-02-06T13:22:49.662564Z",
            "date_published": null,
            "start_time": "2023-12-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": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D94AFB5F41401B554D0E528B4A94FB8D/_Anna_Eriksson_-_Gloria_Joulukonsertti",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D94AFB5F41401B554D0E528B4A94FB8D/Anna_Eriksson_julkonserten_Gloria",
                "en": "http://www.savoyteatteri.fi/en/events/event/D94AFB5F41401B554D0E528B4A94FB8D/Anna_Eriksson_Gloria_Christmas_concert"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Anna Eriksson - Gloria Joulukonsertti – Rakastetuimmat Joululaulut",
                "sv": "Anna Eriksson – julkonserten Gloria – De mest älskade julsångerna",
                "en": "Anna Eriksson – Gloria Christmas concert – Most beloved Christmas songs"
            },
            "description": {
                "fi": "<p>”Kauneinta joulussa ovat muistot; ne jotka on kätketty sydämeen ja ne, joita luodaan tässä ja nyt. Rakastetuimmissa joululauluissa on läsnä sekä haikeus, että ilo. Niissä on voimaa ja valoa. Ne soivat vielä kauan meidän jälkeemme. Siinä on jotain kovin lohdullista. Juuri niitä lauluja haluan laulaa tällä kiertueella”, Anna Eriksson</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Kesto n. 1 h 20 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>”Det vackraste med julen är minnena, de som finns dolda i våra hjärtan och de som skapas här och nu. I de mest älskade julsångerna är både vemodet och glädjen närvarande. De har kraft och ljus. De klingar ännu långt efter att vi själva tystnat. Det är en tröstefull tanke. Just de sångerna vill jag sjunga på den här turnén”, säger Anna Eriksson.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Längd ca 1 h 20 min, ingen paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>“What I find most beautiful about Christmas are the memories hidden in our hearts and the ones we create here and now. The most beloved Christmas songs are wistful and joyous at the same time. They provide us with strength and light. They will be around long after we are gone. There is something very comforting about that. These are the songs I want to sing on this tour,” Anna Eriksson says.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Duration approx. 1 h 20 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>"
            },
            "provider": {
                "fi": "Ihode Management Oy",
                "sv": "Ihode Management Oy",
                "en": "Ihode Management Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:58659/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60637",
            "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:350/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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/event/name-17998793",
                        "sv": "https://www.lippu.fi/event/name-17998793",
                        "en": "https://www.lippu.fi/event/name-17998793"
                    },
                    "price": {
                        "fi": "14,50 € / 7 €",
                        "sv": "14,50 € / 7 €",
                        "en": "14,50 € / 7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4657,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:29.835716Z",
                    "last_modified_time": "2024-02-06T13:22:49.537135Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730656.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4657/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:28.567256Z",
            "last_modified_time": "2024-02-06T13:22:49.573841Z",
            "date_published": null,
            "start_time": "2023-12-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": "Kannelmäen voimistelijoiden perinteiset joulunäytökset nähdään jälleen Kanneltalolla.",
                "sv": "Kannelmäen Voimistelijats traditionella julföreställningar ses igen på Gamlasgården.",
                "en": "Kanneltalo again presents traditional Christmas performances by Kannelmäki gymnasts."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8745273F85FA8CDA0A39D758B155A01B/Kannelmaen_voimistelijoiden_joulunaytos",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8745273F85FA8CDA0A39D758B155A01B/Kannelmaen_Voimistelijats_julforestallning",
                "en": "http://www.kanneltalo.fi/en/events/event/8745273F85FA8CDA0A39D758B155A01B/Christmas_show_of_Kannelmaen_Voimistelijat_Kannelmaki_Gymnasts_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kannelmäen voimistelijoiden joulunäytös",
                "sv": "Kannelmäen Voimistelijats julföreställning",
                "en": "Christmas show of Kannelmäen Voimistelijat (Kannelmäki Gymnasts)"
            },
            "description": {
                "fi": "<p>Kannelmäen voimistelijoiden perinteiset joulunäytökset nähdään jälleen Kanneltalolla.</p><p>Tiedot näytöksissä esiintyvistä ryhmistä julkaistaan Kannelmäen voimistelijoiden verkkosivuilla: https://www.kannelmaenvoimistelijat.fi/.<br> <br>Näytöksiä on kaksi samana päivänä, toinen klo 13.30 ja toinen klo 17.</p><p>Kesto: n. 1 t<br>Liput: 14,50 € / 7 €</p>",
                "sv": "<p>Kannelmäen Voimistelijats traditionella julföreställningar ses igen på Gamlasgården.</p><p>Information om grupperna som deltar i föreställningarna finns på Kannelmäen Voimistelijats webbplats: https://www.kannelmaenvoimistelijat.fi/.</p><p>Vi har två föreställningar samma dag, den ena klockan 13.30 och den andra klockan 17.</p><p>Längd:  cirka 1 timma</p>",
                "en": "<p>Kanneltalo again presents traditional Christmas performances by Kannelmäki gymnasts.</p><p>Information on the performing groups is available on the Kannelmäki Gymnasts’ website at https://www.kannelmaenvoimistelijat.fi/.</p><p>There are two performances per day, one at 13:30 and the other at 17:00.</p><p>Duration: 1 hour.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60637/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61329",
            "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: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/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": 5979,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T12:14:22.059506Z",
                    "last_modified_time": "2024-02-06T13:22:49.441775Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739625.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-13T12:14:22.032104Z",
            "last_modified_time": "2024-02-06T13:22:49.483653Z",
            "date_published": null,
            "start_time": "2023-12-16T14: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": "Joulun alla pihamaalta löytyy lumihangesta jälkiä. Kenelle ne kuuluvat?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/627B4700C0EEDBBF966381FDEE7CEDC6/Siina_ja_Taikaradio_Joulu_tarttuu_kapalaan"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Siina ja Taikaradio: Joulu tarttuu käpälään – Malmitalon joulu"
            },
            "description": {
                "fi": "<p>Joulun alla pihamaalta löytyy lumihangesta jälkiä. Kenelle ne kuuluvat?</p><p>Kuka on käynyt kurkkimassa ikkunan takana? Onko se ollut tonttu?</p><p><b>Siina & Taikaradio -Orkesteri</b> kutsuu koko perheen mukaansa leikkimään ja laulamaan jouluisia sävelmiä.</p><p>Akustisen lämmin ja innostava musiikki ilahduttaa kuulijansa päivää niin perinteisten tuttujen kuin uudempienkin laululeikkien sävelin!</p><p>Kesto: n. 35 min</p><p>Vapaa pääsy, paikkoja rajoitetusti. Tervetuloa!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61329/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59590",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-vuotalo-16844519/",
                        "sv": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-vuotalo-16844519/",
                        "en": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-vuotalo-16844519/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4656,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:27.528810Z",
                    "last_modified_time": "2024-02-06T13:22:49.347378Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728814.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4656/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:26.761569Z",
            "last_modified_time": "2024-02-06T13:22:49.388197Z",
            "date_published": null,
            "start_time": "2023-12-16T13: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": "Mimmit-yhtyeen Puhuri-konsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.",
                "sv": "Mimmit-bandets konsert Puhuri leder publiken in i julstämning och till vita snödrivor.",
                "en": "Mimmit ensemble’s ‘Gale’ concert will bring Christmas spirit to the listeners and take them into the midst of white snow."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C5D3B20FF6E85BCF3F8A78D0C4F48880/Mimmit_Puhuri_Koko_perheen_joulukonsertti_LOPPUUNMYYTY",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C5D3B20FF6E85BCF3F8A78D0C4F48880/Mimmit_Puhuri_Hela_familjens_julkonsert_UTSALD",
                "en": "http://www.vuotalo.fi/en/events/event/C5D3B20FF6E85BCF3F8A78D0C4F48880/Mimmit_Gale_yuletide_concert_for_the_whole_family_SOLD_OUT"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Mimmit: Puhuri | Koko perheen joulukonsertti LOPPUUNMYYTY",
                "sv": "Mimmit: Puhuri | Hela familjens julkonsert UTSÅLD",
                "en": "Mimmit: Gale | yuletide concert for the whole family SOLD OUT"
            },
            "description": {
                "fi": "<p>Mimmit-yhtyeen Puhuri-konsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.</p><p>Konsertissa kuullaan ihan uusia talvi- ja jouluaiheisia sekä kaikille tuttuja lauluja. Tutut joululaulut ovat saaneet jännittävät sovitukset, mukana ovat mm. Kulkuset, Porsaita äidin oomme kaikki ja Soihdut sammuu.</p><p><i>Puhuri</i>-konsertissa yhdistyvät mukaansatempaava musiikki, vauhdikkaat tanssit, värikkäät tausta-animaatiot, pöytäteatteri ja hauska tarina. Laulujen avulla lavalle rakentuu kaunis talvinen ja jouluinen maisema.</p><p>Mimmipussista löytyy yllätyksiä. Pussi avautuu laulun ja leikin avulla jos avautuu, riippuu, millä tuulella Mimmipussi on… Konsertti on vuorovaikutteinen: lapset ja aikuiset pääsevät mukaan leikkimään, tanssimaan ja laulamaan!</p><p><b>Mimmit</b> on yksi Suomen tunnetuimmista lastenmusiikkiyhtyeistä. Mimmit ovat tehneet yli 850 konserttia Suomessa ja ulkomailla ja julkaisseet kahdeksan levyä suomeksi ja yhden ruotsiksi. Ystävyys-levy valittiin vuoden lastenlevyksi 2017 ja Mimmien Pauski vuoden lastenmusiikin tekijäksi 2022. Mimmit-musiikkivideoita on katsottu Youtubessa jo yli 13 miljoonaa kertaa.</p><p><b>Mimmit:</b><br>Pauliina Lerche – laulu, harmonikka, kantele<br>Hannamari Vallila – laulu, viulu, melodika<br>Anssi Salminen/Mikko Malmivaara – kitara, taustalaulu<br>Juha Kujanpää – piano<br>Antti Halmetoja/Luis Herrero – basso, taustalaulu</p>",
                "sv": "<p>Mimmit-bandets konsert Puhuri leder publiken in i julstämning och till vita snödrivor.</p><p>Mimmit ensemble’s ‘Gale’ concert will bring Christmas spirit to the listeners and take them into the midst of white snow.</p>",
                "en": "<p>Mimmit ensemble’s ‘Gale’ concert will bring Christmas spirit to the listeners and take them into the midst of white snow.</p><p>The concert will feature new wintery and yuletide-themed songs and arrangements of beloved classics. Familiar Christmas carols have been given exciting arrangements.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59590/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61328",
            "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/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": 5971,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T11:14:20.191706Z",
                    "last_modified_time": "2024-02-06T13:22:49.255895Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739650.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5971/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-13T11:14:20.170454Z",
            "last_modified_time": "2024-02-06T13:22:49.298274Z",
            "date_published": null,
            "start_time": "2023-12-16T12:00:00Z",
            "end_time": "2023-12-16T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa tervehtimään pukkia!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/13CD2CAC119775BF9EE127C64BA14B0D/Joulupukki"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Joulupukki – Malmitalon joulu"
            },
            "description": {
                "fi": "<p>Tervetuloa tervehtimään pukkia!</p><p>Joulupukki on tavattavissa Malmitalon aulassa lauantaina 16.12. klo 14-16.</p><p>Vapaa pääsy</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61328/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60914",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4655,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:26.349892Z",
                    "last_modified_time": "2024-02-06T13:22:49.165550Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736557.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4655/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:26.206001Z",
            "last_modified_time": "2024-02-06T13:22:49.204786Z",
            "date_published": null,
            "start_time": "2023-12-16T12: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": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/951335582718C391C59B192707111871/DanceAbility_Lasten_inklusiivinen_tanssitunti_",
                "en": "http://www.annantalo.fi/en/events/event/951335582718C391C59B192707111871/DanceAbility_Children_s_inclusive_dance_class"
            },
            "location_extra_info": null,
            "name": {
                "fi": "DanceAbility: Lasten inklusiivinen tanssitunti",
                "en": "DanceAbility: Children's inclusive dance class"
            },
            "description": {
                "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>",
                "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60914/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61152",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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: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:p16327/?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": 5885,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-07T08:14:14.263410Z",
                    "last_modified_time": "2024-02-06T13:22:49.061654Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738104.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5885/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-07T08:14:14.234340Z",
            "last_modified_time": "2024-02-06T13:22:49.105101Z",
            "date_published": null,
            "start_time": "2023-12-16T12: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": "Lonkerot luikertelevat Kontulasta Itikseen, kun jäniksen vuosi 2023 huipentuu Kontula Electronicin Stoan valtaukseen."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6E86015F32D8F40C63100980B6094F1B/Kontula_Electronic_X_Stoa_No_Sleep_til_Stoa"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kontula Electronic X Stoa: No Sleep ’til Stoa – SoS – Sounds of Stoa"
            },
            "description": {
                "fi": "<p>Lonkerot luikertelevat Kontulasta Itikseen, kun jäniksen vuosi 2023 huipentuu Kontula Electronicin Stoan valtaukseen.</p><p>Takaamme, että tämä on paras tapa vetää henkeä ja valmistautua jouluviikkoon sähköisissä tunnelmissa.</p><p>Musaa neljällä lavalla: Kipparistage, Miami Mopo Stage, Kuntokellaristage ja Mäyräbaari. Leffoja ja performanssitaidetta. Yli kaksikymmentä esiintyjää – seuraa julkistuksia some-kanavilla!</p><p>Aloitamme lauantaina kahdelta ja jatkamme klo 23 saakka.</p><p>Artistijulkistuksia...<br>- YA TOSIBA <br>- MICHAEL BLACK ELECTRO <br>- JIMI PYTHON<br>- THE CUCARACHAS <br>- JUHANI SAKSIKÄSI  <br>- ANA COUDURIER <br>- JORI HULKKONEN<br>- HLER <br>- RUNOPIIRI <br>- RIHMASTO <br>- NIFFI D <br>- NAVIER LOOTA <br>- JUNTA<br>- ARTTU PARTINEN<br>- COMATOSE LEVITATION<br>- DJ 5:46 <br>- DEVOLUUTIO <br>- MARY YOUNG X PENNIJEE <br>- BARFUNKEL</p><p>Lue lisää: <u><a href=\"https://www.facebook.com/events/842630750840613/\">Facebook-tapahtuma </a></u></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61152/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60636",
            "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:350/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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/event/name-17998794",
                        "sv": "https://www.lippu.fi/event/name-17998794",
                        "en": "https://www.lippu.fi/event/name-17998794"
                    },
                    "price": {
                        "fi": "14,50 € / 7 €",
                        "sv": "14,50 € / 7 €",
                        "en": "14,50 € / 7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4654,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:25.992014Z",
                    "last_modified_time": "2024-02-06T13:22:48.966814Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730655.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4654/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:25.805466Z",
            "last_modified_time": "2024-02-06T13:22:49.010679Z",
            "date_published": null,
            "start_time": "2023-12-16T11: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": "Kannelmäen voimistelijoiden perinteiset joulunäytökset nähdään jälleen Kanneltalolla.",
                "sv": "Kannelmäen Voimistelijats traditionella julföreställningar ses igen på Gamlasgården.",
                "en": "Kanneltalo again presents traditional Christmas performances by Kannelmäki gymnasts."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B6942E158C675D5A25521C81F20F50F3/Kannelmaen_voimistelijoiden_joulunaytos",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B6942E158C675D5A25521C81F20F50F3/Kannelmaen_Voimistelijats_julforestallning",
                "en": "http://www.kanneltalo.fi/en/events/event/B6942E158C675D5A25521C81F20F50F3/Christmas_show_of_Kannelmaen_Voimistelijat_Kannelmaki_Gymnasts_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kannelmäen voimistelijoiden joulunäytös",
                "sv": "Kannelmäen Voimistelijats julföreställning",
                "en": "Christmas show of Kannelmäen Voimistelijat (Kannelmäki Gymnasts)"
            },
            "description": {
                "fi": "<p>Kannelmäen voimistelijoiden perinteiset joulunäytökset nähdään jälleen Kanneltalolla.</p><p>Tiedot näytöksissä esiintyvistä ryhmistä julkaistaan Kannelmäen voimistelijoiden verkkosivuilla: https://www.kannelmaenvoimistelijat.fi/.<br> <br>Näytöksiä on kaksi samana päivänä, toinen klo 13.30 ja toinen klo 17.</p><p>Kesto: n. 1 t<br>Liput: 14,50 € / 7 €</p>",
                "sv": "<p>Kannelmäen Voimistelijats traditionella julföreställningar ses igen på Gamlasgården.</p><p>Information om grupperna som deltar i föreställningarna finns på Kannelmäen Voimistelijats webbplats: https://www.kannelmaenvoimistelijat.fi/.</p><p>Vi har två föreställningar samma dag, den ena klockan 13.30 och den andra klockan 17.</p><p>Längd:  cirka 1 timma</p>",
                "en": "<p>Kanneltalo again presents traditional Christmas performances by Kannelmäki gymnasts.</p><p>Information on the performing groups is available on the Kannelmäki Gymnasts’ website at https://www.kannelmaenvoimistelijat.fi/.</p><p>There are two performances per day, one at 13:30 and the other at 17:00.</p><p>Duration: 1 hour.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60636/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59954",
            "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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4653,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:25.574896Z",
                    "last_modified_time": "2024-02-06T13:22:48.858024Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731868.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4653/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:28:25.249669Z",
            "last_modified_time": "2024-02-06T13:22:48.902350Z",
            "date_published": null,
            "start_time": "2023-12-16T11:00:00Z",
            "end_time": "2023-12-16T12: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": "Manuchar Zagrosin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4279E05D4BF8659AABF49492F201508C/Viittomakielinen_opastus_Omenan_tuoksu_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Viittomakielinen opastus: \"Omenan tuoksu\""
            },
            "description": {
                "fi": "<p>Manuchar Zagrosin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.</p><p>Opastus järjestetään yhteistyössä Ursa Minorin kanssa. Oppaana Aino Laiho.</p><p>Omenan tuoksu perustuu Halabjassa vuonna 1988 tapahtuneeseen kansanmurhaan, joka on historian suurin siviileihin kohdistunut kaasuhyökkäys.</p><p>Iskussa kuoli paljon naisia ja lapsia ja se on jättänyt lähtemättömät jäljet kurdiväestöön. Kaasuun oli sekoitettu omenan tuoksua, ettei kukaan epäilisi mitään.</p><p>Elokuvan keskushenkilö 17-vuotias Amira kärsii vakavista kivuista ja hengitysoireista. Teos piirtää kuvan invalidisoituneesta Amirasta ja sodan ja väkivallan pitkäaikaisista seurauksista.</p><p>Manuchar yhdistelee dokumentaarisia keinoja fiktioon ja käyttää teoksessa mm. entisen sotapakolaisen runoja ja päiväkirjamerkintöjä. Manucharilla on taustansa vuoksi henkilökohtainen suhde Halabjaan.</p><p>Hän on kiinnostunut erityisesti naisten ja lasten tarinoista, jotka sotakokemuksissa harvoin pääsevät esiin. Teoksen yhtenä teemana on traumat, jotka holokaustia tutkineiden mukaan periytyvät kolmanteen sukupolveen.</p><p>Omenan tuoksu, videoteos:<br>Kesto on 8 min 45 sekuntia, 4K<br>Kielet: suomi ja kurdi<br>Teos ei sovellu lapsille.</p><p>Sisältövaroitus: Hyvä katsoja, otathan huomioon, että jotkut teoksista voivat olla teemaltaan ahdistavia, eivätkä sovellu lapsille tai herkille katsojille.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59954/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59589",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-vuotalo-16844519/",
                        "sv": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-vuotalo-16844519/",
                        "en": "https://www.lippu.fi/event/mimmit-puhuri-koko-perheen-joulukonsertti-vuotalo-16844519/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 4652,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:28:23.731899Z",
                    "last_modified_time": "2024-02-06T13:22:48.761189Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728813.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4652/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:28:22.772049Z",
            "last_modified_time": "2024-02-06T13:22:48.806108Z",
            "date_published": null,
            "start_time": "2023-12-16T11: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": "Mimmit-yhtyeen Puhuri-konsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.",
                "sv": "Mimmit-bandets konsert Puhuri leder publiken in i julstämning och till vita snödrivor.",
                "en": "Mimmit ensemble’s ‘Gale’ concert will bring Christmas spirit to the listeners and take them into the midst of white snow."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/14266AACBC8DA4123FB77759FFC05B1A/Mimmit_Puhuri_Koko_perheen_joulukonsertti_LOPPUUNMYYTY",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/14266AACBC8DA4123FB77759FFC05B1A/Mimmit_Puhuri_Hela_familjens_julkonsert_UTSALD",
                "en": "http://www.vuotalo.fi/en/events/event/14266AACBC8DA4123FB77759FFC05B1A/Mimmit_Gale_yuletide_concert_for_the_whole_family_SOLD_OUT"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Mimmit: Puhuri | Koko perheen joulukonsertti LOPPUUNMYYTY",
                "sv": "Mimmit: Puhuri | Hela familjens julkonsert UTSÅLD",
                "en": "Mimmit: Gale | yuletide concert for the whole family SOLD OUT"
            },
            "description": {
                "fi": "<p>Mimmit-yhtyeen Puhuri-konsertti johdattaa kuuntelijat joulun tunnelmaan ja valkoisten lumihankien keskelle.</p><p>Konsertissa kuullaan ihan uusia talvi- ja jouluaiheisia sekä kaikille tuttuja lauluja. Tutut joululaulut ovat saaneet jännittävät sovitukset, mukana ovat mm. Kulkuset, Porsaita äidin oomme kaikki ja Soihdut sammuu.</p><p><i>Puhuri</i>-konsertissa yhdistyvät mukaansatempaava musiikki, vauhdikkaat tanssit, värikkäät tausta-animaatiot, pöytäteatteri ja hauska tarina. Laulujen avulla lavalle rakentuu kaunis talvinen ja jouluinen maisema.</p><p>Mimmipussista löytyy yllätyksiä. Pussi avautuu laulun ja leikin avulla jos avautuu, riippuu, millä tuulella Mimmipussi on… Konsertti on vuorovaikutteinen: lapset ja aikuiset pääsevät mukaan leikkimään, tanssimaan ja laulamaan!</p><p><b>Mimmit</b> on yksi Suomen tunnetuimmista lastenmusiikkiyhtyeistä. Mimmit ovat tehneet yli 850 konserttia Suomessa ja ulkomailla ja julkaisseet kahdeksan levyä suomeksi ja yhden ruotsiksi. Ystävyys-levy valittiin vuoden lastenlevyksi 2017 ja Mimmien Pauski vuoden lastenmusiikin tekijäksi 2022. Mimmit-musiikkivideoita on katsottu Youtubessa jo yli 13 miljoonaa kertaa.</p><p><b>Mimmit:</b><br>Pauliina Lerche – laulu, harmonikka, kantele<br>Hannamari Vallila – laulu, viulu, melodika<br>Anssi Salminen/Mikko Malmivaara – kitara, taustalaulu<br>Juha Kujanpää – piano<br>Antti Halmetoja/Luis Herrero – basso, taustalaulu</p>",
                "sv": "<p>Mimmit-bandets konsert Puhuri leder publiken in i julstämning och till vita snödrivor.</p><p>Mimmit ensemble’s ‘Gale’ concert will bring Christmas spirit to the listeners and take them into the midst of white snow.</p>",
                "en": "<p>Mimmit ensemble’s ‘Gale’ concert will bring Christmas spirit to the listeners and take them into the midst of white snow.</p><p>The concert will feature new wintery and yuletide-themed songs and arrangements of beloved classics. Familiar Christmas carols have been given exciting arrangements.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59589/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61338",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "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": 5984,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T14:14:20.361504Z",
                    "last_modified_time": "2024-02-06T13:22:48.668674Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739818.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5984/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-13T14:14:20.338849Z",
            "last_modified_time": "2024-02-06T13:22:48.709129Z",
            "date_published": null,
            "start_time": "2023-12-16T11: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": "Supersuositut lastenkirjahahmot Tatu ja Patu nähdään ensimmäistä kertaa valkokankailla."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AFDE1B32EE870A5BE0BC5ECDC304617B/Kanelia_kainaloon_Tatu_ja_Patu_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kanelia kainaloon, Tatu ja Patu! – Malmitalon joulu | Kino Helios"
            },
            "description": {
                "fi": "<p>Supersuositut lastenkirjahahmot Tatu ja Patu nähdään ensimmäistä kertaa valkokankailla.</p><p>Elokuvassa <i>Kanelia kainaloon, Tatu ja Patu!</i> veljekset matkustavat junalla Outolasta jouluiseen Helsinkiin tapaamaan 9-vuotiasta ystäväänsä Veeraa. Kaupungissa heitä odottaa Veeran järjestämä mahtava yllätys! Veera on kuitenkin jouluruuhkien vuoksi myöhässä rautatieasemalta ja veljekset suuntaavat omin neuvoin suureen kaupunkiin.</p><p>Seuraa hullunkurisia sattumuksia pursuileva seikkailu, jossa Tatu ja Patu viilettävät pitkin kaupunkia etsiessään tietään Veeran luo. Innokkaat veljekset haluavat kiihkeästi kuulua joukkoon ja toimia kuten paikalliset joulunvalmistelijat, ja onnistuvatkin siinä melkein. Taidemuseosta löytyy “lahjakas” taiteilija, tavaratalossa joulupukki ja -kuusi menevät iloisesti sekaisin ja kaneliahan voi heittää puuron sijasta vaikka kainaloon!</p><p>Onneksi veljesten nokkela ystävä Veera ottaa ohjat käsiinsä ja ystävykset löytävät lopulta sekä toistensa että Veeran järjestämän jymy-yllätyksen luo!</p><p>Ikäraja: S <br>Kesto 70 min</p><p>Vapaa pääsy. Tervetuloa!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61338/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61588",
            "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:104/?format=api"
                },
                {
                    "@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/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": 6457,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T12:14:50.391327Z",
                    "last_modified_time": "2024-02-06T13:22:48.572914Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741660.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6457/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-07T12:14:50.334215Z",
            "last_modified_time": "2024-02-06T13:22:48.614068Z",
            "date_published": null,
            "start_time": "2023-12-16T10: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": "Satakielen siivet on tarinankerronnan, liikkeen, musiikin ja osallistavien hetkien kudelma."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7203EE9E02243810907E56DAB372BA4C/Satakielen_siivet_Arabian-_ja_suomenkielinen_tarinatuokio_lapsille_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Satakielen siivet: Arabian- ja suomenkielinen tarinatuokio lapsille – Malmitalon joulu"
            },
            "description": {
                "fi": "<p>Satakielen siivet on tarinankerronnan, liikkeen, musiikin ja osallistavien hetkien kudelma.</p><p>Se vie yleisönsä jännittävälle matkalle eri maiden kansantarinoihin, joissa seikkailevat kissa, leijona ja uutta ystävää etsivä pieni harmaa hiiri.</p><p>Esityksessä suomi ja arabia punoutuvat toisiinsa niin, että tapahtumia pystyy seuraamaan vaikka ymmärtäisit vain toista esityksen kielistä. Esityksen avulla suomea äidinkielenään puhuvat lapset saavat kuunnella ja kokea vierasta kieltä, ymmärtäen silti tarinan kulkua. Samalla tavoin äidinkielenään arabiaa puhuvat lapset saavat kohdata oman äidinkielensä muuten suomenkielisessä ympäristössä. Lapset saavat myös mahdollisuuden olla ylpeitä omasta äidinkielestään ja mahdollisesta kaksikielisyydestään.</p><p>”Satakielen siivet” on esitys, joka avaa ovet kulttuurien kohtaamiseen ja kielelliseen monimuotoisuuteen, tarjoten unohtumattoman kokemuksen pienille katsojille. Tervetuloa mukaan taianomaiseen seikkailuun!</p><p>Työryhmä: Markus Luukkonen & Saara Hasan & Sibiri Konate<br>Kohderyhmä: n. 5–9-vuotiaat perheineen<br>Kesto: n. 35 min<br>Paikka: Malmin kirjaston monitoimitila</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61588/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61327",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5970,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-13T11:14:19.745250Z",
                    "last_modified_time": "2024-02-06T13:22:48.481258Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739649.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5970/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-13T11:14:19.725898Z",
            "last_modified_time": "2024-02-06T13:22:48.522573Z",
            "date_published": null,
            "start_time": "2023-12-16T09:00:00Z",
            "end_time": "2023-12-16T11: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": "On tonttupuuhien aika!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2BB8F4DB36E3F277E8483C21C1A71BE5/Tyopaja_Jatsitikkutontut"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Työpaja: Jätsitikkutontut – Malmitalon joulu"
            },
            "description": {
                "fi": "<p>On tonttupuuhien aika!</p><p>Ripinää, rapinaa,<br>kenkien kopinaa,<br>tossujen pehmeää tassutusta,<br>kihinää ja hassutusta!</p><p>Tervetuloa tonttupajaan askartelemaan ihan höpsöjä jätskitikkutonttuja. Tässä pajassa valmistuu värikästäkin värikkäämpi joulu!</p><p>Askartelutyöpajan suunnittelu ja toteutus Ulla-Maija Vanhala/Runoropinoita</p><p>Vapaa pääsy</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61327/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}