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 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=helmet

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 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

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 /linkedevents/v1/event/?end=today&format=api&page=2&start=now
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1021,
        "next": "http://api.hel.fi/linkedevents/v1/event/?end=today&format=api&page=3&start=now",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?end=today&format=api&start=now"
    },
    "data": [
        {
            "id": "helsinki:aghqvbqhqe",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71884/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqvbp5ja/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqvbqak4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqvbqcsm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138485,
                    "license": "cc_by",
                    "created_time": "2024-04-23T10:33:46.459471Z",
                    "last_modified_time": "2024-04-23T10:35:03.740095Z",
                    "name": "Tapahtuma järjestetään kirjaston Nautilus-tilassa",
                    "url": "http://api.hel.fi/linkedevents/media/images/Redi_Kirjasto-10.jpg",
                    "cropping": "320,0,1598,1278",
                    "photographer_name": "Helsingin kaupunki",
                    "alt_text": "Kuvassa tapahtumatilan sisustusta",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-04-23T10:35:07.020566Z",
            "last_modified_time": "2024-04-24T11:26:52.755039Z",
            "date_published": null,
            "start_time": "2024-04-24T14:00:00Z",
            "end_time": "2024-05-15T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pelailua, leffoja, taiteilua..."
            },
            "provider": {
                "fi": "Kalasataman kirjasto"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kiinnostaako pelailu, leffat, musa, taiteilu tai ihan vaan hengailu näiden juttujen äärellä?&nbsp;</p><p>Keskiviikkoisin on Kalasataman kirjaston Nautilus on auki juuri nuoria varten klo 17–19. Saa tulla ja mennä, mukana voi olla vaikka koko kaksi tuntia tai vain osan aikaa.</p><p>Poikkeus: Helatorstain aattona 8.5. nuorten toiminta pidetään klo 17-18.</p><p>Illat on tarkoitettu nuorille 12-vuotiaista alkaen. Paikalla on kirjaston työntekijä ohjaamassa toimintaa. Tervetuloa!&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Nuorten illat keskiviikkoisin"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqvbqhqe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghb2hufkq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:62032/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb2ht6za/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb2hua4a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb2hucce/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138517,
                    "license": "cc_by",
                    "created_time": "2024-04-24T10:24:32.366027Z",
                    "last_modified_time": "2024-04-24T10:25:15.083503Z",
                    "name": "Lukupiirikuva.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Lukupiirikuva.jpg",
                    "cropping": "320,0,1598,1279",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on omenapuu, joka on kukassa.",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138517/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-08T08:12:03.293178Z",
            "last_modified_time": "2024-04-24T10:40:52.394512Z",
            "date_published": null,
            "start_time": "2024-03-21T16:00:00Z",
            "end_time": "2024-05-30T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kaikki kirjallisuudesta kiinnostuneet ovat tervetulleita vaihtamaan ajatuksia tai ihan vain kuuntelemaan keskustelua."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Mosaiikin lukupiiri kokoontuu kerran kuukaudessa torstaisin Mosaiikin kirjaston ryhmätilassa&nbsp;klo 18–19.30. Lukupiirikirjan voit noutaa kirjaston asiakaspalvelupisteeltä kuukautta ennen tapaamiskertaa.</p><p>Kaikki kirjallisuudesta kiinnostuneet ovat tervetulleita vaihtamaan ajatuksia tai ihan vain kuuntelemaan keskustelua. Ei haittaa, vaikka ei olisikaan ehtinyt lukea kirjaa kokonaan.</p><p>&nbsp;</p><p><strong>Lukupiirikirjat ja kokoontumispäivät kevätkaudella:</strong></p><p><strong>22.02.2024&nbsp; Iida&nbsp;Turpeinen: Elolliset</strong></p><p><strong>21.03.2024&nbsp; Guillaume Musso: Tyttö ja yö</strong></p><p><strong>25.04.2024&nbsp; Benjamin Labatut: Maailman kauhea vihreys</strong></p><p><strong>30.05.2024&nbsp; Han Kang: Ihmisen teot</strong></p><p>&nbsp;</p><p>Tervetuloa mukaan sekä vanhat että uudet kävijät!</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Mosaiikin kirjaston lukupiiri"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb2hufkq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghczt3i5y",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23618/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38192/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4804/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczt3cbu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczt3eby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczt3fle/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmqamzgm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmqam3ny/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107042,
                    "license": "event_only",
                    "created_time": "2024-03-11T09:17:06.607499Z",
                    "last_modified_time": "2024-03-11T09:19:31.840798Z",
                    "name": "Kuva: Hanna Lehtonen",
                    "url": "http://api.hel.fi/linkedevents/media/images/Happo_hanna_lehtonen.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "Hanna Lehtonen",
                    "alt_text": "Saksanpaimenkoirarotuinen Lukukoira Happo istuu pienen, kirjoja täynnä olevan pöydän vieressä",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107042/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-11T09:19:34.138409Z",
            "last_modified_time": "2024-04-24T08:30:42.521212Z",
            "date_published": null,
            "start_time": "2024-03-27T15:00:00Z",
            "end_time": "2024-05-22T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haluaisitko harjoitella ääneen lukemista? Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Haluaisitko harjoitella ääneen lukemista? Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää. Lukukoiran kanssa lukutaito kehittyy!</p><p>Lumon lukukoira Hapolle&nbsp;pääset lukemaan kaksi kertaa kuussa keskiviikkoisin&nbsp;klo 17.00–18.00. Loppukeväällä&nbsp;2024 lukukoira on tavattavissa&nbsp;10.4., 24.4.​, 8.5. ja 25.5.</p><p>Lukuhetken kesto on max. 15 minuuttia.&nbsp;Voit lukea koiralle mukaan ottamaasi kirjaa tai valita mieleisesi kirjaston kirjoista. Lukukoiran emäntä on läsnä lukuhetkessä.</p><p>Ikäsuositus on 5-vuotiaasta ylöspäin.</p><p>.</p><p><strong>Ohjeet lukuhetkeä varten:</strong></p><p>Varaa vuoro Lumon kirjaston infotiskiltä tai soittamalla numeroon 043 825 1305.&nbsp;</p><ul><li>Yksi lukija kerrallaan</li><li>Lukukoiran kanssa voi harjoitella ääneen lukemista</li><li>Rauhoitutaan lukemiseen – lukukoira on lukukaveri, ei leikkikaveri</li><li>Lukukoirat pitävät silityksestä. Kysy kuitenkin ensin omistajalta lupa</li><li>Alle kouluikäisillä aikuinen mukaan</li></ul><p>&nbsp;</p><p>Lukukoira Happo&nbsp;on&nbsp;Kennelliiton kouluttama lukukoira.&nbsp;</p><p>&nbsp;</p><p><i>Kuva: Hanna Lehtonen</i></p>"
            },
            "location_extra_info": {
                "fi": "Satuhuone"
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Lukukoira Happo"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczt3i5y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghczq3sae",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18747/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3910/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5217/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq2zsy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq235u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq27ei/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq3alu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq3bza/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq3dda/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq3fwi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq3hca/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq3ili/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq3ldu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107039,
                    "license": "cc_by",
                    "created_time": "2024-03-11T09:04:57.947336Z",
                    "last_modified_time": "2024-03-11T09:06:22.943708Z",
                    "name": "Kuva: Cottonbro Studio / Pexels",
                    "url": "http://api.hel.fi/linkedevents/media/images/pexels-cottonbro-studio-6770981_1_LYRx5Kj.jpg",
                    "cropping": "119,0,596,477",
                    "photographer_name": "Cottonbro Studio / Pexels",
                    "alt_text": "Ompelukonetta käyttävän henkilön kädet pitelevät sinistä kangasta",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107039/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-11T09:06:30.029658Z",
            "last_modified_time": "2024-04-24T08:27:36.885237Z",
            "date_published": null,
            "start_time": "2024-03-20T08:00:00Z",
            "end_time": "2024-05-29T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tarvitsetko apua ompelukoneen tai saumurin käyttöön? Tervetuloa henkilökohtaiseen opastukseen!"
            },
            "provider": {
                "fi": "Korson Martat"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tarvitsetko apua&nbsp;ompelukoneen tai saumurin käyttöön? Tervetuloa henkilökohtaiseen opastukseen! Opastusta on tarjolla&nbsp;keskiviikkoisin&nbsp;klo 10-11&nbsp;ja klo 11-12.&nbsp;</p><p>Opastajana toimii Korson Marttojen Ritva Etelämäki.</p><p>Varaa tunnin opastusaika kirjaston infotiskiltä tai soittamalla Lumon kirjastoon, puh. 043 825 1305.&nbsp;</p><p>Lumon kirjaston pajassa on kaksi ompelukonetta sekä yksi saumuri. Ompelukoneet ovat malliltaan&nbsp;Husqvarna Viking Emerald 116, saumuri taas&nbsp;Bernina L450.&nbsp;</p><p><a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lumon_kirjasto/Lumon_omat/Lumon_kirjaston_paja(215395)\">Lue lisää Lumon kirjaston pajan varustuksesta ja laitteiden varauksesta täältä.</a></p><p>Tervetuloa!</p><p>&nbsp;</p><p>Kuva:&nbsp;Cottonbro Studio / Pexels</p>"
            },
            "location_extra_info": {
                "fi": "Paja"
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Ompelukone- ja saumuriopastus"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczq3sae/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghczr2hya",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p24061/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5470/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8856/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczrzsqi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczrzutm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczrzxla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczrzyyq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczrz2k4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczrz6sy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczr2bne/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczr2c3i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107040,
                    "license": "event_only",
                    "created_time": "2024-03-11T09:08:23.285759Z",
                    "last_modified_time": "2024-03-11T09:10:35.073398Z",
                    "name": "Kuva: Maaria Jäske, tausta: Canva",
                    "url": "http://api.hel.fi/linkedevents/media/images/Papukaijahelmet_sf3cLRn.png",
                    "cropping": "119,0,596,477",
                    "photographer_name": "Maaria Jäske",
                    "alt_text": "Pehmopapukaija Suomen lipun edessä",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107040/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-11T09:10:41.358565Z",
            "last_modified_time": "2024-04-24T08:27:03.438849Z",
            "date_published": null,
            "start_time": "2024-03-20T14:00:00Z",
            "end_time": "2024-05-22T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kotoklubi Kaneli-ryhmä on tarkoitettu vanhemmille ja lapsille. Ryhmässä opimme helppoa suomen kieltä yhdessä. Laulamme ja leikimme."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kotoklubi Kaneli-ryhmä on tarkoitettu vanhemmille ja lapsille. Ryhmässä opimme helppoa suomen kieltä yhdessä. Laulamme ja leikimme.</p><p>Kotoklubi Kaneli kokoontuu Lumon kirjastossa keskiviikkoisin 21.2.-22.5.2024 klo 16.00-16.30.</p><p>Ryhmä on avoin eikä siihen tarvitse ilmoittautua erikseen.</p><p>Tervetuloa mukaan, nähdään kirjaston satuhuoneessa!</p><p>&nbsp;</p><p><i>Kuva: Maaria Jäske, tausta: Canva</i></p>"
            },
            "location_extra_info": {
                "fi": "Satuhuone"
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Kotoklubi Kaneli Vantaa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghczr2hya/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghb4jz6de",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71760/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021800",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzfji/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzhwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzjka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzmpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzoli/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzp6e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzrpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzute/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzwii/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jzxz4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 106666,
                    "license": "cc_by",
                    "created_time": "2024-03-08T12:56:57.773942Z",
                    "last_modified_time": "2024-03-08T13:01:04.389939Z",
                    "name": "Väriä ja voimaa.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/V%C3%A4ri%C3%A4_ja_voimaa.jpg",
                    "cropping": "266,0,1333,1066",
                    "photographer_name": "PIXABAY",
                    "alt_text": "Väriä ja voimaa",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021800",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106666/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-08T13:01:12.102125Z",
            "last_modified_time": "2024-04-24T08:25:57.483476Z",
            "date_published": null,
            "start_time": "2024-03-11T11:00:00Z",
            "end_time": "2024-05-27T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Väriä ja voimaa - maalausta vahvistamaan sisäisiä voimavaroja. Tervetuloa mukaan!</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Väriä ja voimaa - maalausta ja sisäiset voimavarat"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghb4jz6de/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggmu6db24",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:47400/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2607/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2608/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6ceny/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cgea/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6chgi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6ciga/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cjg4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6ck74/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cmuu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cnxi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6coye/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cp4a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cq6e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6csbe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cteq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cugm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cvsy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cxgu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6cyjy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6czkm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6c2ne/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6c3qu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 105828,
                    "license": "cc_by",
                    "created_time": "2024-02-21T13:42:18.262520Z",
                    "last_modified_time": "2024-04-24T06:58:33.855273Z",
                    "name": "Ryhmässä toteutettu vesivärityö",
                    "url": "http://api.hel.fi/linkedevents/media/images/Pilke.jpg",
                    "cropping": "100,0,500,400",
                    "photographer_name": "",
                    "alt_text": "Paperille piirrettyjä käsien ääriviivoja, jotka on maalattu vesivärein.maalattuja",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u321200303050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105828/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-01-02T13:58:56.231776Z",
            "last_modified_time": "2024-04-24T06:58:37.568171Z",
            "date_published": null,
            "start_time": "2024-01-10T11:00:00Z",
            "end_time": "2024-05-29T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ryhmä on tarkoitettu hiljattain muistidiagnoosin saaneille."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p><p>Ryhmä on tarkoitettu hiljattain muistidiagnoosin saaneille ja se tarjoaa vertaistukea samassa elämäntilanteessa oleville. Tavoitteena on tuoda ryhmäläisille mielekästä sisältöä arkeen. Ryhmässä ylläpidetään ja kehitetään muistia erilaisten harjoitusten avulla.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Avoin muistiryhmä"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggmu6db24/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghquyxzmy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74405/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/GTC.Cafe/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/gtc_cafe/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "24.90€",
                        "en": "24.90€"
                    },
                    "info_url": {
                        "fi": "https://gtc-cafe.com/product/art-workshop/",
                        "en": "https://gtc-cafe.com/product/art-workshop/"
                    },
                    "description": {
                        "fi": "Voit maksaa lipun paikan päällä.",
                        "en": "You can pay for the ticket on-site."
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyua3u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyud4u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyufuy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyuhhy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyuiyy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyukk4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyul5m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyuoeq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyuqxq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyutb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyuux4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyuwi4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyux6i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyuzq4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyu3bq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyu4t4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyu6va/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvboe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvdy4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvfki/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvg2u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvimi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvj7a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvlvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvnji/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvppa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvsdq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvu4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvwxq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvyka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyvz3q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyv3nq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyv45q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyv6ve/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywawm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywc7u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywfqu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywhea/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywivi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywkhm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywl3y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywnnm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywpea/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywrme/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywuee/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywwqm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywydy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquywzwq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyw3ie/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyw43q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyw6la/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyw77y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyxcea/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138479,
                    "license": "cc_by",
                    "created_time": "2024-04-23T09:47:50.546525Z",
                    "last_modified_time": "2024-04-23T09:56:12.879267Z",
                    "name": "Art workshop.JPG",
                    "url": "http://api.hel.fi/linkedevents/media/images/Art_workshop.JPG",
                    "cropping": "180,0,900,720",
                    "photographer_name": "Alireza",
                    "alt_text": "Art Workshop",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Art Workshop",
                    "url": "https://drive.google.com/file/d/19rFPfzpjvrieTOyKfyWvX_lQt5lDc1tj/view?usp=sharing",
                    "alt_text": "Art Workshop"
                }
            ],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-23T09:56:49.670441Z",
            "last_modified_time": "2024-04-24T06:12:13.651116Z",
            "date_published": null,
            "start_time": "2024-04-27T10:00:00Z",
            "end_time": "2025-04-26T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 8,
            "audience_max_age": 99,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": 20,
            "minimum_attendee_capacity": 2,
            "enrolment_start_time": "2024-04-10T14:00:00+03:00",
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tutustu sisäiseen taiteilijaasi GTC Cafen kanvasmaalauksen työpajassa! ",
                "en": "Discover your inner artist at GTC Cafe's Canvas Painting Workshop! "
            },
            "provider": {
                "fi": "GTC Cafe - GTC Studio OY",
                "en": "GTC Cafe - GTC Studio OY"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tutustu sisäiseen taiteilijaasi GTC Cafen kanvasmaalauksen työpajassa!&nbsp;<br><br>Liity mukaan luovaan ja rentouttavaan kokemukseen, jossa voit päästää luovuutesi valloilleen kankaalle. Työpajassa taitava maalausmestari &nbsp;opastaa tekniikassa ja tarjoaa arvokkaita vinkkejä sekä vastaa mahdollisiin kysymyksiin.&nbsp;<br>Osallistumismaksuun sisältyy tarvittavat materiaalit, mukaan lukien maali, kangas ja siveltimet. Kangaskoko on 12 x 12 cm, ja tarjolla on akryylimaalia. Osallistujilla on mahdollisuus käyttää joko valmiita teemoja tai luoda omia ainutlaatuisia suunnitelmiaan.</p><p>Työpajan päätteeksi voit viedä valmiin työsi mukaan kotiisi.</p><p>&nbsp;</p><p>GTC Cafe</p><p>Lauantaisin klo 13.00-15.00</p><p>Osallistumismaksu 24,90€, varaukset ja tiedustelut: <a href=\"mailto:cafe@gtc.ee\">cafe@gtc.ee</a>&nbsp;</p>",
                "en": "<p>Discover your inner artist at GTC Cafe's Canvas Painting Workshop!&nbsp;</p><p>Join &nbsp;for a creative and relaxing experience where you can unleash your creativity on canvas. The workshop features a skilled painting master who will guide you through the process and offer valuable tips and techniques. The canvas size is 12 x 12 cm, and acrylic paint will be provided. The participants have the option to either use our pre-designed themes or create their own unique designs.</p><p>The admission fee includes all the necessary materials, such as paint, canvas, and brushes, so you can dive right into your masterpiece. Best of all, you'll have the opportunity to take your artwork home with you at the end of the session!<br><br>&nbsp;</p><p>GTC Cafe</p><p>On Saturdays 13.00-15.00</p><p>Admission fee 24,90€, reservations and inquiries: <a href=\"mailto:cafe@gtc.ee\">cafe@gtc.ee</a>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "GTC Cafe, Lönnrotinkatu 21, 00120 Helsinki",
                "en": "GTC Cafe, Lönnrotinkatu 21, 00120 Helsinki"
            },
            "info_url": {
                "fi": "https://gtc-cafe.com/workshops/painting-on-canvas/",
                "en": "https://gtc-cafe.com/workshops/painting-on-canvas/"
            },
            "name": {
                "fi": "Kanvasmaalauksen työpaja",
                "en": "Canvas Painting Workshop"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquyxzmy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agg2pr3mha",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:35260/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aghb356l6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1385/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5127/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggpz665sq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "0-16€",
                        "sv": "0-16€",
                        "en": "0-16€"
                    },
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 105537,
                    "license": "event_only",
                    "created_time": "2024-02-14T11:53:30.177041Z",
                    "last_modified_time": "2024-02-14T11:56:25.303164Z",
                    "name": "Teerenpeli_tislauspannut.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Teerenpeli_tislauspannut.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "Teerenpelin tislauspannut",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105537/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-14T13:21:20.961092Z",
            "last_modified_time": "2024-04-23T12:59:41.605640Z",
            "date_published": null,
            "start_time": "2024-03-05T09:00:00Z",
            "end_time": "2024-05-31T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 0,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 0,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": "2024-03-05T00:00:00+02:00",
            "enrolment_end_time": "2024-05-31T00:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Teerenpeli viettää vuonna 2024 30-vuotisjuhlavuottaan! ",
                "sv": "År 2024 firar Teerenpeli sitt 30-årsjubileum! ",
                "en": "Teerenpeli will celebrate its 30th anniversary in 2024! "
            },
            "provider": {
                "fi": "Hotelli- ja ravintolamuseo ",
                "sv": "Hotell- och restaurangmuseet",
                "en": "Hotel and Restaurant Museum"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Teerenpeli viettää vuonna 2024 30-vuotisjuhlavuottaan!&nbsp;</p><p>Hotelli- ja ravintolamuseo ja Teerenpeli juhlistavat synttäreitä muun muassa pienoisnäyttelyllä, joka on esillä kevään aikana museon näyttelyikkunassa.</p><p>&nbsp;</p><p>Hotelli- ja ravintolamuseo</p><p>5.3.-31.5.2024</p><p>Ti, to-su klo 11-18, ke klo 11-20</p><p>Sisäänpääsy 6/16€, alle 18-v. vapaa pääsy</p>",
                "sv": "<p>År 2024 firar Teerenpeli sitt 30-årsjubileum!&nbsp;</p><p>Hotell- och restaurangmuseet och Teerenpeli firar födelsedagen med en miniutställning, som pågår under våren i museets utrymmen.</p><p>&nbsp;</p><p>Hotell och restaurangmuseet</p><p>5.3.-31.5.2024</p><p>Ti, to-sö kl 11-18, ons kl 11-20</p><p>Inträde 6/16€, under 18 år fritt inträde</p>",
                "en": "<p>Teerenpeli will celebrate its 30th anniversary in 2024!&nbsp;</p><p>&nbsp;</p><p>The Hotel and Restaurant Museum and Teerenpeli celebrate birthday with a mini exhibition which will be shown in the museum premises.</p><p>&nbsp;</p><p>Hotel and Restaurant Museum</p><p>5.3.-31.5.2024</p><p>Tue, Thu-Sun 11.00-18.00</p><p>Wed 11.00-20.00</p><p>Admission fee 6/16€, under 18 yrs free entry</p>"
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "https://hotellijaravintolamuseo.fi/",
                "sv": "https://hotellijaravintolamuseo.fi/",
                "en": "https://hotellijaravintolamuseo.fi/"
            },
            "name": {
                "fi": "Teerenpeli -pienoisnäyttely",
                "sv": "Teerenpeli-utställning",
                "en": "Teerenpeli Exhibition"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg2pr3mha/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghmz7i3ee",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8269/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p19823/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmz7irxq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmz7ittm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmz7iuzm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmz7iw7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqv6u6pe/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138496,
                    "license": "cc_by",
                    "created_time": "2024-04-23T12:44:01.985933Z",
                    "last_modified_time": "2024-04-23T12:44:25.296629Z",
                    "name": "PICNIC_fridays_pasilan_kirjasto.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/PICNIC_fridays_pasilan_kirjasto.jpg",
                    "cropping": "270,0,1350,1081",
                    "photographer_name": "",
                    "alt_text": "Picnic kori täynnä harrastevälineitä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138496/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                }
            ],
            "created_time": "2024-04-11T11:48:43.438479Z",
            "last_modified_time": "2024-04-23T12:44:28.061775Z",
            "date_published": null,
            "start_time": "2024-04-19T13:00:00Z",
            "end_time": "2024-05-31T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kulttuurikeskus Ninho ry:n järjestämät espanjan- ja portugalinkielisten pienten lasten perheiden tapahtumat jatkuvat Pasilan kirjastossa.",
                "en": "The events organized by Kulttuurikeskus Ninho ry for Spanish and Portuguese speaking families with young children will continue at the Pasila library."
            },
            "provider": {
                "fi": "Kulttuurikeskus Ninho ry",
                "en": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Welcome to PICNIC in Spanish! Free gatherings for Spanish-speaking families and little ones (1-6 years old). Have fun with your children, and make new friends, while you enjoy Helmet's collection of Spanish children's literature.&nbsp;</p><p>Fridays 26.4, 10.5, 24.5 and 31.5.</p><p>4 pm - 5:30 pm &nbsp;</p><p>Group coordinator: Alicia Sevilla.</p><p>Free entrance.&nbsp;</p><p>PICNIC is a Kulttuurikeskus Ninho ry project, with the support of Pasila Library and the Multilingual Library. Funded by the City of Helsinki and TAIKE.<br><br>Tilaisuus on maksuton.&nbsp;</p><p>Tervetuloa!</p><p>Monikielinen kirjasto ja Kulttuurikeskus Ninho ry järjestävät tapahtumat yhteistyönä.</p>",
                "en": "<p>Welcome to PICNIC in Spanish! Free gatherings for Spanish-speaking families and little ones (1-6 years old). Have fun with your children, and make new friends, while you enjoy Helmet's collection of Spanish children's literature.&nbsp;</p><p>Fridays 26.4, 10.5, 24.5 and 31.5.</p><p>4 pm - 5:30 pm &nbsp;</p><p>Group coordinator: Alicia Sevilla.</p><p>Free entrance.&nbsp;</p><p>PICNIC is a Kulttuurikeskus Ninho ry project, with the support of Pasila Library and the Multilingual Library. Funded by the City of Helsinki and TAIKE.</p>"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "en": ""
            },
            "name": {
                "fi": "Picnic (espanjankielinen)",
                "en": "Picnic (spanish)"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmz7i3ee/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqvglziq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71884/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqvglpz4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqvglska/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqvglt7y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107266,
                    "license": "cc_by",
                    "created_time": "2024-03-12T11:33:50.952464Z",
                    "last_modified_time": "2024-04-23T10:56:18.314424Z",
                    "name": "Tervetuloa Babykinoon!",
                    "url": "http://api.hel.fi/linkedevents/media/images/BabyKino_taustakuva.jpg",
                    "cropping": "120,0,597,477",
                    "photographer_name": "Kallion kirjasto",
                    "alt_text": "Babykinon logo",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107266/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                }
            ],
            "created_time": "2024-04-23T10:56:21.329597Z",
            "last_modified_time": "2024-04-23T10:56:21.329618Z",
            "date_published": null,
            "start_time": "2024-04-24T09:00:00Z",
            "end_time": "2024-05-22T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa katsomaan leffoja vauvan kanssa"
            },
            "provider": {
                "fi": "Kalasataman kirjasto"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Joka toinen keskiviikko, 14.2. alkaen parittomina viikkoina, Kalasataman kirjaston ryhmätila muuttuu elokuvasaliksi.&nbsp;<br><br>BabyKino -näytökset on tarkoitettu vanhemmille/hoitajille ja vauvoille.</p><p>- Elokuvan äänet ovat normaalia hiljaisemmalla<br>- Tilassa on himmeä valaistus<br>- Elokuvat ovat ikärajaltaan sallittuja (S)<br>- Lastenvaunut voi jättää parkkiin&nbsp;<br>- Vauvanhoitoa helpottavat lastenhoitohuone, syöttötuoli, vesipiste ja mikroaaltouuni löytyvät vastapäätä Vapaakaupungin lastenhuoneelta.<br>- Voit myös ottaa mukaan kantokassin/turvaistuimen jossa vauvasi voi nukkua leffan aikana.</p><p>Elokuva esitetään aina parittomina viikkoina keskiviikkoisin kahtena näytöksenä klo 12.00 &amp; klo 14.30.</p><p>Esityspäivät:<br>14.2.<br>28.2.<br>13.3.<br>27.3.<br>10.4.<br>24.4.<br>8.5.<br>22.5.</p><p>Elokuvan esittelyn voit lukea suljetusta Facebook-ryhmästä: <a href=\"https://www.facebook.com/groups/babykino\">facebook.com/groups/babykino</a></p><p>Jos taas tahdot liittyä BabyKinon uutiskirjelistalle, klikkaa MailChimpin linkkiä:<a href=\"https://helmet.us9.list-manage.com/subscribe?u=83a49adf0f2c144c5e1e5d1f0&amp;id=282d8e4ad3\"> bit.ly/kallionbabykino</a></p><p>Esitykset ovat aina maksuttomia, tervetuloa!</p><p>Tapahtuma on yhteistuotanto Kallion kirjaston kanssa.</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Babykino Kalasataman kirjastossa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqvglziq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agha4ejdsq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4eiqlm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4eissi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4eit4a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4eivhy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4eiwsm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4eix34/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4eizeq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4ei2v4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 106429,
                    "license": "event_only",
                    "created_time": "2024-03-05T10:00:58.774467Z",
                    "last_modified_time": "2024-03-20T13:08:32.206777Z",
                    "name": "Valokuva: Juhani Räty/Vantaan kaupunki",
                    "url": "http://api.hel.fi/linkedevents/media/images/Auttajaklubi_LINKED_EVENTS_1.jpg",
                    "cropping": "240,0,1200,960",
                    "photographer_name": "Juhani Räty",
                    "alt_text": "Henkilöt katselevat kannettavan tietokoneen ruutua, yksi kirjoittaa vihkoon",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106429/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-05T10:03:08.064806Z",
            "last_modified_time": "2024-04-23T10:39:12.445139Z",
            "date_published": null,
            "start_time": "2024-03-25T16:00:00Z",
            "end_time": "2024-05-20T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.",
                "en": "Would you like to learn Finnish? Let's Read Together -group gathers once a week."
            },
            "provider": {
                "fi": "Luetaan yhdessä -verkosto",
                "en": "Let's Read Together Network"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Huom! Ryhmä on peruttu maanantaina 29.4.2024.</p><p>---</p><p>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.&nbsp;</p><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.&nbsp;</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.&nbsp;</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p>",
                "en": "<p>Please note that group meeting is canceled on Monday, April 29.</p><p>---</p><p>Would you like to learn Finnish? Let’s Read Together -group&nbsp;gathers once a week for about two hours.</p><p>The group&nbsp;practices reading, writing, listening and talking in Finnish.&nbsp;</p><p>Teachers of the groups are volunteers.&nbsp;</p><p>Studying is free.&nbsp;</p><p>You can take your children with you.&nbsp;</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).&nbsp;</p><p>Please note that group does not meet on April 1 (Easter Monday).</p><p>Photo: Juhani Räty/City of Vantaa&nbsp;</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p><p>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Kerhotila (3. kerros)",
                "en": "Club Room (3rd floor)"
            },
            "info_url": {
                "fi": "",
                "en": ""
            },
            "name": {
                "fi": "(Peruttu 29.4.) Suomen kielen opetusryhmä",
                "en": "(Canceled on 29.4.) Finnish Language Study Group"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agha4ejdsq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghkfyrlfe",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8841/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u3212003035",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyqldu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyqmwq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyqojq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyqroe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyqw6y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyq2je/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyq4oy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyq6ai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyq7sa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyrbfu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyrcxe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyrei4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 137632,
                    "license": "event_only",
                    "created_time": "2024-04-03T07:31:46.220681Z",
                    "last_modified_time": "2024-04-03T07:35:05.543233Z",
                    "name": "Kuva1.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kuva1_Odfx8fl.jpg",
                    "cropping": "247,0,1229,982",
                    "photographer_name": "",
                    "alt_text": "Kuvassa Carcassonne lautapelin osia läheltä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u3212003035",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137632/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-04-03T07:35:14.997856Z",
            "last_modified_time": "2024-04-23T10:19:04.249993Z",
            "date_published": null,
            "start_time": "2024-04-08T08:00:00Z",
            "end_time": "2024-06-24T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vapaaehtoisen opastuksella pelataan eri lautapelejä"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Vapaaehtoisen opastuksella pelataan eri lautapelejä. Tervetuloa mukaan! Lisätietoja 09 310 46925.&nbsp;</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti. Saat maksuttoman palvelukeskuskortin seniorikeskuksen neuvonnasta.&nbsp;</p><p>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Lautapelien pelaamista"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghkfyrlfe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agg7sa6y7a",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6f7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6ili/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6jy4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6lfi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6mry/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6ohu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6pxe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6t6u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 106270,
                    "license": "cc_by",
                    "created_time": "2024-03-01T07:49:56.418783Z",
                    "last_modified_time": "2024-03-01T07:56:29.746468Z",
                    "name": "sunnuntaikielikahvila.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/sunnuntaikielikahvila.jpg",
                    "cropping": "213,0,1066,853",
                    "photographer_name": "StickSnap",
                    "alt_text": "Tule juttelemaan suomea mukavassa seurassa!",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106270/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-01T07:56:35.460963Z",
            "last_modified_time": "2024-04-23T10:06:18.540379Z",
            "date_published": null,
            "start_time": "2024-03-24T13:00:00Z",
            "end_time": "2024-05-26T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule harjoittelemaan suomea mukavassa seurassa!",
                "en": "Come practice Finnish in wonderful company! "
            },
            "provider": {
                "fi": "Sunnuntaikielikahvila",
                "en": "Sunday Language Cafe"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tule harjoittelemaan suomea mukavassa seurassa! Kielikahvilamme on tarkoitettu kaikille, jotka haluavat oppia tai ylläpitää suomen kielen taitoaan. Myös sinä suomea äidinkielenäsi puhuva olet tervetullut keskustelupiiriin!</p><p>Kokoonnumme sunnuntaisin 14.1. alkaen kirjaston kokoushuone Kanervassa pohjakerroksessa klo 15–16.30.</p><p>Tervetuloa juttelemaan rennossa ja mukavassa ilmapiirissä! Keskustelupiiriin ei tarvitse ilmoittautua.</p><p>Kielikahvilan järjestävät vapaaehtoiset S2-opettajat.</p><p>&nbsp;</p>",
                "en": "<p>Come practice Finnish in wonderful&nbsp;company! Our language cafe is for those who wish to learn and maintain&nbsp;their Finnish language skills. Native Finnish speakers are also welcome!</p><p>We meet&nbsp;at&nbsp;<strong>Itäkeskus Library</strong>&nbsp;in&nbsp;meeting room&nbsp;<strong>Kanerva at 3-4.30pm&nbsp;every Sunday.&nbsp;</strong>Spring season starts Jan 14th. No pre-registration. Free of charge. Everyone is welcome!</p><p>Organized by Finnish as a second language teacher volunteers.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Kokoushuone Kanerva",
                "en": "Conference Room Kanerva"
            },
            "info_url": {
                "fi": "",
                "en": ""
            },
            "name": {
                "fi": "Sunnuntaikielikahvila",
                "en": "Sunday Language Cafe"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg7sa6y7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqunwhwq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:74405/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/GTC.Cafe/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/gtc_cafe/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "5€",
                        "en": "5€"
                    },
                    "info_url": {
                        "fi": "https://gtc-cafe.com/product/backgammon-tournament/",
                        "en": "https://gtc-cafe.com/product/backgammon-tournament/"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunroea/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunrrb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunrs7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunrvba/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunrw6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunry5e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunr25a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunr45a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunsbcq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunsgf4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunsjxa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunsoky/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunsteu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunsxly/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquns23e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquns53m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquns7z4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntcl4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntfny/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunth34/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntjy4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntlwm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntnuu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntpua/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntrrm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunttse/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntwtm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghquntzvi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunt3uu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunt5tu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunt7ui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunubsq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunudru/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunufvy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunuhsy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunukq4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqununre/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunup6m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunur24/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunutwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunuvsq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunuxpa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunuzla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunu3fm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunu5kq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunvake/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunvcwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunveue/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunvgqy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunviri/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunvko4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunvmsq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunvop4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunvrdq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138016,
                    "license": "cc_by",
                    "created_time": "2024-04-12T11:57:32.957366Z",
                    "last_modified_time": "2024-04-12T12:07:49.621371Z",
                    "name": "highres_516142988.jpeg",
                    "url": "http://api.hel.fi/linkedevents/media/images/highres_516142988.jpeg",
                    "cropping": "162,0,813,650",
                    "photographer_name": "Alireza",
                    "alt_text": "Backgammon-turnaukseen - Backgammon Tournament",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138016/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Backgammon-turnaukseen - Backgammon Tournament",
                    "url": "https://drive.google.com/file/d/1LlmJ2q2CQU9qtIDGmh28AyHCzAnf-iiZ/view?usp=sharing",
                    "alt_text": "Backgammon-turnaukseen - Backgammon Tournament"
                }
            ],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-23T09:08:33.368608Z",
            "last_modified_time": "2024-04-23T09:24:17.737910Z",
            "date_published": null,
            "start_time": "2024-04-24T15:00:00Z",
            "end_time": "2025-04-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 9,
            "audience_max_age": 99,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": 14,
            "minimum_attendee_capacity": 2,
            "enrolment_start_time": "2024-04-12T16:00:00+03:00",
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule mukaan jännittävään Backgammon-turnaukseen joka keskiviikko klo 18 GTC Cafessa!",
                "en": "Join for an exciting Backgammon Tournament every Wednesday at 18.00 at GTC Cafe!"
            },
            "provider": {
                "fi": "GTC Cafe - GTC Studio OY",
                "en": "GTC Cafe - GTC Studio OY"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tule mukaan jännittävään Backgammon-turnaukseen joka keskiviikko klo 18 GTC Cafessa!</p><p>Kaikki backgammon-harrastajat ja pelaajat kaikilla tasoilla, nyt on aika heittää nopat ja suunnitella siirrot! Viikoittainen backgammon-turnaus on täynnä hauskaa kilpailua ja mahdollisuus näyttää taitosi.</p><p>Olitpa kokenut pelaaja tai vasta aloittelija, kaikki ovat tervetulleita mukaan. Ota ystäväsi mukaan, haasta kanssapelaajia ja nauti GTC Cafen vilkkaasta ilmapiiristä.</p><p>&nbsp;</p><p>GTC Café</p><p>Keskiviikkoisin 18.00-20.00</p><p>Osallistumismaksu 5€</p><p>Tapahtuman päätteeksi on mahdollista &nbsp;pelata yli 130 lautapeliä, jotka ovat saatavilla kahvilassa</p>",
                "en": "<p>Join for an exciting Backgammon Tournament every Wednesday at 18.00 at GTC Cafe!</p><p>Calling all backgammon enthusiasts and players of all levels: it's time to roll the dice and strategize your moves. The weekly backgammon tournament promises an evening filled with fun, competition, and the chance to showcase your skills.</p><p>Whether you're a seasoned player or new to the game, everyone is welcome to participate. Bring your friends, challenge fellow gamers, and enjoy the lively atmosphere of GTC Cafe.&nbsp;</p><p>&nbsp;</p><p>GTC Cafe</p><p>On Wednesdays 18.00-20.00</p><p>Admission fee 5€</p><p>Furthermore, following the event's conclusion, you have the opportunity to enjoy unlimited access to and play more than 130 board games available at the cafe.</p>"
            },
            "location_extra_info": {
                "fi": "GTC Cafe, Lönnrotinkatu 21, 00120 Helsinki",
                "en": "GTC Cafe, Lönnrotinkatu 21, 00120 Helsinki"
            },
            "info_url": {
                "fi": "https://gtc-cafe.com/backgammon/",
                "en": "https://gtc-cafe.com/backgammon/"
            },
            "name": {
                "fi": "Backgammon-turnaus",
                "en": "Backgammon Tournament"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqunwhwq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghiidwv5i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghiidwrm4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghiidwsru/?format=api"
                }
            ],
            "images": [
                {
                    "id": 137691,
                    "license": "cc_by",
                    "created_time": "2024-04-04T06:41:06.303716Z",
                    "last_modified_time": "2024-04-04T06:42:26.334429Z",
                    "name": "Välkommen till Nordiska litteraturcirkeln!",
                    "url": "http://api.hel.fi/linkedevents/media/images/Banner_website_square.png",
                    "cropping": "400,0,2000,1600",
                    "photographer_name": "Nordisk kulturkontakt",
                    "alt_text": "Välkommen till Nordiska litteraturcirkeln!",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137691/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-28T07:55:48.593746Z",
            "last_modified_time": "2024-04-23T08:50:09.419782Z",
            "date_published": null,
            "start_time": "2024-04-24T14:00:00Z",
            "end_time": "2024-05-29T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa pohjoismaiseen kirjallisuuspiiriin, jonka toteuttavat Pohjoismaisen kulttuuripisteen kirjasto ja Helsingin Keskustakirjasto Oodi.",
                "sv": "Välkommen till Nordiska litteraturcirkeln, ett samarbete mellan Nordisk kulturkontakts bibliotek och Helsingfors centrumbibliotek Ode!",
                "en": "Welcome to the Nordic literature circle, a collaboration between the Nordic Culture Point library and the Helsinki Central Library Oodi!"
            },
            "provider": {
                "fi": "Keskustakirjasto Oodi ja Pohjoismaisen kulttuuripisteen kirjasto",
                "sv": "Helsingfors centrumbibliotek Ode och Nordisk kulturkontakts bibliotek",
                "en": "Helsinki Central Library Oodi and Nordic Culture Point library"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa pohjoismaiseen kirjallisuuspiiriin, jonka toteuttavat <strong>Pohjoismaisen kulttuuripisteen kirjasto</strong> ja <strong>Helsingin Keskustakirjasto Oodi</strong>. Kevätkaudella tapaamme kerran kuussa Keskustakirjasto Oodissa tai Pohjoismaisen kulttuuripisteen kirjastossa. Luemme pohjoismaista kaunokirjallisuutta ja keskustelemme teoksista yhdessä, mutta osallistuminen on mahdollista myös ilman kirjan lukemista. Seuraavan kerran kirja valitaan kussakin tapaamisessa. Tapahtumiin ei tarvitse ilmoittautua ennakkoon. Keskustelun kielenä on ruotsi.</p><p>31.1.2024 luemme Sally Salmisen Katrinan. Tapaamme Pohjoismaisen kulttuuripisteen kirjastolla osoitteessa Kaisaniemenkatu 9.&nbsp;</p><p>27.2.2024 tapaamme Oodissa ja luemme Helle Hellen Om du vill.</p><p>20.3.2024 tapaamme Pohjoismaisen kulttuuripisteen kirjastolla ja luemme Quynh Tranin teoksen Skugga och svalka.</p><p>24.4.2024 tapaamme Oodissa ja luemme Ragnar Jónassonin teoksen Snöblind.</p><p>29.5.2024 tapaamme Pohjoismaisen kulttuuripisteen kirjastolla.</p>",
                "sv": "<p>Välkommen till Nordiska litteraturcirkeln, ett samarbete mellan <strong>Nordisk kulturkontakts bibliotek</strong> och<strong> Helsingfors centrumbibliotek Ode</strong>! Vi träffas en gång i månaden under vårterminen i centrumbiblioteket Ode eller i Nordisk kulturkontakts bibliotek. Vi läser nordisk skönlitteratur och diskuterar verken tillsammans. Du behöver inte ha läst boken för att kunna delta. Då vi träffas väljer vi bok för nästa gång. Ingen förhandsanmälan krävs. Vi talar svenska/skandinaviska.</p><p>Den 31.1.2024 läser vi Katrina av Sally Salminen. Vi ses i Nordisk kulturkontakts bibliotek Kajsaniemigatan 9.</p><p>Den 27.2.2024 ses vi i Ode och läser Helle Helles Om du vill.</p><p>Den 20.3.2024 ses vi i Nordisk kulturkontakts bibliotek och läser&nbsp;Quynh Trans Skugga och svalka.</p><p>Den 24.4.2024 ses vi i Ode och läser Snöblind av Ragnar Jónasson.</p><p>Den 29.5.2024 ses vi i Nordisk kulturkontakts bibliotek.&nbsp;</p>",
                "en": "<p>Welcome to the Nordic literature circle, a collaboration between the <strong>Nordic Culture Point library</strong> and the <strong>Helsinki Central Library Oodi</strong>!</p><p>We meet once a month&nbsp;at Helsinki Central Library Oodi or at the Nordic Culture Point library. We read Nordic fiction and discuss the work&nbsp;together. You do not need to have read the book to participate. When we meet, we'll choose a book for the next meeting. No prior registration is required. We speak Swedish/Scandinavian.</p><p>31.1.2024 we will be reading and discussing&nbsp;Katrina written by Sally Salminen. Join us&nbsp;at the Nordic Culture Point library at&nbsp;Kaisaniemenkatu 9.&nbsp;</p><p>27.2.2024 we will be reading and discussing Om du vill by Helle Helle. Join us in Oodi!</p><p>20.3.2024 we will meet in the Nordic Culture Point library and discuss Skugga och svalka by Quynh Tran.</p><p>24.4.2024 we will meet in Oodi and discuss Snöblind by Ragnar Jónasson.</p><p>29.5.2024 we will meet in the Nordic Culture Point library.</p>"
            },
            "location_extra_info": {
                "fi": "Minna Canth- matto, 3. krs.",
                "sv": "Minna Canth- mattan, 3. vån.",
                "en": "Minna Canth -rug, 3rd floor"
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Pohjoismainen kirjallisuuspiiri",
                "sv": "Nordisk litteraturcirkel",
                "en": "Nordic literature circle"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghiidwv5i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqk73avi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/osoite:pursimiehenkatu_3_helsinki/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/artventure.helsinki/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "24,90€",
                        "en": "24,90€"
                    },
                    "info_url": {
                        "fi": "https://artventure.fi/collections/statue-painting-workshop",
                        "en": "https://artventure.fi/collections/statue-painting-workshop"
                    },
                    "description": {
                        "fi": "Hintaan sisältyy patsas, tarvikkeet ja ohjaus.",
                        "en": "The price includes the statue, equipment, and guidance."
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqk723nm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqk725d4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 137648,
                    "license": "cc_by",
                    "created_time": "2024-04-03T09:28:20.684269Z",
                    "last_modified_time": "2024-04-03T09:45:57.021237Z",
                    "name": "61FD9C58-E912-4F19-911D-F2D78236A66F.jpeg",
                    "url": "http://api.hel.fi/linkedevents/media/images/61FD9C58-E912-4F19-911D-F2D78236A66F.jpeg",
                    "cropping": "400,0,2000,1600",
                    "photographer_name": "",
                    "alt_text": "Patsas",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137648/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-22T11:09:45.014694Z",
            "last_modified_time": "2024-04-23T08:06:47.211594Z",
            "date_published": null,
            "start_time": "2024-04-24T13:00:00Z",
            "end_time": "2024-05-08T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": 18,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Artventure tarjoaa hauskoja patsasmaalausworkshoppeja, jossa voit päästää luovuutesi valloilleen maalaamalla oman näköisen patsaasi. ",
                "en": "Artventure offers fun statue painting workshops where you can unleash your creativity by painting your own statue. "
            },
            "provider": {
                "fi": "Artventure",
                "en": "Artventure"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Artventure tarjoaa hauskoja patsasmaalausworkshoppeja, jossa voit päästää luovuutesi valloilleen maalaamalla oman näköisen patsaasi. Pääset valitsemaan haluamasi patsaan Artventuren valokoimasta.&nbsp;</p><p>Tule luomaan oma patsastaideteoksesi rentouttavassa ympäristössä! Aikaisempaa maalauskokemusta ei tarvita. Tämä on myös oiva mahdollisuus tulla tekemään muistoja rakkaittesi kanssa. Workshopin loputtua saat patsaan kotiin vietäväksi.</p><p>&nbsp;</p><p>Muud Creative Office, Pursimiehenkatu 3</p><p>24.4.2024</p><p>16.00-19.00</p><p>&nbsp;</p><p>8.5.2024</p><p>17.00-20.00</p><p>&nbsp;</p><p>Osallistumismaksu 24,90€</p>",
                "en": "<p>Artventure offers fun statue painting workshops where you can unleash your creativity by painting your own statue. You get to choose your desired statue from Artventure's selection.&nbsp;</p><p>Come and create your own statue artwork in a relaxing environment! No previous painting experience is required. This is also a great opportunity to make memories with your loved ones.</p><p>&nbsp;At the end of the workshop, you can take the statue home with you.</p><p>&nbsp;</p><p>Muud Creative Office, Pursimiehenkatu 3</p><p>24.4.2024</p><p>16.00-19.00</p><p>&nbsp;</p><p>8.5.2024</p><p>17.00-20.00</p><p>&nbsp;</p><p>Admission fee 24,90€</p>"
            },
            "location_extra_info": {
                "fi": "Muud creative office ",
                "en": "Muud creative office"
            },
            "info_url": {
                "fi": "https://artventure.fi/",
                "en": "https://artventure.fi/"
            },
            "name": {
                "fi": "Patsasmaalaus workshop",
                "en": "Statue Painting Workshop"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqk73avi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqkdzsti",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:68273/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10649/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 138414,
                    "license": "event_only",
                    "created_time": "2024-04-22T09:01:24.617250Z",
                    "last_modified_time": "2024-04-22T09:07:12.673964Z",
                    "name": "Jussi Hellsten Haaveita",
                    "url": "http://api.hel.fi/linkedevents/media/images/Jussi_Hellsten_haaveita_kropattu.jpg",
                    "cropping": "288,0,1438,1151",
                    "photographer_name": "Jussi Hellsten",
                    "alt_text": "Jussi Hellsten Haaveita",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138414/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-22T09:07:13.201923Z",
            "last_modified_time": "2024-04-23T07:09:43.498107Z",
            "date_published": null,
            "start_time": "2024-04-03T06:00:00Z",
            "end_time": "2024-04-30T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 50,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pikku-Finlandian Finlandia Galleriassa huhtikuun ajan Jussi Hellstenin Haaveita-valokuvanäyttely. ",
                "en": "Jussi Hellsten is an award-winning photographer and director, who spent around two weeks volunteering for Abilis documenting the lives of persons "
            },
            "provider": {
                "fi": "Finlandia-talo Oy",
                "en": "Finlandia-talo Oy"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Pikku-Finlandian Finlandia Galleriassa huhtikuun ajan Jussi Hellstenin Haaveita-valokuvanäyttely.&nbsp;</p><p>Jussi Hellsten on palkintoja voittanut valokuvaaja ja ohjaaja, joka vietti toukokuussa 2023 kaksi viikkoa Abilis-säätiön vapaaehtoisena dokumentoiden vammaisten ihmisten elämää Abiliksen ohjelmamaissa Etiopiassa ja Mosambikissa.</p><p>Näyttely kertoo globaalin etelän vammaisten ihmisten toiveista ja haaveista.</p><p>”Tämä valokuvanäyttely on heistä, ei minusta.”</p><p>”Vammaisten ihmisten asema globaalissa etelässä on äärimmäisen haastava. Monet ovat kokeneet syrjintää, heitteillejättöä ja väkivaltaa. Valtiollisilta tahoilta voi olla vaikeaa tai joissain tapauksissa mahdotonta saada tietoa omista oikeuksista.”</p><p>&nbsp;</p><p>Pikku-Finlandia</p><p>3.-30.4.2024</p><p>Ma-pe 9.00-18.00<br>La 11.00-18.00</p><p>Vapaa pääsy</p><p>&nbsp;</p><p>Näyttelyn teokset ovat myynnissä. Kiinnostuneet voivat ottaa yhteyttä Abilis-säätiöön. Tuotto käytetään kokonaisuudessaan globaalin etelän vammaisten ihmisten tukemiseksi</p>",
                "en": "<p>Jussi Hellsten is an award-winning photographer and director, who spent around two weeks volunteering for Abilis documenting the lives of persons with disabilities in Abilis’ programme countries Ethiopia and Mozambique.</p><p>The exhibition presents the hopes and dreams of persons with disabilities in the Global South.</p><p>”This photography exhibition is about them, not about me.”</p><p>”The status of persons with disabilities in the Global South is extremely challenging. Many have faced discrimination, negligence or violence. For persons with disabilities it can be hard or even impossible to get information on their own rights from the state actors.”</p><p><br>Little Finlandia<br>3.-30.4.2024<br>Mon-Fri 9.00-18.00<br>Sat 11.00-18.00<br>Free entry</p><p>&nbsp;</p><p>All exhibition pieces are for sale. All interested can be in contact with the Abilis Foundation or Gallery Art Kaarisilta’s personnel. All proceeds are entirely used to support persons with disabilities in the Global South.</p>"
            },
            "location_extra_info": {
                "fi": "Pikku-Finlandia on upea puurakenteinen elämysten keskus. Töölönlahden päädyssä sijaitsee kaikille avoinna oleva Finlandia Cafe&Wine ja Finlandia Galleria. ",
                "en": ""
            },
            "info_url": {
                "fi": "https://www.finlandiatalo.fi/tapahtumat/haaveita-jussi-hellsten/",
                "en": "https://www.finlandiatalo.fi/tapahtumat/haaveita-jussi-hellsten/"
            },
            "name": {
                "fi": "Jussi Hellsten: Haaveita ",
                "en": "Jussi Hellsten: Dreams"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqkdzsti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghfwb5hey",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:62032/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfwb47qm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfwb5b7a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfwb5dqa/?format=api"
                }
            ],
            "images": [
                {
                    "id": 111776,
                    "license": "cc_by",
                    "created_time": "2024-03-20T08:41:39.483434Z",
                    "last_modified_time": "2024-03-20T09:24:51.420359Z",
                    "name": "Digitukiklinikka",
                    "url": "http://api.hel.fi/linkedevents/media/images/hands-820272_1280.jpg",
                    "cropping": "100,0,501,400",
                    "photographer_name": "Pixabay",
                    "alt_text": "Lähikuva käsistä, jotka selaavat tablettia.",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/111776/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-20T08:43:32.015456Z",
            "last_modified_time": "2024-04-23T06:45:41.560294Z",
            "date_published": null,
            "start_time": "2024-03-23T11:00:00Z",
            "end_time": "2024-05-18T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Digitukiklinikka auttaa erilaisissa pulmissa tietokoneiden, älypuhelinten ja muiden laitteiden kanssa. "
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Digitukiklinikka lauantailta 20.4. on peruttu, seuraava digitukiklinikka on la 18.5. klo 13-15. Digitukiklinikka auttaa erilaisissa pulmissa tietokoneiden, älypuhelinten ja muiden laitteiden kanssa. Tule kysymään vaikkapa uuden laitteen käyttöönotosta, tiedostojen siirrosta tai puhelimen asetuksista. Ei ennakkoilmoittautumista eikä ajanvarausta, voit vain tulla paikalle.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Digitukiklinikka"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfwb5hey/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqjnaim4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20501/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/3aDXNz2Vp",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "Normaali 30 € / Eläkeläinen 25 € / Opiskelija 10 €",
                        "sv": "Ordinarie 30 € / Pensionär 25 € / Studerande 10 €",
                        "en": "Normal 30 € / Pensioner 25 € / Student 10 €"
                    },
                    "info_url": {
                        "fi": "https://klassikkoparatiisilive.com",
                        "sv": "https://klassikkoparatiisilive.com",
                        "en": "https://klassikkoparatiisilive.com"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 138406,
                    "license": "cc_by",
                    "created_time": "2024-04-22T07:25:56.885420Z",
                    "last_modified_time": "2024-04-22T07:27:38.075398Z",
                    "name": "Klassikkoparatiisi LIVE",
                    "url": "http://api.hel.fi/linkedevents/media/images/klapali_24_banneri_huhti_Suuri.jpeg",
                    "cropping": "324,0,1623,1299",
                    "photographer_name": "",
                    "alt_text": "Klassikkoparatiisi LIVE konsertti 28.4. Balderin salissa klo 16",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2024-04-22T07:27:38.620073Z",
            "last_modified_time": "2024-04-23T06:08:49.551302Z",
            "date_published": null,
            "start_time": "2024-04-28T13:00:00Z",
            "end_time": "2024-04-28T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 120,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Klassikkoparatiisi LIVE: Brahms – Tanssimestari | f-molliklarinettisonaatti ja valsseja",
                "sv": " Klassikerparadiset LIVE: Brahms – Dansens mästare | Klarinettsonat i f-moll och valser",
                "en": "Classics Paradise LIVE: Brahms – Master of Dance | Clarinet Sonata in f minor and Waltzes"
            },
            "provider": {
                "fi": "Klassikkoparatiisi LIVE",
                "sv": "Klassikerparadiset LIVE",
                "en": "Classics Paradise LIVE"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Klassikkoparatiisi LIVE: Brahms – Tanssimestari | f-molliklarinettisonaatti ja valsseja</p><p>Klassikkoparatiisi LIVEn järjestämässä konsertissa esitetään Brahmsin sonaatti ja valsseja.</p><p>&nbsp;</p><p>Esiintyjät:</p><p>Harri Mäki, klarinetti&nbsp;</p><p>Tuija Hakkila, piano&nbsp;</p><p>Antti Hotti, piano&nbsp;</p><p>&nbsp;</p><p>Balderin sali</p><p>28.4.2024</p><p>16.00-18.00</p><p>&nbsp;</p><p>Liput 10-30€, varaukset: <a href=\"http://klassikkoparatiisilive.com/?fbclid=IwZXh0bgNhZW0CMTAAAR04DvU4mBREb-rNthxeMNcKwCmZ_gjOcKbHwHxYb2CvXPIAonDHY9xUHRc_aem_Af941UnX5p3eTnETb0gJIPireapqu-45xCLWw7ipUYX_f5wV6wjn7Tsvd0u8NJkAbMf41s-NW7A4CGJ52irRIABK\">klassikkoparatiisilive.com</a> tai <a href=\"mailto:klassikkoparatiisilive@gmail.com\">klassikkoparatiisilive@gmail.com</a>&nbsp;</p><p>Huom! Balderin sali sijaitsee hissittömän rakennuksen kolmannessa kerroksessa</p>",
                "sv": "<p>&nbsp;Klassikerparadiset LIVE: Brahms – Dansens mästare | Klarinettsonat i f-moll och valser</p><p>&nbsp;</p><p>Harri Mäki, klarinett&nbsp;</p><p>Tuija Hakkila, piano</p><p>Antti Hotti, piano</p><p>&nbsp;</p><p>Balders sal</p><p>28.4.2024</p><p>16.00-18.00</p><p>&nbsp;</p><p>Biljetter 10-30€, bokningar på <a href=\"http://klassikkoparatiisilive.com/?fbclid=IwZXh0bgNhZW0CMTAAAR04DvU4mBREb-rNthxeMNcKwCmZ_gjOcKbHwHxYb2CvXPIAonDHY9xUHRc_aem_Af941UnX5p3eTnETb0gJIPireapqu-45xCLWw7ipUYX_f5wV6wjn7Tsvd0u8NJkAbMf41s-NW7A4CGJ52irRIABK\">klassikkoparatiisilive.com</a> eller <a href=\"mailto:klassikkoparatiisilive@gmail.com\">klassikkoparatiisilive@gmail.com</a></p><p>Vänligen observera att Balders sal ligger på tredje våningen i en byggnad utan hissar</p>",
                "en": "<p>Classics Paradise LIVE: Brahms – Master of Dance | Clarinet Sonata in f minor and Waltzes</p><p>&nbsp;</p><p>Harri Mäki, clarinet</p><p>Tuija Hakkila, piano</p><p>Antti Hotti, piano</p><p>&nbsp;</p><p>Balderin sali Hall</p><p>28.4.2024</p><p>16.00-18.00</p><p>&nbsp;</p><p>Tickets 10-30€, reservations at <a href=\"http://klassikkoparatiisilive.com/?fbclid=IwZXh0bgNhZW0CMTAAAR04DvU4mBREb-rNthxeMNcKwCmZ_gjOcKbHwHxYb2CvXPIAonDHY9xUHRc_aem_Af941UnX5p3eTnETb0gJIPireapqu-45xCLWw7ipUYX_f5wV6wjn7Tsvd0u8NJkAbMf41s-NW7A4CGJ52irRIABK\">klassikkoparatiisilive.com</a> or <a href=\"mailto:klassikkoparatiisilive@gmail.com\">klassikkoparatiisilive@gmail.com</a></p><p>Please note that Balder Hall is located on the third floor of a building without elevators</p>"
            },
            "location_extra_info": {
                "fi": "Balderin sali sijaitsee hissittömän rakennuksen kolmannessa kerroksessa.",
                "sv": "Balders sal ligger på tredje våningen i en byggnad utan hissar.",
                "en": "Balderin sali Hall is located on the third floor of a building without elevators."
            },
            "info_url": {
                "fi": "https://klassikkoparatiisilive.com",
                "sv": "https://klassikkoparatiisilive.com",
                "en": "https://klassikkoparatiisilive.com"
            },
            "name": {
                "fi": "Brahms – Tanssimestari",
                "sv": "Brahms – Dansens mästare",
                "en": "Brahms – Master of Dance"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjnaim4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}