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

{
    "meta": {
        "count": 5629,
        "next": "http://api.hel.fi/linkedevents/v1/event/?event_status=EventCancelled&format=api&page=3",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?event_status=EventCancelled&format=api"
    },
    "data": [
        {
            "id": "helsinki:aggy3zz4xe",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1940/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?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-02-09T12:45:58.337592Z",
            "last_modified_time": "2024-02-26T08:56:30.189620Z",
            "date_published": null,
            "start_time": "2024-02-27T14:15:00Z",
            "end_time": "2024-02-27T15:45: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": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Vapaaehtoistoiminnan perusteet-koulutus uusille vapaaehtoisille."
            },
            "name": {
                "fi": "Vapaaehtoistoiminnan perusteet"
            },
            "description": {
                "fi": "<p>Tervetuloa mukaan vapaaehtoistoiminnan koulutukseen ja tutustumaan Kinaporin seniorikeskuksen vapaaehtoistoiminnan mahdollisuuksiin ihanien ikäihmisten parissa. Vapaaehtoistehtävien lisäksi käymme myös läpi erilaisia käytännön asioita esimerkiksi vapaaehtoistoiminnan periaatteet, oikeudet, velvoitteet, ja vakuutus.&nbsp;</p><p>Ilmoittautuminen pe 23.2.2024 mennessä ja tiedustelut: Heidi Muurinen, heidi.muurinen@hel.fi (09) 310 52917</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": "Kinaporin palvelukeskus"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggy3zz4xe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggiwqod5i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10687/?format=api"
                },
                {
                    "@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:p178/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p300/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffpkry/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 69521,
                    "license": "cc_by",
                    "created_time": "2021-02-23T11:34:30.667991Z",
                    "last_modified_time": "2021-02-23T11:34:30.668031Z",
                    "name": "tyollisyyspal_logo3.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/tyollisyyspal_logo3_V9lXwTI.png",
                    "cropping": "240,0,586,345",
                    "photographer_name": "",
                    "alt_text": "Helsingin työllisyyspalvelut logo",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/69521/?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": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-12-21T07:23:12.243545Z",
            "last_modified_time": "2024-02-26T08:23:58.990812Z",
            "date_published": null,
            "start_time": "2024-02-28T07:00:00Z",
            "end_time": "2024-02-28T13: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": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Koulutusneuvontaa keskiviikkoisin Itäkeskuksessa. Tule juttelemaan koulutusneuvojan kanssa koulutuksiin liittyvistä asioista."
            },
            "name": {
                "fi": "Koulutusneuvontaa Itäkeskuksessa"
            },
            "description": {
                "fi": "<p><strong>KESKIVIIKON KOULUTUSNEUVONTA</strong></p><p>Oletko kiinnostunut opiskelusta? Tarvitsetko apua opiskelupaikan saamiseen tai tietoa eri opiskelumahdollisuuksista? &nbsp;Koulutusneuvonta on tarkoitettu helsinkiläisille maahan muuttaneille asiakkaille.</p><p>&nbsp;</p><p><strong>Keskiviikko on Itäkeskuksen toimipaikassa koulutuspäivä!</strong></p><p>&nbsp;</p><p>Paikalla on opettajia, jotka ovat erikoistuneet maahan muuttaneiden koulutukseen liittyviin kysymyksiin. &nbsp;Koulutusneuvontaa Itäkeskuksen toimipaikassa on tarjolla joka keskiviikko klo 9–15.&nbsp;</p><p>&nbsp;</p><p><strong>Koulutusneuvonnasta saat apua:</strong></p><ul><li>sopivan koulutuksen etsimiseen &nbsp;</li><li>koulutushakemuksen tekemiseen &nbsp;</li><li>osaamisen tunnistamiseen ja tunnustamisen kysymyksiin&nbsp;</li><li>muihin koulutukseen liittyviin asioihin. &nbsp;</li></ul><p><strong>Jos haluat, että teemme käynnilläsi hakemuksen johonkin koulutukseen, ota mukaasi todistukset aikaisemmista koulutuksistasi niin, että ne ovat sähköisesti saatavilla esimerkiksi kännykästäsi.</strong></p><p>&nbsp;</p><p>Tarvittaessa voidaan käyttää tulkkia. Et tarvitse ajanvarausta. &nbsp;Kysy lisää omalta työntekijältäsi tai Työllisyyspalveluiden neuvonnasta.</p><p>&nbsp;</p><p><strong>Helsingin työllisyyspalvelut sijaitsee osoitteessa Asiakkaankatu 3 A, 4 krs., 00930 Helsinki (Itäkeskus).</strong></p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqod5i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:277294",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15422/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 95546,
                    "license": "cc_by",
                    "created_time": "2023-08-23T11:22:55.811836Z",
                    "last_modified_time": "2024-01-29T13:32:58.906928Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{A373CE5D-FFBE-4F6A-AABB-45C2E87F8E5E}/105175",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/95546/?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:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-04T14:28:40.024026Z",
            "last_modified_time": "2024-02-23T11:27:56.466806Z",
            "date_published": "2023-08-23T10:42:00Z",
            "start_time": "2024-03-06T08:30:00Z",
            "end_time": "2024-03-06T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "lastenosasto"
            },
            "short_description": {
                "fi": "Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta."
            },
            "name": {
                "fi": "Vauvamuskari"
            },
            "description": {
                "fi": "<h3>klo 10.30 Karhusuon kirjaston lastenosastolla</h3></p><p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta. </p><p>#musiikki #muskari #vauva </p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä. </p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. </p><p> <a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a> </p><p>Ilmoittautuminen on auki alla oleviin muskareihin: <br> </p><p>Karhusuon kirjasto (Lasten osasto) keskiviikko 6.3 klo 10.30<br> Tapiolan kirjasto (Heikki) tiistai 12.3 klo 10.30<br> Kauklahden kirjasto (Neuvotteluhuone) keskiviikko 13.3 klo 10.30<br> Lippulaivan kirjasto (Kajuutta) tiistai 19.3 klo 10.30<br> Sellon kirjasto (Jaminurkka) keskiviikko 20.3 klo 10.30<br> Entressen kirjasto (Sininen huone) keskiviikko 27.3 klo 10.30<br> Lippulaivan kirjasto (Kajuutta) tiistai 2.4 klo 10.30<br> Ison Omenan kirjasto (Nuorten tila VOX) tiistai 9.4 klo 10.30<br> Kauklahden kirjasto (Neuvotteluhuone) keskiviikko 10.4 klo 10.30<br> Sellon kirjasto (Jaminurkka) keskiviikko 17.4 klo 10.30<br> Kalajärven kirjasto (Nuorten tila) keskiviikko 17.4 klo 10.30<br> Tapiolan kirjasto (Heikki) tiistai 23.4 klo 10.30</p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin </p><p> <a href=\"mailto:sakari.heikka@espoo.fi\">sakari.heikka(at)espoo.fi</a> <br><a href=\"mailto:lauri.iljin@espoo.fi\">lauri.iljin(at)espoo.fi</a> </p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:277294/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:277293",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15422/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 95546,
                    "license": "cc_by",
                    "created_time": "2023-08-23T11:22:55.811836Z",
                    "last_modified_time": "2024-01-29T13:32:58.906928Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{A373CE5D-FFBE-4F6A-AABB-45C2E87F8E5E}/105175",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/95546/?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:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-04T14:28:08.082466Z",
            "last_modified_time": "2024-02-23T11:27:14.545256Z",
            "date_published": "2023-08-23T10:42:00Z",
            "start_time": "2024-01-31T08:30:00Z",
            "end_time": "2024-01-31T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "lastenosasto"
            },
            "short_description": {
                "fi": "Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta."
            },
            "name": {
                "fi": "Vauvamuskari"
            },
            "description": {
                "fi": "<h3>klo 10.30 Karhusuon kirjaston lastenosastolla</h3></p><p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta. </p><p>#musiikki #muskari #vauva </p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä. </p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. </p><p> <a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a> </p><p>Ilmoittautuminen on auki alla oleviin muskareihin: <br> </p><p>Karhusuon kirjasto (Lasten osasto) keskiviikko 6.3 klo 10.30<br> Tapiolan kirjasto (Heikki) tiistai 12.3 klo 10.30<br> Kauklahden kirjasto (Neuvotteluhuone) keskiviikko 13.3 klo 10.30<br> Lippulaivan kirjasto (Kajuutta) tiistai 19.3 klo 10.30<br> Sellon kirjasto (Jaminurkka) keskiviikko 20.3 klo 10.30<br> Entressen kirjasto (Sininen huone) keskiviikko 27.3 klo 10.30<br> Lippulaivan kirjasto (Kajuutta) tiistai 2.4 klo 10.30<br> Ison Omenan kirjasto (Nuorten tila VOX) tiistai 9.4 klo 10.30<br> Kauklahden kirjasto (Neuvotteluhuone) keskiviikko 10.4 klo 10.30<br> Sellon kirjasto (Jaminurkka) keskiviikko 17.4 klo 10.30<br> Kalajärven kirjasto (Nuorten tila) keskiviikko 17.4 klo 10.30<br> Tapiolan kirjasto (Heikki) tiistai 23.4 klo 10.30</p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin </p><p> <a href=\"mailto:sakari.heikka@espoo.fi\">sakari.heikka(at)espoo.fi</a> <br><a href=\"mailto:lauri.iljin@espoo.fi\">lauri.iljin(at)espoo.fi</a> </p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:277293/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aggh5gwohi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwkwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggh5gwozm/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 137315,
                    "license": "cc_by",
                    "created_time": "2023-12-04T11:23:16.315775Z",
                    "last_modified_time": "2023-12-04T11:23:16.315793Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/perjantaileffailta.png",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Klaffitaulu, jonka aukosta tulee popcornia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137315/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-04T11:23:55.677566Z",
            "last_modified_time": "2024-02-16T13:22:33.455799Z",
            "date_published": "2023-12-04T11:17:00Z",
            "start_time": "2024-03-01T15:00:00Z",
            "end_time": "2024-03-01T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "name": {
                "fi": "Lasten perjantaileffa",
                "sv": "Fredagsfilm för barn",
                "en": "Children's Friday movie"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><p>1.12.2023<br>5.1.2024<br>2.2.2024<br>1.3.2024<br>5.4.2024<br>3.5.2024<br>7.6.2024</p>",
                "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan barnen välja en film från S- och K7-utbudet.</p><p>Under filmvisningen är spelmaskinerna inte tillgängliga.</p><p>De åldersrekommenderade S-filmerna kommer definitivt att visas på följande dagar:</p><p>1.12.2023<br>5.1.2024<br>2.2.2024<br>1.3.2024<br>5.4.2024<br>3.5.2024<br>7.6.2024</p>",
                "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, children can choose a film from the S and K7 selection.</p><p>During the film, the computers are not available.</p><p>The age-recommended S films will definitely be shown on the following days:</p><p>1.12.2023<br>5.1.2024<br>2.2.2024<br>1.3.2024<br>5.4.2024<br>3.5.2024<br>7.6.2024</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggh5gwohi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggtvuu4hi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8111/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1244/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1245/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 101741,
                    "license": "event_only",
                    "created_time": "2024-01-24T09:31:52.528600Z",
                    "last_modified_time": "2024-01-24T09:34:56.956001Z",
                    "name": "luistelu.jpeg",
                    "url": "http://api.hel.fi/linkedevents/media/images/luistelu.jpeg",
                    "cropping": "336,0,1677,1340",
                    "photographer_name": "Jussi Hellsten",
                    "alt_text": "retkiluistelu",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101741/?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-01-24T09:34:57.606145Z",
            "last_modified_time": "2024-02-16T04:59:03.128877Z",
            "date_published": null,
            "start_time": "2024-02-19T08:30:00Z",
            "end_time": "2024-02-19T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 9,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 12,
            "minimum_attendee_capacity": 6,
            "enrolment_start_time": "2024-01-29T09:00:00+02:00",
            "enrolment_end_time": "2024-02-11T21:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Talvinen luisteluretki Tuusulanjärvelle",
                "sv": "Delta i en vintrig skridskoutflykt på isen på Tusby träsk.",
                "en": "Join us for a winter ice skating trip to Lake Tuusula"
            },
            "name": {
                "fi": "Luisteluretki Tuusulanjärvelle",
                "sv": "Vintrig skridskoutflykt på Tusby träsk",
                "en": "Winter ice skating trip to Lake Tuusula"
            },
            "description": {
                "fi": "<p>Teemme talvisen luisteluretken Tuusulanjärven jäälle, jossa huollettu retkiluistelurata. Retken ajankohta on talviloman maanantaina 19.2.2024. Kokoontuminen Maunulan nuorisotalolla kello 10:30. SAAVUTHAN AJOISSA PAIKALLE Lähtö takaisin kello 16:30, olemme takaisin Maunulassa viimeistään 18:00. Paikan päällä luisteluun, hauskanpitoon ja evästykseen aikaa varattu yhteensä 4 tuntia.</p><p>Retki on maksuton. Nuorisotalo tarjoaa eväät, mutta voit lisäksi ottaa omia eväitä mukaan. Retkellä oltava mukana kypärä, omat luistimet ja sään mukainen vaatetus.</p><p>Lupalapun saa Torpparinmäen nuorisotalolta ja se tulee palauttaa Torpparinmäen nuorisotalolle viimeistään torstaina 15.2. Minimi osallistujamäärä 6 henkilöä, maksimi 12 henkilöä ilmoittautumisjärjestyksessä.&nbsp;</p><p>Ikäraja 9 -17 -vuotiaat.</p><p>Retkeä koskee säävaraus retkipäivän säähän ja luisteluradan kuntoon liittyen. Retkikohde saattaa muuttua, jos Helsingissä avautuu luisteluratoja. Ilmoitamme muutoksista viimeistään perjantaina 16.2.2024</p><p>Lisätietoja retkestä saa alla olevasta numerosta: Nuoriso-ohjaaja Riku Ikävalko – puh: 0404807322, riku.p.ikavalko@hel.fi Torpparinmäen nuorisotalo</p><p>Nuoriso-ohjaaja TT - puh: 040 637 0820, Pakilan nuorisotalo</p>",
                "sv": "<p>Vi åker på en vintrig skridskoutflykt på isen på Tusby träsk där finns en plogad bana för långfärdsskridskoåkning. Datumet för utflykten är måndagen 19.2.2024. Vi samlas på Månsas ungdomsgård klockan 10.30. KOM I TID. Avresa tillbaka till Månsas kl. 16.30, vi är tillbaka i Månsas senast kl. 18.00. På Tusby träsk har vi reserverat sammanlagt 4 timmar för att åka skridskor, ha roligt och äta matsäck.</p><p>Utflykten är avgiftsfri. Ungdomsgården erbjuder matsäck, men därtill kan du ta med egen matsäck. På utflykten ska du ha med en hjälm, egna skridskor och varma kläder som lämpar sig för väderförhållanden.</p><p>Tillståndslappar finns på Torparbackens ungdomsgård, och du ska returnera lappen till Torparbackens ungdomsgård senast 15.2. Minsta deltagarantal 6 personer, maximum 12 personer i anmälningsordning.</p><p>För utflykten gäller väderreservation i fråga om utflyktsdagens väder och skridskobanans skick. Utflyktsmålet kan ändras om skridskobanor öppnas i Helsingfors. Vi meddelar om ändringar senast fredag 16.2.2024.</p><p>Mer information om utflykten på numren nedan: Ungdomsledare Riku Ikävalko – tfn: 0404807322, riku.p.ikavalko@hel.fi, Torparbackens ungdomsgård</p><p>Ungdomsledare TT - tfn: 040 637 0820, Baggböle ungdomsgård</p>",
                "en": "<p>We will be making a winter ice skating trip to Lake Tuusula, where there is a well-maintained tour skating track. The trip will take place over the winter break on Monday, 19 February 2024. We will meet at the Maunula Youth Centre at 10:30. PLEASE BE THERE ON TIME. We will start the return journey at 16:30 and be back in Maunula by 18:00 at the latest. We have scheduled a total of four hours on-site for skating, fun and lunch.</p><p>The trip is free. The youth centre will provide a packed lunch, but you can also bring your own. You must bring a helmet, your own skates and weather-appropriate clothing.</p><p>You can pick up a permission slip at the Torpparinmäki Youth Centre and return it to the centre by Thrusday 15 February, at the latest. The minimum number of participants is six persons, and the maximum is 12 persons on a first-come, first-served basis.</p><p>The trip is subject to the weather on the day of the trip and the condition of the skating track. The destination may change if skating tracks open in Helsinki. We will notify you of any changes by Friday, 16 February 2024, at the latest</p><p>For more information about the trip, please call the number below: Youth worker Riku Ikävalko, tel.: +358 40 480 7322, riku.p.ikavalko@hel.fi, Torpparinmäki Youth Centre</p><p>Youth worker TT - tel.: +358 40 637 0820, Pakila Youth Centre</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Torpparinmäen nuorisotalo ",
                "sv": "Torpparinmäki ungdomsgarden",
                "en": "Torpparinmäki youth house"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggtvuu4hi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggtvs6ytm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8102/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:af6ray5xqz/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14139/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18081/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27698/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Hinta retkelle 5e/nuori, jonka voi maksaa käteisellä lupalapun palauttaessa tai retkelle lähtiessä.",
                        "sv": "Utflyktens pris är 5 €/unga som du kan betala med kontant när du returnerar tillståndslappen eller när vi åker till klätterhallen.",
                        "en": "The price is 5 euros/young person, which you can pay in cash when you return the permission slip or when we depart for the trip."
                    },
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "5 euroa",
                        "sv": "5 euro",
                        "en": "5 euro"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 101738,
                    "license": "event_only",
                    "created_time": "2024-01-24T09:24:11.134959Z",
                    "last_modified_time": "2024-01-24T09:27:33.541094Z",
                    "name": "kiipeily.jpeg",
                    "url": "http://api.hel.fi/linkedevents/media/images/kiipeily.jpeg",
                    "cropping": "238,0,1189,952",
                    "photographer_name": "Shoot Hayley",
                    "alt_text": "kiipeily",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101738/?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-01-24T09:27:34.307385Z",
            "last_modified_time": "2024-02-16T04:58:27.056015Z",
            "date_published": null,
            "start_time": "2024-02-21T11:00:00Z",
            "end_time": "2024-02-21T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 13,
            "audience_max_age": 17,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 16,
            "minimum_attendee_capacity": 6,
            "enrolment_start_time": "2024-01-31T09:00:00+02:00",
            "enrolment_end_time": "2024-02-19T21:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Nyt sinulla on mahdollisuus lähteä kaverisi kanssa seikkailemaan kiipeilyn merkeissä Konalaan.",
                "sv": "Nu har du en chans att delta i ett klätteräventyr med din kompis i Kånala.",
                "en": "Now is your chance to bring a friend on a climbing adventure to Konala."
            },
            "name": {
                "fi": "Kiipeilyretki KiipeilyAreena Ristikkoon",
                "sv": "Klätterutflykt till KiipeilyAreena Ristikko",
                "en": "Climbing trip to the KiipeilyAreena Ristikko climbing gym"
            },
            "description": {
                "fi": "<p>Retkelle mukaan pääsee max. 16 nuorta, jotka 13.-17 vuotiaita. Voit kiipeillä automaattisilla “itsevarmistavilla” (Eng. autobelay). Se on hauska ja helppo tapa päästä kiipeilemään korkeilla kiipeilyseinillä ilman aikaisempaa kokemusta. Painorajat Ristikon itsevarmistavilla laitteilla on 15–130 kg. Ristikon työntekijät opastavat aina ensikertalaiset laitteiden käyttöön. Itsevarmistavilla laitteilla kiipeily on myös loistava vaihtoehto niille, jotka haluavat harrastaa köysikiipeilyä itsenäisesti. Toinen mahdollisuus on kokeilla boulderointia. Boulderointi tarkoittaa kiipeilyä matalilla seinillä. Putoamisen varalta seinien alla on paksuja patjoja. Boulderointi mahdollistaa kiipeilyn myös ilman kiipeilyparia, joten lajin aloittaminen on erittäin helppoa. Hintaan sisältyy valjaat ja kiipeilykengät.</p><p>Hinta retkelle 5e/nuori, jonka voi maksaa käteisellä lupalapun palauttaessa tai retkelle lähtiessä.</p><p>Lähtö Maunulan nuorisotalolta (Metsäpurontie 4) klo 13.</p><p>Olemme takaisin nuorisotalolla noin klo 16:30.</p><p>Lupalappuja saa Oulunkylän, Pakilan, Torpparinmäen tai Maunulan nuorisotalolta.</p><p>Lisätietoa:</p><p>T: Valde Asp</p><p>040 1781 602</p><p>valde.asp@hel.fi</p><p>Maunulan nuorisotyöyksikkö</p><p>Pakilan nuorisotalo</p><p>Halkosuontie 88</p><p>00660 Helsinki</p>",
                "sv": "<p>Det finns platser för högst 16 unga mellan 13 och 17 år på utflykten. Du kan klättra med ett automatiskt självsäkringssystem (på engelska autobelay). Det är ett roligt och lätt sätt att klättra på höga klätterväggar utan tidigare erfarenhet. Viktgränser för de automatiska självsäkringssystemen i Ristikko är 15–130 kg. Anställda i Ristikko handleder alltid nybörjare i användningen av utrustning. Klättring med hjälp av automatiska självsäkringssystem är också ett utmärkt alternativ för dem som vill klättra i rep på egen hand. Ett annat alternativ är att prova bouldering. Bouldering betyder klättring på låga väggar. I händelse av att man faller finns det tjocka mattor vid väggarna. Bouldering gör det möjligt att klättra utan en klätterkompis, så det är enkelt att börja med bouldering. I priset ingår selar och klätterskor.</p><p>Utflyktens pris är 5 €/unga som du kan betala med kontant när du returnerar tillståndslappen eller när vi åker till klätterhallen.</p><p>Avresa från Månsas ungdomsgård (Skogsbäcksvägen 4) kl. 13.</p><p>Vi är tillbaka på ungdomsgården cirka klo 16.30.</p><p>Tillståndslappar finns på Åggelby, Baggböle, Torparbackens eller Månsas ungdomsgård.</p><p>Mer information:</p><p>H: Valde Asp</p><p>040 1781 602</p><p>valde.asp@hel.fi</p><p>Månsas ungdomsarbetsenhet</p><p>Baggböle ungdomsgård</p><p>Vedakärrsvägen 88</p><p>00660 Helsingfors</p>",
                "en": "<p>We can accommodate up to 16 young people aged 13–17 on this trip. You can climb with an autobelay safety device. It’s a fun and easy way to climb high climbing walls without any previous experience. The weight limits for Ristikko’s autobelay equipment range from 15 to 130 kg. Ristikko’s staff will always instruct first-timers in using the equipment. Climbing with autobelay equipment is also a great option for those who want to take up rock climbing as a hobby. Another option is to try bouldering. Bouldering means climbing on low walls. There are thick mats below the walls in case of falls. Bouldering also allows you to climb without a climbing partner, making it very easy to get into the sport. The price includes a harness and climbing shoes.</p><p>The price is 5 euros/young person, which you can pay in cash when you return the permission slip or when we depart for the trip.</p><p>We will depart from the Maunula Youth Centre (Metsäpurontie 4) at 13:00.</p><p>We will be back at the youth centre around 16:30.</p><p>You can pick up permission slips from the Oulunkylä, Pakila, Torpparinmäki or Maunula youth centres.</p><p>More information:</p><p>T: Valde Asp</p><p>+358 40 178 1602</p><p>valde.asp@hel.fi</p><p>Maunula Youth Work Unit</p><p>Pakila Youth Centre</p><p>Halkosuontie 88</p><p>00660 Helsinki</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "sv": "Maunulan nuorisotalo ",
                "en": "Maunula Youth house "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggtvs6ytm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aggh5gwrq4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwkwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggh5gwseq/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/3By5WH8Ky",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 137282,
                    "license": "event_only",
                    "created_time": "2023-11-27T12:30:08.869964Z",
                    "last_modified_time": "2023-11-27T12:30:19.230971Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/151122Kielikahvila_mainos_680_x_382_px.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Piirrettyjä ihmisiä keltaisella taustalla. Puhekuplissa Tervetuloa, Solmu kielikahvila, moi. Yläkulmassa eläkeliiton logo.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137282/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-27T12:30:53.505175Z",
            "last_modified_time": "2024-02-15T06:24:29.261630Z",
            "date_published": "2023-11-27T12:24:00Z",
            "start_time": "2024-02-21T14:00:00Z",
            "end_time": "2024-02-21T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "short_description": {
                "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.",
                "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. ",
                "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. "
            },
            "name": {
                "fi": "Solmu - suomen kielen kielikahvila",
                "sv": "Solmu - det finska språkkaféet",
                "en": "Solmu - the Finnish language cafe"
            },
            "description": {
                "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan!</p><p>Lisätietoja: Anu Kytömäki, projektipäällikkö, Yhtä köyttä vetämässä -hanke, puh. 040 7257 124, anu.kytomaki@elakeliitto.fi</p><p>Järjestäjä: Eläkeliiton Yhtä köyttä vetämässä -hanke</p>",
                "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p>",
                "en": "<p>A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": {
                "fi": "Eläkeliiton Yhtä köyttä vetämässä -hanke",
                "sv": "Eläkeliiton Yhtä köyttä vetämässä -hanke",
                "en": "Eläkeliiton Yhtä köyttä vetämässä -hanke"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggh5gwrq4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281713",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 101317,
                    "license": "cc_by",
                    "created_time": "2024-01-11T13:26:34.121940Z",
                    "last_modified_time": "2024-01-29T13:32:39.354050Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{61F7F1A9-605B-4529-88A1-0E29D9C363A9}/108626",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101317/?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-02-13T16:28:20.277101Z",
            "last_modified_time": "2024-02-14T08:27:39.829293Z",
            "date_published": "2024-02-13T12:57:00Z",
            "start_time": "2024-02-14T15:00:00Z",
            "end_time": "2024-02-14T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule pelaamaan shakkia Lumon kirjastoon! Shakkikerho on tarkoitettu kaikenikäisille ja kaikentasoisille pelaajille."
            },
            "name": {
                "fi": "Shakkikerho"
            },
            "description": {
                "fi": "<p> <strong>Valitettavasti shakkikerhon tapaaminen 14.2. on peruttu. Lumon kirjasto suljetaan poikkeuksellisesti klo 16.00 Vantin lakosta johtuvan vartijapulan vuoksi.</strong> </p><p>-----------------</p><p>Tule pelaamaan shakkia Lumon kirjastoon! Shakkikerho kokoontuu joka toinen keskiviikko klo 17.00-19.00.</p><p>Kevään 2024 kokoontumiset ovat: 17.1., 31.1., 14.2., 28.2., 13.3., 27.3., 10.4. ja 24.4.</p><p>Shakkikerho on tarkoitettu kaikenikäisille ja kaikentasoisille pelaajille. Tervetuloa!</p><p> . <br> <br> <em>Kuva: Pixabay</em> </p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:281713/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281711",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8154/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10840/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@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": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 37014,
                    "license": "cc_by",
                    "created_time": "2017-06-09T14:13:04.181583Z",
                    "last_modified_time": "2024-01-29T13:32:39.583691Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{67DBF297-0343-4860-BD5E-E435E1485F3A}/41275",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/37014/?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-02-13T16:28:20.651646Z",
            "last_modified_time": "2024-02-13T16:28:20.723455Z",
            "date_published": "2024-02-13T12:42:24.637000Z",
            "start_time": "2024-02-14T16:00:00Z",
            "end_time": "2024-02-14T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Lukupiirissä tutustutaan kirjallisuuteen, joka laajentaa\nymmärrystämme itsestämme ja elämästä, jota elämme."
            },
            "name": {
                "fi": "Nyt. Lukupiiri havahtumisista"
            },
            "description": {
                "fi": "<p>Tervetuloa Rikhardinkadun kirjaston lukupiiriin. Tutustumme kirjallisuuteen, joka laajentaa ymmärrystämme itsestämme ja elämästä, jota elämme. Keskustelemme esille nousevista teemoista mm. rakkaus, vapaus, yhteys ja hyvinvointi.</p><p>Kevään tapaamiset keskiviikkoisin klo 18-19.30:<br> 17.1. <em>Voima,</em> <strong>Rhonda Byrne</strong><br> 14.2. <em>Pakopiste,</em> toimittaneet <strong>Hannu-Pekka Björkman</strong> &amp; <strong>Nina Honkanen PERUTTU</strong><br> 13.3. <em>Pelko - vapaudu pelosta tietoisella läsnäololla</em>, <strong>Thich Nhat Hanh</strong><br> 17.4. <em>Hypertodellisuus - olet olemassa ja merkittävä</em>, <strong>Johanna Blomqvist</strong><br> 15.5. (toukokuun kirja ilmoitetaan myöhemmin)</p><p> Tarjolla teetä ja kahvia sekä rentoa yhdessäoloa. </p><p> <br> Ilmoittautumiset ja tiedustelut:<br><a href=\"mailto:riitta.massala@hel.fi\">riitta.massala@hel.fi</a> / Rikhardinkadun kirjasto</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:281711/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281712",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10818/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 74941,
                    "license": "cc_by",
                    "created_time": "2021-10-29T08:22:55.546180Z",
                    "last_modified_time": "2024-01-29T13:32:38.851833Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{B74FF258-93B6-4A3C-892B-93DAB2DC4D2C}/89817",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/74941/?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:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-13T16:28:19.959213Z",
            "last_modified_time": "2024-02-13T16:28:20.020366Z",
            "date_published": "2024-02-13T12:54:00Z",
            "start_time": "2024-02-14T15:00:00Z",
            "end_time": "2024-02-14T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Satuhuone"
            },
            "short_description": {
                "fi": "Haluaisitko harjoitella ääneen lukemista? Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää. Lukukoiran kanssa lukutaito kehittyy!"
            },
            "name": {
                "fi": "Lukukoira Happo"
            },
            "description": {
                "fi": "<p> <strong>Valitettavasti lukukoiran tapaaminen 14.2. on peruttu. Lumon kirjasto suljetaan poikkeuksellisesti klo 16.00 Vantin lakosta johtuvan vartijapulan vuoksi.</strong> </p><p>--------------------</p><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 pääset lukemaan kaksi kertaa kuussa keskiviikkoisin klo 17.00–18.00. Keväällä 2024 lukukoira on tavattavissa 17.1., 31.1., 14.2., 28.2., 13.3., 27.3., 10.4. ja 24.4. </p><p>Lukuhetken kesto on max. 15 minuuttia. 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. </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> . </p><p>Lukukoira Happo on Kennelliiton kouluttama lukukoira. </p><p> . </p><p>\"Asiasana: Lastenkulttuuri\"</p><p> <em>Kuva: Hanna Lehtonen</em> </p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:281712/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281714",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10818/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 105156,
                    "license": "cc_by",
                    "created_time": "2024-02-05T15:28:46.216794Z",
                    "last_modified_time": "2024-02-05T15:28:46.216811Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{D304A13E-DFB2-4A15-9AA4-AEEB7AFCEFE3}/109319",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105156/?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:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-13T16:28:19.640601Z",
            "last_modified_time": "2024-02-13T16:28:19.722552Z",
            "date_published": "2024-02-13T12:59:39.280000Z",
            "start_time": "2024-02-14T14:00:00Z",
            "end_time": "2024-02-14T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kotoklubi Kaneli - opitaan suomea"
            },
            "name": {
                "fi": "Kotoklubi Kaneli Vantaa"
            },
            "description": {
                "fi": "<p> <strong>Valitettavasti Kotoklubi Kanelin tapaaminen 14.2. on peruttu. Lumon kirjasto suljetaan poikkeuksellisesti klo 16.00 Vantin lakosta johtuvan vartijapulan vuoksi.</strong> </p><p>--------------------</p><p>Kotoklubi Kaneli-ryhmä on tarkoitettu vanhemmille ja lapsille. Ryhmässä opimme helppoa suomen kieltä yhdessä. Laulamme ja leikimme.</p><p>Ryhmä on avoin eikä siihen tarvitse ilmoittautua erikseen.</p><p>Tervetuloa mukaan, nähdään kirjaston satuhuoneessa!</p><p> <em>Kuva: Maaria Jäske, tausta: Canva</em> </p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:281714/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agguj6ylz4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1923/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6399/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [],
            "images": [
                {
                    "id": 98963,
                    "license": "event_only",
                    "created_time": "2023-11-03T12:27:06.437235Z",
                    "last_modified_time": "2023-11-03T12:27:42.750775Z",
                    "name": "Kuulolähipalvelu.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kuulol%C3%A4hipalvelu_H6JIkqM.jpg",
                    "cropping": "136,0,674,539",
                    "photographer_name": "",
                    "alt_text": "Iäkäs henkilö käsi korvan takana.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/98963/?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"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2024-01-26T08:55:19.772266Z",
            "last_modified_time": "2024-02-13T06:25:58.087674Z",
            "date_published": null,
            "start_time": "2024-02-14T08:00:00Z",
            "end_time": "2024-02-14T10: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": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "terveydenhoitajan huone"
            },
            "short_description": {
                "fi": "Henkilökohtaista neuvontaa ja opastusta kuulokojeen ja apuvälineiden käytössä."
            },
            "name": {
                "fi": "Kuulolähipalvelu"
            },
            "description": {
                "fi": "<p>Henkilökohtaista neuvontaa ja opastusta kuulokojeen ja apuvälineiden käytössä.</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agguj6ylz4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:279673",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8215/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10794/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 43956,
                    "license": "cc_by",
                    "created_time": "2018-04-30T13:21:05.240448Z",
                    "last_modified_time": "2024-01-29T13:33:28.229720Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{93C5F030-352E-4595-BCE4-AE0280BFCA14}/65012",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43956/?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-01-22T10:26:44.537608Z",
            "last_modified_time": "2024-02-12T14:32:40.794380Z",
            "date_published": "2024-01-22T09:14:00Z",
            "start_time": "2024-02-14T16:00:00Z",
            "end_time": "2024-02-14T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Dekkarikirjasto, käynti 1. krs"
            },
            "short_description": {
                "fi": "Kirjoita itsellesi iloa ja mielenrauhaa. Pysähdy ja ole läsnä tässä hetkessä. Vapauta luovuutta. Nauti kokemusten jakamisesta. Terapeuttisia iltoja on kevään 2024 aikana neljä kertaa. Jokaisella kerralla on oma teemansa."
            },
            "name": {
                "fi": "Terapeuttinen tarinapiiri pop-up"
            },
            "description": {
                "fi": "<p>Kirjoita iloa ja mielenrauhaa. Pysähdy ja ole läsnä tässä hetkessä. Vapauta luovuutta. Nauti kokemusten jakamisesta samanhenkisten kanssa.</p><p> <strong>TAPAHTUMA ON VALITETTAVASTI PERUTTU.</strong> </p><p> <strong>Ilmoittaudu sivun alalaidassa olevasta linkistä!</strong> <br> Huom! Helmet.finna.fi kautta ei toistaiseksi ole mahdollisuutta imoittautua.<br> Ilmoittaudu siis vanhan Helmetin kautta:<br><a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Kallion_kirjasto/Tapahtumat/Terapeuttinen_tarinapiiri_popup(279673)\">Helmet.fi/TerapeuttinenTarinapiiri</a><br><br> ***<br><strong>Illan teemana on voima.</strong><br> Mikä voisi olla sinun tehtäväsi? Millaista voimaa sinulla voisi olla? Millaisia ominaisuuksia haluaisit itsellesi tai kenties itseltäsi pois?</p><p>Ota mukaan</p><ul> <li>kynä, jolla on hyvä kirjoittaa</li> <li>muistivihko, muistikirja tai paperia</li> </ul><p> <br> Kirjaston puolesta on paikalla kyniä ja papereita. Useimmilla on kuitenkin jokin oma tietty kynä, jolla on luonteva kirjoittaa.</p><p>Pöytään katetaan pientä virvoketta ja naposteltavaa.</p><p> <br> ***<br> Illan aikana rentoudutaan, kuunnellaan ääneen luettuja tekstejä sekä kirjoitetaan. Tehtävä on semmoinen, että sen kanssa voit antaa mielikuvituksen leijua aivan vapaasti. Tai voit miettiä omia luonteenpiirteitäsi, rehellisesti niin hyviä kuin huonoja puolia.</p><p>Kirjallisuusterapeuttisten harjoitusten kanssa katsellaan itseä ja ympäröivää maailmaa. Kaivellaan omia ajatuksia ja tunteita, muistoja ja haaveita ja toiveita. Oivalluksia ja vahvuuksia. Jotain, mikä elämässä on tärkeää ja mitä ehkä voisi olla enemmän. Jotain, mistä et ehkä edes nyt tiedä tai mitä et tunnista.</p><p>Ei tarvitse olla hyvä kirjoittaja, ei oikeastaan kirjoittaja ollenkaan. Mitään taiteellisia tavoitteita ei ole. Kun kirjoitat, ei tarvitse välittää pilkuista ja pisteistä tai muistakaan säännöistä. Annat mennä vain.</p><p>Harjoitusten pohjalta myös keskustellaan, jaetaan kokemuksia ja tunnelmia. Voit kuitenkin hyvin olla mukana aivan hiljaa omissa ajatuksissasi.<br><br><br><em><strong>Tule ammentamaan voimaa ja hyvää oloa!</strong></em><br><em><strong>Hetkeen uppoutumisella on välitön stressiä vähentävä vaikutus.</strong></em></p><p>***<br> Terapeuttisia iltoja on kevään 2024 aikana neljä kertaa. Jokaisella kerralla on oma teemansa.<br> Voit osallistua jokaiselle kerralle tai yhdelle tai muutamalla kerralle.<br> Tapahtuma on aiemmin ollut nimeltään Kokeile, mitä on kirjallisuusterapia!<br><br> ***<br> Lisätietoja sähköpostitse: sini.turunen(at)hel.fi</p><p> <a href=\"http://kirjallisuusterapia.net/\">Mitä kirjallisuusterapia on?</a> <br> <a href=\"http://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Sielun_apteekki__parantaako_kirjallisuus(62330)\">Sielun apteekki – parantaako kirjallisuus?</a> </p><p> <br> ***<br> Kallion kirjasto<br> Viides linja 11<br> (09) 310 85053<br><a href=\"https://fi-fi.facebook.com/kirjastokallio/\">Kallion kirjasto Facebookissa</a></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:279673/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggy3vqbcu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1940/?format=api"
            },
            "keywords": [
                {
                    "@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:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [],
            "images": [],
            "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-02-09T12:27:08.957854Z",
            "last_modified_time": "2024-02-12T13:33:57.797375Z",
            "date_published": null,
            "start_time": "2024-02-14T09:00:00Z",
            "end_time": "2024-02-14T12: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": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Kinaporin Fossiilit kertovat kivinäyttelystään"
            },
            "name": {
                "fi": "Kinaporin Fossiilien kivinäyttelyn esittely"
            },
            "description": {
                "fi": "<p>Kinaporin Fossiilit kertovat kivinäyttelystään paikan päällä 1. krs aulassa. Ystävänpäivän teemaan sopivasti puhetta myös onnenkivistä.</p><p>Kinaporin Fossiilit on vapaaehtoisen ohjaama ryhmä, joka kokoontuu Kinaporissa joka viikko. Lisätietoja tarvittaessa vapaaehtoistoiminnan ohjaajalta 09 31052917.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": "Kinaporin palvelukeskus/ Kinaporin vapaaehtoiset"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggy3vqbcu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggz2qbute",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/?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:p178/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p300/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggz2qcgj4/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 69521,
                    "license": "cc_by",
                    "created_time": "2021-02-23T11:34:30.667991Z",
                    "last_modified_time": "2021-02-23T11:34:30.668031Z",
                    "name": "tyollisyyspal_logo3.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/tyollisyyspal_logo3_V9lXwTI.png",
                    "cropping": "240,0,586,345",
                    "photographer_name": "",
                    "alt_text": "Helsingin työllisyyspalvelut logo",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/69521/?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": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-12T12:17:27.205275Z",
            "last_modified_time": "2024-02-12T12:53:31.029857Z",
            "date_published": null,
            "start_time": "2024-02-15T07:30:00Z",
            "end_time": "2024-02-15T10: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": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "SDO:n Sovinnon aikuistyö jalkautuu Itäkeskuksen Työllisyyspalveluihin "
            },
            "name": {
                "fi": "Sovinnon aikuistyö Itäkeskuksen toimipisteessä"
            },
            "description": {
                "fi": "<p>Tule kysymään meiltä matalalla kynnyksellä neuvoa virastoasioissa, työnhaussa, koulutuksen etsimisessä ja yleisesti sosiaalisissa asioissa.</p><p>Sovinnon Aikuistyö jalkautuu Itäkeskuksen Työllisyyspalveluihin parittomilla viikoilla torstaisin klo 9:30-12:00.</p><p>Lisätiedot: Arto Klemola, puh. 0447097725, arto.klemola@sdo.fi</p><p>https://sdo.fi/sovinnon-palvelut/aikuistyo/</p><p>&nbsp;</p><p>PS. Sovinnon aikuistyö myös jalkautuu Itäkeskuksen kirjastoon parillisilla viikolla torstaisin klo 9:30-12.&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggz2qbute/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggx5nv6ma",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:132/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p12855/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8105/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "helsinki:u42030010201002",
            "sub_events": [],
            "images": [
                {
                    "id": 77133,
                    "license": "cc_by",
                    "created_time": "2022-01-13T10:44:07.823269Z",
                    "last_modified_time": "2024-02-06T13:58:41.050945Z",
                    "name": "WhatsApp Image 2022-01-13 at 12.35.17.jpeg",
                    "url": "http://api.hel.fi/linkedevents/media/images/WhatsApp_Image_2022-01-13_at_12.35.17.jpeg",
                    "cropping": "0,312,575,888",
                    "photographer_name": "",
                    "alt_text": "laskiaisrieha",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201002",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/77133/?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"
                }
            ],
            "created_time": "2024-02-06T13:58:42.030014Z",
            "last_modified_time": "2024-02-12T09:27:52.519495Z",
            "date_published": null,
            "start_time": "2024-02-13T08:00:00Z",
            "end_time": "2024-02-13T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Laskiaisrieha Leikkipuisto Brahessa"
            },
            "name": {
                "fi": "Laskiaisrieha!"
            },
            "description": {
                "fi": "<p>Lämpimästi tervetuloa viettämään riehakasta laskiaisriehaa Leikkipuisto Braheen!</p><p>Ohjelmassa mukaansatempaava leikkituokio ulkona sekä tarjoiluina grillimakkaraa, kahvia ja herkkuja!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggx5nv6ma/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281656",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8154/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10840/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 86251,
                    "license": "cc_by",
                    "created_time": "2022-11-08T13:22:50.660332Z",
                    "last_modified_time": "2024-01-29T13:32:36.758252Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5F5BACA0-717B-4CF9-BDD8-0C6A83A2551A}/97878",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/86251/?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-02-12T09:27:52.104794Z",
            "last_modified_time": "2024-02-12T09:27:52.208507Z",
            "date_published": "2024-02-12T08:23:48.587000Z",
            "start_time": "2024-02-15T15:00:00Z",
            "end_time": "2024-02-15T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Kokoustila Ture, 1. krs"
            },
            "short_description": {
                "fi": "Ooppera- ja balettimaailma on täynnä upeita teoksia, jotka perustuvat kirjoihin. Nyt tutustumme niihin ja pohdimme miten, miksi ja kuinka ne päätyivät näyttämölle."
            },
            "name": {
                "fi": "Lukupiiri: Kirjallisuus inspiraationa musiikkiin"
            },
            "description": {
                "fi": "<p>Ooppera- ja balettimaailma on täynnä upeita teoksia, jotka perustuvat kirjoihin. Nyt tutustumme niihin ja pohdimme miten, miksi ja kuinka ne päätyivät näyttämölle. Soikoon! Yhdistyksen lukupiiri ”Kirjallisuus inspiraationa musiikkiin” kokoontuu Rikhardinkadun kirjastossa kuukausittain.</p><p>Ensimmäinen lukupiiri poikkeuksellisesti <strong>tiistaina 16.1.24 klo 17.00-18.30</strong><br> Kirjana Henri Murger: Boheemielämää, Puccinin ooppera La Boheme. Iki-ihana ooppera joka ei paljon esittelyjä kaipaa. Kirja on vuodelta 1840, kirjailija opiskeli maalaustaidetta ja loi romantisoidun kuvan pariisilaisesta taiteilijaelämästä. Siitä katsotaan alkavan myös boheemi-sanan nykyinen merkitys. </p><p> <strong>Torstaina 15.2.24 klo 17.00-18.30 PERUTTU</strong> <br> Ulla-Lena Lundbergin Finlandia palkittu Jää, Ooppera Jaakko Kuusisto: Jää <br> Ooppera ei enää ole Areenassa, mutta löytyy YouTubesta.</p><p> <strong>Torstaina 14.3.24 klo 17.00.-18.30 </strong> <br> Nikolai Leskov Mtsenskin kihlakunnan Lady Macbeth vuodelta 1865. Saman niminen Dimitri Shostakovitsin ooppera, joka tunnetaan myös nimellä Katerina Ismailova. Oopperalla kantaesitettiin vuonna 1934 ja saavutti suuren suosion. Se jälkeen alkoikin surullinen kausi kun Stalin kävi katsomassa 1936 ja tuomitsi oopperan ja säveltäjän. </p><p> <strong>Torstaina 11.4.24 klo 17.00-18.30</strong> <br> Kansannäytelmä Pohjalaisia ja Leevi Madetojan ooppera Pohjalaisia. Näytelmä sai kantaesityksensä Lapualla vuonna 1914 ja saman vuonna esitettiin Kansallisteatterissa teatterijohtaja Kaarlo Bergomin syntymäpäivä juhlaesityksenä. Ooppera kantaesitettiin 1924.</p><p> <strong>Torstaina 16.5.24 klo 17.00-18.30</strong> <br> Pushkin Boris Godunov ja Modest Musorgskin saman niminen ooppera. Säveltäjä teki oopperaan myös libreton. Tämä on ainoa ooppera jonka Musorgski sai elämänsä aikana valmiiksi, mutta siitä tulikin mestariteos. Ooppera kantaesitettiin Pietarin Mariinski-teatterissa vuonna 1874. </p><p>Ilmoittautuminen <a href=\"mailto:Leena.Ilona.ahvonen@gmail.com\">Leena.Ilona.ahvonen@gmail.com</a> </p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:281656/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggukmlzym",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1923/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [],
            "images": [
                {
                    "id": 101833,
                    "license": "event_only",
                    "created_time": "2024-01-26T09:53:06.805477Z",
                    "last_modified_time": "2024-01-26T09:54:46.362729Z",
                    "name": "vackertviktapappershjartan1 (w360_h360_q85_c_u).jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/vackertviktapappershjartan1_w360_h360_q85_c_u.jpg",
                    "cropping": "100,0,500,400",
                    "photographer_name": "",
                    "alt_text": "Kuvassa kaksi punaista paperisydäntä.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u321200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101833/?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"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2024-01-26T09:54:46.861511Z",
            "last_modified_time": "2024-02-07T13:02:13.528360Z",
            "date_published": null,
            "start_time": "2024-02-13T11:00:00Z",
            "end_time": "2024-02-13T13: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": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "asiakastila, ylin kerros"
            },
            "short_description": {
                "fi": "Tehdään kortti / koriste Ystävänpäivän merkeissä. "
            },
            "name": {
                "fi": "Pop-up työpaja"
            },
            "description": {
                "fi": "<p>Tehdään kortti / koriste Ystävänpäivän merkeissä.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggukmlzym/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggkwym7uy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1923/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggkwynrmi/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [],
            "images": [
                {
                    "id": 100701,
                    "license": "event_only",
                    "created_time": "2023-12-27T07:21:32.756991Z",
                    "last_modified_time": "2023-12-27T07:22:28.527888Z",
                    "name": "Jooga_JPG-1_kampin_palvelukeskus_kaisa_sunimento_2023_050.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Jooga_JPG-1_kampin_palvelukeskus_kaisa_sunimento_2023_050.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "Naishenkilö oranssi paita päällään, kädet ojennettuina ylös.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100701/?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"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api"
                }
            ],
            "created_time": "2023-12-27T13:05:51.021437Z",
            "last_modified_time": "2024-02-07T08:21:27.366980Z",
            "date_published": null,
            "start_time": "2024-02-20T10:00:00Z",
            "end_time": "2024-02-20T11: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": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "Vapaaehtoisen ohjaama harrastusryhmä."
            },
            "name": {
                "fi": "Musiikkiliikunta"
            },
            "description": {
                "fi": "<p>Vapaaehtoisen ohjaama harrastusryhmä.</p><p>Ryhmään osallistuvilla tulee olla voimassa oleva palvelukeskuskortti.&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggkwym7uy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}