Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helmet

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 1009,
        "next": "http://api.hel.fi/linkedevents/v1/event/?end=today&format=api&page=4&start=now",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?end=today&format=api&page=2&start=now"
    },
    "data": [
        {
            "id": "helsinki:aghqm6wokq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8348/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p12207/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p24644/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27455/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqm6wb7e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqm6wfdu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqm6wgp4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqm6wiae/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqm6wjou/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138451,
                    "license": "cc_by",
                    "created_time": "2024-04-22T15:40:46.992558Z",
                    "last_modified_time": "2024-04-22T15:44:18.587204Z",
                    "name": "Loruja ja leikkejä vauvoille ja taaperoille!",
                    "url": "http://api.hel.fi/linkedevents/media/images/lawrence-crayton-KXOaNSU63NE-unsplash.jpg",
                    "cropping": "398,0,2002,1603",
                    "photographer_name": "Lawrence Crayton / Unsplash",
                    "alt_text": "Aikuisen kädet nostavat pienen hymyilevän lapsen ilmaan.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138451/?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-04-22T15:44:22.631781Z",
            "last_modified_time": "2024-04-22T15:44:22.631802Z",
            "date_published": null,
            "start_time": "2024-04-23T07:00:00Z",
            "end_time": "2024-05-21T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Loruja ja leikkejä vauvoille ja taaperoille!"
            },
            "description": {
                "fi": "<p>Iloiset lorutuokiot sopivat 0-3-vuotiaille vauvoille ja taaperoille vanhempineen.</p><p>Loruttelu rentouttaa, edistää lapsen kielellistä kehitystä ja auttaa lasta hahmottamaan oman kehonsa rajoja. Lorun ja leikin tukena käytetään erilaisia materiaaleja, rytmejä ja liikettä.</p><p>Ota vauvalle mukaan pehmoinen alusta köllöttelyä varten ja tule nauttimaan mukavasta yhdessäolosta!</p><p>&nbsp;</p><p>Lorutuokion kesto on noin 30 minuuttia.<br>&nbsp;</p><p>Lorutuokiot järjestetään joka tiistai 21.5. asti.</p><p>&nbsp;</p><p>Kuva: Lawrence Crayton / Unsplash</p>"
            },
            "name": {
                "fi": "Vauvojen ja taaperoiden lorutuokio"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqm6wokq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghbiyir4m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8158/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p564/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiyim6a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiyio5y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 106518,
                    "license": "cc_by",
                    "created_time": "2024-03-06T15:24:39.835762Z",
                    "last_modified_time": "2024-03-06T15:28:07.899042Z",
                    "name": "Sokrates-kahvila",
                    "url": "http://api.hel.fi/linkedevents/media/images/sokrates_events.jpg",
                    "cropping": "156,0,777,621",
                    "photographer_name": "pixabay",
                    "alt_text": "Sokrateksen kuva",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106518/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-06T15:28:09.709895Z",
            "last_modified_time": "2024-04-22T13:27:03.837573Z",
            "date_published": null,
            "start_time": "2024-04-02T13:00:00Z",
            "end_time": "2024-05-07T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Sokrates-kahvilassa filosofoidaan elämänläheisesti kerran kuukaudessa. Vetäjänä toimii Severi Hämäri."
            },
            "description": {
                "fi": "<p>Sokrates-kahvilassa filosofoidaan elämänläheisesti kerran kuukaudessa. Vetäjänä toimii Severi Hämäri.</p><p><strong>Tapaamiskerrat kevätkaudella: 2.4., 7.5.</strong></p><p>Keskusteluaihe 7.5.&nbsp;on \"Ystävyys\".</p><p>Tervetuloa pohdiskelemaan ja nauttimaan pöydän antimista!</p><p>Tämä projekti toteutetaan yhteistyössä <a href=\"https://www.kriittinenkorkeakoulu.fi/\">Kriittisen korkeakoulun kanssa.</a>&nbsp;</p>"
            },
            "name": {
                "fi": "Sokrates-kahvila Munkkiniemen kirjastossa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiyir4m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghibrj2za",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibrjpfm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibrjq4y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibrjr3e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibrjszi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibrjtxy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibrju5i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibrjwgq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138444,
                    "license": "cc_by",
                    "created_time": "2024-04-22T13:22:55.900987Z",
                    "last_modified_time": "2024-04-22T13:23:41.854279Z",
                    "name": "JPG-1_aikakauslehdet_oodi_200819_kuva_jonna_pennanen_2880.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/JPG-1_aikakauslehdet_oodi_200819_kuva_jonna_pennanen_2880.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "kaksi henkilöä skoolaavat kahvikupeilla",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138444/?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:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-27T16:36:33.110041Z",
            "last_modified_time": "2024-04-22T13:26:32.071823Z",
            "date_published": null,
            "start_time": "2024-04-08T14:00:00Z",
            "end_time": "2024-05-20T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Oppimistila 3 , 2.krs"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Tervetuloa kielikahvilaan!  Suomen kielen kielikahvila jatkuu taas 15.1. alkaen. Tapaamme maanantaisin klo 17, Oppimistila 3, toinen kerros.  Tule suoraan paika"
            },
            "description": {
                "fi": "<p><strong>Tervetuloa kielikahvilaan!</strong></p><p>Suomen kielen kielikahvila&nbsp;jatkuu taas 15.1.&nbsp;alkaen. Tapaamme maanantaisin klo 17, Oppimistila 3, toinen kerros.</p><p>Tule suoraan paikan päälle tai ilmoittaudu sähköpostitse osoitteessa&nbsp;oodinetakielikahvila@gmail.com.<br><br>&nbsp;</p><p>Photo: Unsplash.com / Avel Chuklanov</p>"
            },
            "name": {
                "fi": "Suomen kielen kielikahvila"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghibrj2za/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghmxpie2a",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:19217/?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:p8856/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghommglt4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghommgod4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghommgpxa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlqjcm4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 137961,
                    "license": "cc_by",
                    "created_time": "2024-04-11T05:47:58.215207Z",
                    "last_modified_time": "2024-04-11T05:59:04.109602Z",
                    "name": "people-2557396_1280.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/people-2557396_1280.jpg",
                    "cropping": "320,0,1599,1278",
                    "photographer_name": "https://pixabay.com/fi/photos/ihmiset-tyt%C3%B6t-naiset-opiskelijat-2557396/",
                    "alt_text": "Opiskelevat ihmiset",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137961/?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:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-04-11T05:59:06.206709Z",
            "last_modified_time": "2024-04-22T12:21:35.683973Z",
            "date_published": null,
            "start_time": "2024-04-18T07:00:00Z",
            "end_time": "2024-05-16T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Luetaan yhdessä - verkosto",
                "en": "Let's read together group"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "",
                "en": ""
            },
            "short_description": {
                "fi": "Tule oppimaan suomen kieltä ryhmässä.",
                "en": "Come to library and study finnish in a group."
            },
            "description": {
                "fi": "<p>Vuonna 2024 Luetaan yhdessä kookoontuu Martinlaakson kirjastolla torstaisin 25.1.2024-2.5.2024 välisenä aikana klo 10-12.&nbsp;</p><p>Tule lukemaan, puhumaan ja kirjoittamaan suomea! Ryhmä on avoin kaikille: aloittelijoille ja jo pidemmälle edistyneille kielen opiskelijille. Opettajat ovat suomalaisia, ja opetus on maksutonta.&nbsp;&nbsp;</p><p>Aika: joka torstai klo 10-12&nbsp;&nbsp;</p><p>Lisätietoja: <a href=\"http://www.luetaanyhdessa.fi/\">http://www.luetaanyhdessa.fi/</a>&nbsp;</p><p>Tervetuloa!&nbsp;</p><p>Kuva: Pixabay</p>",
                "en": "<p>In 2024, Let's read together group meets at Martinlaakso Library on Thursdays between January 25, 2024, and May 2, 2024, from 10 am to 12 pm.</p><p>Come to read, speak, and write Finnish! The group is open to everyone: beginners and more advanced language learners. Teachers are Finnish, and the lessons are free of charge.</p><p>Time: Every Thursday from 10 am to 12 pm.</p><p>For more information: <a href=\"https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.luetaanyhdessa.fi%2F&amp;data=05%7C02%7Ctoni.heikura%40vantaa.fi%7C4a56b07c72fd42e5d09f08dc59ec127d%7Cdad5d62c98304db09c1589befcc5cf3e%7C0%7C0%7C638484117675294836%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=lUDMKfu6q2e89fBgtr4gzwSToQKX6ViZb9pzRMPuKDM%3D&amp;reserved=0\">http://www.luetaanyhdessa.fi/</a></p><p>Welcome!</p><p>&nbsp;</p><p>&nbsp;</p><p><br>&nbsp;</p>"
            },
            "name": {
                "fi": "Luetaan yhdessä - suomen kielen opintoryhmä",
                "en": "Let’s Read Together group"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghmxpie2a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqleoeqa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8143/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?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"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlenxw4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlenzja/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlen23e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlen4la/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlen53i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqlen7jq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138429,
                    "license": "cc_by",
                    "created_time": "2024-04-22T11:27:23.839115Z",
                    "last_modified_time": "2024-04-22T11:29:46.031800Z",
                    "name": "lukumummo.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/lukumummo.jpg",
                    "cropping": "380,0,1900,1520",
                    "photographer_name": "",
                    "alt_text": "Mummi lukee kirjaa kahdelle lapselle",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138429/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-04-22T11:29:50.219118Z",
            "last_modified_time": "2024-04-22T11:29:50.219139Z",
            "date_published": null,
            "start_time": "2024-04-23T11:00:00Z",
            "end_time": "2024-05-28T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": "Laajasalon kirjasto"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Kirjastomummo Ritva lukee satuja ja muita kirjoja lastenosastolla.  Tiistaisin klo 14-16.  Tervetuloa kuuntelemaan!"
            },
            "description": {
                "fi": "<p>Kirjastomummo Ritva lukee satuja ja muita kirjoja lastenosastolla.</p><p>Tiistaisin klo 14-16.</p><p>Tervetuloa kuuntelemaan!</p>"
            },
            "name": {
                "fi": "Kirjastomummo Laajasalon kirjastossa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqleoeqa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghbifysoq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:53341/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:agcl3tc74q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifxsby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifxvbm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifxy4e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifx3te/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifx5tm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifx65m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifyaia/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifycai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifyfiy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifyg6i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifylhu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 106506,
                    "license": "cc_by",
                    "created_time": "2024-03-06T13:45:55.799288Z",
                    "last_modified_time": "2024-03-06T14:07:10.773342Z",
                    "name": "20141011_1515_L1020781-Edit-Edit_4377.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/20141011_1515_L1020781-Edit-Edit_4377_QARhRbL.jpg",
                    "cropping": "382,0,1898,1515",
                    "photographer_name": "Jussi Hellsten",
                    "alt_text": "Kaksi nuorta henkilöä työskentelee tietokoneella",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021200130",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106506/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-06T14:07:20.191886Z",
            "last_modified_time": "2024-04-22T11:14:54.072093Z",
            "date_published": null,
            "start_time": "2024-03-11T07:30:00Z",
            "end_time": "2024-05-27T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 15,
            "audience_max_age": 29,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": "Ohjaamo Helsinki"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://nuorten.hel.fi/ohjaamo"
            },
            "short_description": {
                "fi": "Vinkkejä ja apua ansioluettelon tekemiseen tai sen muokkaamiseen tietokoneella. "
            },
            "description": {
                "fi": "<p>Eikö sinulla ole vielä CV:tä?&nbsp;<br>Haluatko oppia mikä CV on tai päivittää CV:tä?</p><p>Tule Ohjaamo Helsingin CV -työpajaan, jossa saat vinkkejä ja apua ansioluettelon tekemiseen tai sen muokkaamiseen tietokoneella. Saat työpajassa myös palautetta omasta CV:stä. Voit tehdä CV:tä omalla tietokoneellasi tai Ohjaamon tietokoneella.</p><p>Jos sinulla ei vielä ole CV:tä ota, niin ota mukaan työ- sekä koulutodistukset.&nbsp;<br>Mieti etukäteen, ennen pajaa, mihin tallennat valmiin tiedoston (sähköposti, One Drive, oma muistitikku).<br><br>Maanantaisin klo 9.30-11.00<br>Saavuthan paikalle heti klo 9.30<br><br><strong>Kenelle</strong><br>15-29 &nbsp;-vuotiaille</p><p><strong>Kieli</strong><br>Suomi<br><br>Ei ilmoittautumista</p><p><strong>Missä</strong><br>Ohjaamo Helsinki<br>Fredrikinkatu 48<br>00100 Helsinki<br><br>nuorten.hel.fi/ohjaamo<br>&nbsp;</p>"
            },
            "name": {
                "fi": "CV -paja"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbifysoq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqj3tfdi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30036/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13035/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqj3s4te/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqj3s65e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqj3taje/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138409,
                    "license": "cc_by",
                    "created_time": "2024-04-22T08:15:05.104396Z",
                    "last_modified_time": "2024-04-22T08:16:48.307980Z",
                    "name": "sirkus.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/sirkus_QA9X3fG.jpg",
                    "cropping": "100,0,500,400",
                    "photographer_name": "",
                    "alt_text": "Kaksi iäkästä naista pyörittää hulavannetta",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u321200303040",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138409/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-04-22T08:31:23.430492Z",
            "last_modified_time": "2024-04-22T08:31:23.430514Z",
            "date_published": null,
            "start_time": "2024-04-23T08:00:00Z",
            "end_time": "2024-05-07T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Sirkus Magentan sirkusryhmässä tehdään matalan kynnyksen sirkusharjoituksia."
            },
            "description": {
                "fi": "<p>Sirkus Magentan sirkusryhmässä tehdään matalan kynnyksen sirkusharjoituksia. Sirkus virkistää mieltä ja kehoa. Vapaa pääsy. Ei ennakkoilmoittautumista. Lisätiedot: hanne.vartiainen@sirkusmagenta.fi.</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p><p>&nbsp;</p>"
            },
            "name": {
                "fi": "Sirkusjumppa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqj3tfdi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggiel65iy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30036/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2221/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel5ylm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel5zxe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel53hm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel54xa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel56b4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel57kq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6ate/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6b5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6dhy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6eum/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6ga4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6hsa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6i6u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6kke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6lum/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel6m74/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwufhy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwujga/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwuldi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwum6i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwuoz4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwuqwm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwuufi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwuxvi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqjwu27u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 92902,
                    "license": "cc_by",
                    "created_time": "2023-06-07T07:52:04.543005Z",
                    "last_modified_time": "2023-06-07T07:52:49.365153Z",
                    "name": "card-game-1834640_1280.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/card-game-1834640_1280.jpg",
                    "cropping": "214,0,1065,851",
                    "photographer_name": "",
                    "alt_text": "alt-pelikortteja kädessä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200303060",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/92902/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2023-12-19T13:07:04.145858Z",
            "last_modified_time": "2024-04-22T08:10:18.293375Z",
            "date_published": null,
            "start_time": "2024-01-04T08:00:00Z",
            "end_time": "2024-06-26T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Torstaisin pelataan bridgeä."
            },
            "description": {
                "fi": "<p>Torstaisin pelataan bridgeä. Tervetuloa mukaan.</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p>"
            },
            "name": {
                "fi": "Bridge korttipelit"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiel65iy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghh7l6uda",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18620/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghh7l6dzm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghh7l6fgm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghh7l6izq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghh7l6leq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghh7l6n2u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghh7l6p2e/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107040,
                    "license": "event_only",
                    "created_time": "2024-03-11T09:08:23.285759Z",
                    "last_modified_time": "2024-03-11T09:10:35.073398Z",
                    "name": "Kuva: Maaria Jäske, tausta: Canva",
                    "url": "http://api.hel.fi/linkedevents/media/images/Papukaijahelmet_sf3cLRn.png",
                    "cropping": "119,0,596,477",
                    "photographer_name": "Maaria Jäske",
                    "alt_text": "Pehmopapukaija Suomen lipun edessä",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107040/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                }
            ],
            "created_time": "2024-03-27T11:33:33.346186Z",
            "last_modified_time": "2024-04-22T06:57:14.868548Z",
            "date_published": null,
            "start_time": "2024-04-08T11:00:00Z",
            "end_time": "2024-05-20T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Kotoklubi Kaneli-ryhmä on tarkoitettu vanhemmille ja lapsille. Ryhmässä opimme helppoa suomen kieltä yhdessä laulaen ja leikkien."
            },
            "description": {
                "fi": "<p>Kotoklubi Kaneli-ryhmä on tarkoitettu vanhemmille ja lapsille.&nbsp;</p><p>Ryhmässä opimme helppoa suomen kieltä yhdessä. Laulamme ja leikimme.</p><p>Kotoklubi Kaneli kokoontuu Länsimäen kirjastossa maanantaisin 12.2.-20.5.2024 klo 14.-14.30.&nbsp;</p><p>&nbsp;</p><p>Ryhmä on avoin eikä siihen tarvitse ilmoittautua erikseen.</p><p>Tervetuloa mukaan, nähdään kirjaston leikkihuoneessa!</p><p>&nbsp;</p><p><i>Kuva: Maaria Jäske, tausta: Canva</i></p>"
            },
            "name": {
                "fi": "Kotoklubi Kaneli Vantaa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghh7l6uda/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggzz73wc4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:11407/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73b4q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73d6m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73fby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73g3m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73ig4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73joa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73kuq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73l2y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73nai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73ofu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73plm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-02-12T11:06:44.129723Z",
            "last_modified_time": "2024-04-22T06:34:37.066667Z",
            "date_published": null,
            "start_time": "2024-02-22T11:00:00Z",
            "end_time": "2024-05-23T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Töölön palvelukeskuksessa kokoontuu torstaisin Neuleryhmä. "
            },
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p><p>&nbsp;Töölön palvelukeskuksen Kädentaitojen tilassa kokoontuu torstai iltapäivisin klo. 13-15 Neuleryhmä.</p><p>Ryhmään voi tulla oman neuleen ja/tai virkkauksen kanssa voimaantumaan ja seurustelemaan.&nbsp;</p><p>Ryhmässä opetellaan uusia neule- ja virkkaustekniikoita.&nbsp;</p><p>Ryhmään voi tulla myös hakemaan käsityöideoita ja innostusta käsitöiden tekemiseen. &nbsp;</p><p>Jos kiinnostuit, kysy lisää ohjaaja Merjalta puhelimitse puh. 09 310 44533 ma-to 9-15, tai tule tutustumaan joku torstai-iltapäivä paikanpäälle.</p><p>&nbsp;</p>"
            },
            "name": {
                "fi": "Töölön palvelukeskuksen Neuleryhmä"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggzz73wc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2fsnqy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:70/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27455/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8105/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/profile.php?id=100067836681220",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/leikkipuisto_torpparinmaki/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frg3a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frjbi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frk3u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frmpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2froby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frpta/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frrce/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frsrm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frt74/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frvou/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2frw7m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2fryu4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2fr2ki/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2fr33e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2fr5j4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2fr6yi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2fsaii/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2fsdii/?format=api"
                }
            ],
            "images": [
                {
                    "id": 48138,
                    "license": "event_only",
                    "created_time": "2018-11-01T08:48:12.851353Z",
                    "last_modified_time": "2023-08-02T08:11:07.942577Z",
                    "name": "tapahtumakuva4.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/tapahtumakuva4.jpg",
                    "cropping": "248,0,752,503",
                    "photographer_name": "",
                    "alt_text": "kädentaidot",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201003",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/48138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-09T07:18:31.061005Z",
            "last_modified_time": "2024-04-22T05:55:05.228768Z",
            "date_published": null,
            "start_time": "2024-01-10T08:00:00Z",
            "end_time": "2024-05-29T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": "Leikkipuisto Torpparinmäki"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.hel.fi/varhaiskasvatus/fi/leikkipuistotjaperhetalot/torpparinmaki/"
            },
            "short_description": {
                "fi": "Keskiviikkoisin harjoitetaan kädentaitoja yhdessä oman aikuisen kanssa."
            },
            "description": {
                "fi": "<p>Keskiviikkoisin kokoonnutaan leikkimään ja harjoittamaan kädentaitoja oman aikuisen kanssa sisällä tai ulkona.&nbsp;</p><p>Viikoittain vaihtuvat teemat.&nbsp;</p><p>Tervetuloa mukaan!</p><p>Muutokset mahdollisia. Lisätietoja toiminnasta ohjaajilta tai 0403344256</p>"
            },
            "name": {
                "fi": "Kädentaitoja pikkulapsiperheille Torppiksessa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2fsnqy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqixxpla",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/harrastushaku:3260/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqixxdb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqixxfwq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqixxhtu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqixxjse/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138401,
                    "license": "cc_by",
                    "created_time": "2024-04-22T05:47:18.535205Z",
                    "last_modified_time": "2024-04-22T05:54:37.615962Z",
                    "name": "Näetkö sä mut.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/N%C3%A4etk%C3%B6_s%C3%A4_mut_Juliste.jpg",
                    "cropping": "187,0,934,747",
                    "photographer_name": "",
                    "alt_text": "Näetkö sä mut? Juliste",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138401/?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:p11617/?format=api"
                }
            ],
            "created_time": "2024-04-22T05:54:41.637358Z",
            "last_modified_time": "2024-04-22T05:54:41.637378Z",
            "date_published": null,
            "start_time": "2024-04-25T15:30:00Z",
            "end_time": "2024-05-16T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": "Narrin näyttämö"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://nuorten.hel.fi/tekemista-ja-paikkoja/harrastuksia/teatteri/esitykset-ja-tapahtumat/"
            },
            "short_description": {
                "fi": "Tarina Unnasta, ulkopuolisuuden tunteesta ja elämän pituisesta ystävyydestä kahden öisen kulkijan välillä."
            },
            "description": {
                "fi": "<p>Teatteriryhmä Varjokuva esittää: Näetkö sä mut?</p><p>Tarina Unnasta, ulkopuolisuuden tunteesta ja elämän pituisesta ystävyydestä kahden öisen kulkijan välillä.</p><p>Esitykset:</p><p>To 25.4. klo 18:30<br>To 2.5. klo 18:15<br>To 9.5. klo 18:15<br>To 16.5. klo 18:15</p><p>Sörnäisten rantatie 31 A<br>Vapaa pääsy Tervetuloa!</p>"
            },
            "name": {
                "fi": "Teatteriryhmä Varjokuva esittää: Näetkö sä mut?"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqixxpla/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggo2haxpy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:70/?format=api"
            },
            "keywords": [
                {
                    "@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:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8105/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/profile.php?id=100067836681220",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/leikkipuisto_torpparinmaki/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g7rii/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g7tsy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g7vda/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g7wqi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g7yaa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g7zpu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g73ay/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g75ai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2g76rm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2haabe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2habpi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2hac5m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2haem4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2haf2q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2hahly/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2hai3i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2hamge/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2hanum/?format=api"
                }
            ],
            "images": [
                {
                    "id": 69443,
                    "license": "cc_by",
                    "created_time": "2021-02-17T09:35:35.100423Z",
                    "last_modified_time": "2021-02-17T09:35:35.100478Z",
                    "name": "2Pehmoeläimet.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/2Pehmoel%C3%A4imet_halYNoQ.jpg",
                    "cropping": "204,0,1428,1224",
                    "photographer_name": "",
                    "alt_text": "Pehmot",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201003",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/69443/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-09T07:24:50.441845Z",
            "last_modified_time": "2024-04-22T05:52:04.676634Z",
            "date_published": null,
            "start_time": "2024-01-12T08:00:00Z",
            "end_time": "2024-05-31T07:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": "Leikkipuisto Torpparinmäki"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.hel.fi/varhaiskasvatus/fi/leikkipuistotjaperhetalot/torpparinmaki/"
            },
            "short_description": {
                "fi": "Tervetuloa laulamaan, loruttelemaan ja musisoimaan. Tuokio järjestetään sisätiloissa ja se sopii kaikenikäisille."
            },
            "description": {
                "fi": "<p>Tervetuloa Torppiksen lauluhetkeen!</p><p>Tuokiossa laulamme, loruttelemme ja soitamme yhdessä.&nbsp;</p><p>Tuokio järjestetään sisätiloissa ja se sopii kaikenikäisille.&nbsp;</p><p>Tervetuloa!&nbsp;&nbsp;</p>"
            },
            "name": {
                "fi": "Lauluhetki perheille Torpparinmäessä"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggo2haxpy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghqcdwbqy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8141/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17413/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1954/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7526/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqcdv24a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqcdv43y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107773,
                    "license": "event_only",
                    "created_time": "2024-03-14T08:15:15.254179Z",
                    "last_modified_time": "2024-03-14T08:25:34.951081Z",
                    "name": "Naiskirjoittaja",
                    "url": "http://api.hel.fi/linkedevents/media/images/nainen_kirjoittaa_kkpBYJH.jpg",
                    "cropping": "152,0,759,608",
                    "photographer_name": "",
                    "alt_text": "Nainen kirjoittamassa",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107773/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-04-21T14:28:15.381689Z",
            "last_modified_time": "2024-04-21T14:28:15.381711Z",
            "date_published": null,
            "start_time": "2024-04-24T15:00:00Z",
            "end_time": "2024-05-22T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Monitoimitila Tempo"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Naiskirjallisuuden lukupiiri Kannelmäen kirjastossa"
            },
            "description": {
                "fi": "<p>Kannelmäen kirjaston Lukuliiketilassa kerran kuussa keskiviikkoiltaisin&nbsp;klo 18-19</p><p>10.1. Alasalmi: Sudenraudat ​<br>28.2. Hjorth: Perintötekijät ​<br>20.3. Fredriksson: Muuttolinnut ​<br>24.4. Ditlevsen: Lapsuus ​<br>22.5. Vigdis: Sydän, kuu ja sinilinnut&nbsp;</p><p>Tervetuloa lukemaan naiskirjallisuutta Pohjoismaista!</p>"
            },
            "name": {
                "fi": "Naiskirjallisuuden lukupiiri"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghqcdwbqy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghpl3bbbi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18703/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 138367,
                    "license": "event_only",
                    "created_time": "2024-04-19T10:33:35.726205Z",
                    "last_modified_time": "2024-04-19T10:34:36.162369Z",
                    "name": "Jenna Jokelaisen näyttelyn mainosbanneri",
                    "url": "http://api.hel.fi/linkedevents/media/images/jjoke_helmpromo.jpg",
                    "cropping": "400,0,2000,1601",
                    "photographer_name": "Jenna Jokelainen",
                    "alt_text": "kuvassa akvarellein maalattu lintu",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138367/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-19T10:34:36.699967Z",
            "last_modified_time": "2024-04-19T10:34:36.699995Z",
            "date_published": null,
            "start_time": "2024-04-22T15:00:00Z",
            "end_time": "2024-05-11T12: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": "Aikuistenosasto, Tikkurilan kirjasto"
            },
            "provider": {
                "fi": "Tikkurilan kirjasto"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "\"Lajien kirjo\" - Jenna Jokelaisen taidenäyttely Tikkurilan kirjastossa 22.4. - "
            },
            "description": {
                "fi": "<p>Lajien kirjo -näyttelyssä akvarellikuvitukset herättävät eloon Suomen luonnon monimuotoisuuden; nisäkkään, hyönteiset, linnut sekä kasvit.</p><p>&nbsp;</p><p>Jenna Jokelaisen näyttely esillä Tikkurilan kirjaston aikuistenosaston näyttelyseinällä 22.4. - 11.5.2024, tervetuloa katsomaan!</p>"
            },
            "name": {
                "fi": "\"Lajien kirjo\" - Jenna Jokelaisen taidenäyttely"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghpl3bbbi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghfobte7m",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8143/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040050",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfobs3xe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfobs5q4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfobs7hm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfobta5i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7txai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7tzge/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7t4tu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7t6nu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7uaba/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7ub3i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7udv4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7uhgy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7ujgu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7uk5a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7ump4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7uoei/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgb7upy4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 110648,
                    "license": "event_only",
                    "created_time": "2024-03-19T13:57:47.826798Z",
                    "last_modified_time": "2024-03-19T14:04:30.764448Z",
                    "name": "Digitalkkari neuvoo, kuinka tulostat, skannaat, kopioit tai asioit verkkopalveluissa.",
                    "url": "http://api.hel.fi/linkedevents/media/images/kirjasto_digineuvonta_kuva_daniel_leiviska.jpg",
                    "cropping": "299,0,1493,1194",
                    "photographer_name": "Daniel Leiviskä",
                    "alt_text": "Tabletti, läppäri, kännykkä ja muistitikkuja pöydällä.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/110648/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-03-19T14:03:40.675419Z",
            "last_modified_time": "2024-04-19T10:19:11.195698Z",
            "date_published": null,
            "start_time": "2024-03-20T06:00:00Z",
            "end_time": "2024-05-23T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Digitalkkari neuvoo, kuinka tulostat, skannaat, kopioit tai asioit verkkopalveluissa. "
            },
            "description": {
                "fi": "<p>Digitalkkari neuvoo, kuinka tulostat, skannaat, kopioit tai asioit verkkopalveluissa. Saat opastusta myös omien laitteiden peruskäyttöön. Digitalkkari on paikalla Laajasalon kirjastossa ke-to klo 8-14. ​Varaa aika digitalkkarille asiakaspalvelutiskiltä tai puhelimitse numerosta 09 310&nbsp;85084.​&nbsp;​​</p><p>​Digitalkkareina toimivat tietotekniikka-alan opiskelijat.</p>"
            },
            "name": {
                "fi": "Digitalkkari"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfobte7m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghpk4sop4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15309/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwl5u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aghpk4soii/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aghpk4sojy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aghpk4solm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aghpk4som4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aghpk4soom/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138352,
                    "license": "event_only",
                    "created_time": "2024-04-19T07:46:10.676506Z",
                    "last_modified_time": "2024-04-19T07:46:10.676525Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/fiona.jpg",
                    "cropping": "38,0,442,403",
                    "photographer_name": "",
                    "alt_text": "Lukukoira Fiona",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138352/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-19T07:50:24.781694Z",
            "last_modified_time": "2024-04-19T07:50:24.781716Z",
            "date_published": null,
            "start_time": "2024-04-24T11:00:00Z",
            "end_time": "2024-05-29T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "short_description": {
                "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ",
                "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ",
                "en": "Come and meet the reading dog and read a book of your choice to a patient listener. "
            },
            "description": {
                "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. </p>",
                "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. </p>",
                "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener. </p>"
            },
            "name": {
                "fi": "Lukukoira Fiona",
                "sv": "Läshund Fiona",
                "en": "Reading dog Fiona"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aghpk4sop4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghpcryxde",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:55956/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2851/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6889/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 138321,
                    "license": "cc_by",
                    "created_time": "2024-04-18T12:54:26.045729Z",
                    "last_modified_time": "2024-04-18T12:55:51.317603Z",
                    "name": "THK6497.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/THK6497.jpg",
                    "cropping": "242,0,1205,964",
                    "photographer_name": "",
                    "alt_text": "Maria Taniguchin suuri musta tiiliseinämaalaus nojaa valkeaan seinään.",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138321/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-18T12:55:51.851136Z",
            "last_modified_time": "2024-04-19T07:39:32.612547Z",
            "date_published": null,
            "start_time": "2024-04-11T09:00:00Z",
            "end_time": "2024-06-16T13: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": 150,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Kohta Taidehalli",
                "sv": "Kohta Kunsthalle",
                "en": "Kohta Kunsthalle"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://kohta.fi/exhibition/figure-maria-taniguchi-emilia-tanner/?lang=fin",
                "sv": "https://kohta.fi/exhibition/figure-maria-taniguchi-emilia-tanner/?lang=swe",
                "en": "https://kohta.fi/exhibition/figure-maria-taniguchi-emilia-tanner/?lang=eng"
            },
            "short_description": {
                "fi": "Maria Taniguchin (Filippiinit, 1981, asuu Manilassa) ja Emilia Tannerin (Suomi, 1990, asuu Helsingissä) yhteisnäyttely.",
                "sv": "Maria Taniguchi (Filippinerna, 1981, bosatt i Manilla) och Emilia Tanner (Finland, 1990, bosatt i Helsingfors).",
                "en": "Duo exhibition of Maria Taniguchi (Philippines, 1981, lives in Manila) and Emilia Tanner (Finland, 1990, lives in Helsinki)."
            },
            "description": {
                "fi": "<p>Maria Taniguchin (Filippiinit, 1981, asuu Manilassa) ja Emilia Tannerin (Suomi, 1990, asuu Helsingissä) yhteisnäyttely.</p><p>Figure esittelee kansainvälisesti tunnetun taiteilijan Maria Taniguchin sekä nuoren nousevan suomalaistaiteilijan Emilia Tannerin viimeaikaisia teoksia.</p><p>Maria Taniguchin ja Emilia Tannerin tavoissa lähestyä havaittua, koettua ja materiaalista on jotakin hyvin samankaltaista. Heidän taiteelliset menetelmänsä horjuttavat kuvan ja prosessin välistä rajaa. Heidän teoksistaan tulee ajan ruumiillistumia – teoksissa on läsnä sekä niiden tekemiseen käytetty että niiden katsomiseen vaadittu aika.</p><p>Taniguchin akryylimaalaukset kankaalle ovat variaatioita yhdestä hänen vakioaiheistaan, mustasta tiiliseinästä. Samankaltaisia maalauksia on esillä Venetsian 60. biennaalin kansainvälisessä päänäyttelyssä \"Foreigners Everywhere\".</p><p>Tanner haastaa teoksissaan valkoisen paperin eheyttä ja kestävyyttä altistamalla materiaaliaan voimakkaalle valolle (kuten auringolle ja lasersäteille) tai lävistämällä sitä terävillä työkaluilla. Hän valmistui Kuvataideakatemiasta Helsingistä vuonna 2021 ja sai hiljattain Suomen Taideyhdistyksen myöntämän nuoren taiteilijan Dukaattipalkinnon.</p><p>&nbsp;</p><p>Kohta Taidehalli</p><p>11.4.-16.6.2024</p><p>Ti–pe 12–18, la-su 12–16</p><p>Vapaa pääsy</p>",
                "sv": "<p>Maria Taniguchi (Filippinerna, 1981, bosatt i Manilla) och Emilia Tanner (Finland, 1990, bosatt i Helsingfors).</p><p>Maria Taniguchi och Emilia Tanner har samma kompromisslösa inställning till seendet, upplevelsen och materialet. Båda konstnärskapen rör sig längs gränsen mellan bild och process och förkroppsligar tiden: den tid det tar att göra dem och den tid det tar att se dem.</p><p>Maria Taniguchi visar några av de målningar, utan titlar och baserade på det enklaste och vanligaste murförbandet, som hon har gjort i mer än ett dussintal år. Denna närmast omärkligt muterande svit är en påminnelse om att vissa konstnärer – de var aldrig många – har förmågan att ständigt förnya sig även när de förblir obrottsligt lojala mot ett enda motiv. De målar alltid och aldrig samma målning.</p><p>Emilia Tanner visar ett urval bland nyare arbeten, för vilka den gemensamma nämnaren är papper och ljus. Två ljuskällor har utnyttjats: laserstrålar, programmerade att lämna brännmärken i papperet utan att helt tränga igenom det, och solstrålar som kan lysa fritt genom de handperforerade hålen i papperet. De bokbindarnålar Tanner använder pressar överflödigt papper genom hålen så att det lämnar ojämna kanter på baksidan som signalerar tredimensionalitet till det iakttagande ögat.</p><p>&nbsp;</p><p>Kohta</p><p>11.4.-16.6.2024</p><p>Ti-fre 12–18, lö-sö 12–16</p><p>Fritt inträde</p>",
                "en": "<p>Duo exhibition of Maria Taniguchi (Philippines, 1981, lives in Manila) and Emilia Tanner (Finland, 1990, lives in Helsinki).</p><p>Maria Taniguchi and Emilia Tanner share an uncompromising approach to vision, experience and material. Their works straddle the boundaries between image and process and become embodiments of time: the time it took to make them and the time it takes to view them.</p><p>Maria Taniguchi shows some of the untitled paintings, based on the simplest and most common repeating pattern in masonry, that she has been making for more than a dozen years. This almost imperceptibly mutating series is a reminder that some artists – they were never many – are capable of constant renewal while remaining unwaveringly loyal to one motif, always and never painting the same painting.</p><p>Emilia Tanner shows a selection of recent and new pieces for which the common denominators are paper and light. Two sources of light have been harnessed: laser beams, programmed to burn into the paper without fully penetrating it, and sunbeams, allowed free passage through holes that Tanner manually pierces in the paper. The book-binding needles she uses push excess paper through the holes, leaving ragged edges on the verso that signal three-dimensionality to the observing eye.</p><p>&nbsp;</p><p>Kohta</p><p>11.4.-16.6.2024</p><p>Tue-Fri 12.00-18.00</p><p>Sat-Sun 12.00-16.00</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Maria Taniguchi & Emilia Tanner: Figure",
                "sv": "Maria Taniguchi & Emilia Tanner: Figure",
                "en": "Maria Taniguchi & Emilia Tanner: Figure"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghpcryxde/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdyg752q",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p24061/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8856/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/1xShtpouT",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg6zea/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg63iu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg65lm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg7cpe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg7ii4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg7nou/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg7quy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg7u3y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg7yai/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107765,
                    "license": "event_only",
                    "created_time": "2024-03-14T07:40:52.389376Z",
                    "last_modified_time": "2024-03-20T10:16:26.467694Z",
                    "name": "Etäkieliryhmät",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kielikahvila_xzubbgj.jpg",
                    "cropping": "402,0,1998,1595",
                    "photographer_name": "Kuva: Unsplash / Nick Morrison",
                    "alt_text": "Pöydällä on tietokone, kahvimuki ja muistivihko, jonka päällä kynä lepää.",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107765/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-14T08:37:31.232125Z",
            "last_modified_time": "2024-04-19T06:14:53.654851Z",
            "date_published": null,
            "start_time": "2024-03-25T15:00:00Z",
            "end_time": "2024-05-27T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Zoom: https://us02web.zoom.us/j/83156323946?pwd=VExGUldqQ0QyZU4rVCtjRnpvMHF2QT09"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "short_description": {
                "fi": "Haluatko harjoitella suomen kielioppia mukavassa ryhmässä? Tervetuloa Opitaan kielioppia! -ryhmään. Ryhmä on etäryhmä eli opetus tapahtuu internetissä."
            },
            "description": {
                "fi": "<p>Haluatko harjoitella suomen kielioppia? Tule mukaan tähän ryhmään!&nbsp;</p><p>Kielioppiryhmä kokoontuu maanantaisin kello viisi&nbsp;internetissä eli voit osallistua ryhmään kotoa. Tule paikalle jo kello 16:55.</p><p>Sinun olisi hyvä osata jo jonkin verran suomea. Kielitasosi olisi hyvä olla vähintään A2.</p><p>Käytämme Zoom-ohjelmaa.&nbsp;Zoomia voit käyttää, jos sinulla on älypuhelin, tabletti tai tietokone.</p><p>&nbsp;</p><p>Liity tapaamiseen tästä linkistä:</p><p><a href=\"https://us02web.zoom.us/j/83156323946?pwd=VExGUldqQ0QyZU4rVCtjRnpvMHF2QT09\">https://us02web.zoom.us/j/83156323946?pwd=VExGUldqQ0QyZU4rVCtjRnpvMHF2QT09</a></p><p>Meeting ID: 831 5632 3946</p><p>&nbsp;</p><p>Kuva: Unsplash / Nick Morrison</p><p>Tarvitset salasanan, jotta voit liittyä tapaamiseen.</p><p>Saat salasanan, kun lähetät sähköpostia osoitteeseen <a href=\"mailto:gaidig.dubois@vantaa.fi\">gaidig.dubois(at)vantaa.fi</a> tai <a href=\"mailto:salla.tieva@luetaanyhdessa.fi\">salla.tieva(a)luetaanyhdessa.fi</a>.</p><p>&nbsp;</p><p>Tervetuloa mukaan!</p><p>&nbsp;</p><p>Kevään aikataulu:</p><p>ma 8.1.– ma 27.5.2024&nbsp;</p><p>ei pidetä: ma 19.2.2024 (viikko 8)&nbsp;</p><p>ei pidetä: ma 1.4.2024 (pääsiäinen)</p>"
            },
            "name": {
                "fi": "Etätapahtuma: Opitaan kielioppia!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdyg752q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghovmmcgu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:45924/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/viva_erotica/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "10-55€",
                        "en": "10-55€"
                    },
                    "description": {
                        "fi": "Yksittäiset näytösliput 10€, päiväpassit 15-20€, festivaalipassi 55€",
                        "en": "Single tickets 10€, day passes 15-25€, festival pass 55€"
                    },
                    "info_url": {
                        "fi": "https://vivaerotica.fi/elokuvat/osta-liput-festivaalille-helposti-whs-teatterin-verkkokaupasta/",
                        "en": "https://vivaerotica.fi/elokuvat/osta-liput-festivaalille-helposti-whs-teatterin-verkkokaupasta/"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghovmlx6i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghovml2qa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghovml4b4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghovml5ta/?format=api"
                }
            ],
            "images": [
                {
                    "id": 138191,
                    "license": "cc_by",
                    "created_time": "2024-04-17T05:57:21.535437Z",
                    "last_modified_time": "2024-04-17T06:09:57.431138Z",
                    "name": "vivaerotica24-neliö.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/vivaerotica24-neli%C3%B6_sC8dNdJ.jpg",
                    "cropping": "400,0,2000,1600",
                    "photographer_name": "",
                    "alt_text": "viva erotica",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/138191/?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:p5590/?format=api"
                }
            ],
            "created_time": "2024-04-17T06:14:45.570612Z",
            "last_modified_time": "2024-04-19T06:04:55.773597Z",
            "date_published": null,
            "start_time": "2024-04-25T15:00:00Z",
            "end_time": "2024-04-28T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": 80,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "https://teatteriunion.fi/",
                "en": "https://teatteriunion.fi/"
            },
            "provider": {
                "fi": "Suomen filmikulttuuri ry",
                "en": "Suomen filmikulttuuri ry"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://vivaerotica.fi/",
                "en": "https://vivaerotica.fi/"
            },
            "short_description": {
                "fi": "Viva Erotican kahdeksas vuosikerta tarjoaa virikkeitä keholle ja mielelle – elokuvallisia yllätyksiä, herkkiä nautintoja ja provosoivaa auteur-estetiikkaa.",
                "en": "Viva Erotica Film Festival  is a four day festival dedicated to erotica and sex on the big screen - from vintage classics to modern masterpieces. "
            },
            "description": {
                "fi": "<p>Viva Erotica -elokuvafestivaalin kahdeksas vuosikerta tarjoaa virikkeitä keholle ja mielelle – elokuvallisia yllätyksiä, herkkiä nautintoja ja provosoivaa auteur-estetiikkaa.</p><p>Tarkat ohjelmatiedot: <a href=\"https://vivaerotica.fi/\">https://vivaerotica.fi/</a>&nbsp;</p><p>&nbsp;</p><p>WHS Teatteri Union</p><p>25.-28.4.2024</p><p>Liput 10-55€, K-18</p>",
                "en": "<p>Viva Erotica Film Festival &nbsp;is a four day festival dedicated to erotica and sex on the big screen - from vintage classics to modern masterpieces.&nbsp;</p><p>The detailed information of the program: <a href=\"https://vivaerotica.fi/\">https://vivaerotica.fi/</a>&nbsp;</p><p>&nbsp;</p><p>WHS Teatteri Union</p><p>25.-28.4.2024</p><p>Tickets 10-55€, age limit 18 yrs</p>"
            },
            "name": {
                "fi": "Viva Erotica -elokuvafestivaali 2024",
                "en": "Viva Erotica Film Festival 2024"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghovmmcgu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}