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=47&start=now
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1031,
        "next": "http://api.hel.fi/linkedevents/v1/event/?end=today&format=api&page=48&start=now",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?end=today&format=api&page=46&start=now"
    },
    "data": [
        {
            "id": "helsinki:agcxffpkry",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10687/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p178/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p300/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnjfi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnkj4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnkui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnk5m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnlla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnmtm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnndi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnnpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnovu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnpla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnp6i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnqpq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnrza/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffntku/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnuau/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnvnu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnw2e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnx6u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffnzga/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffn2tu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffn33u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffn4yu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffn5pe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffn6oq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffn7na/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffoffe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffogte/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffoh6e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffoiru/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffojzu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffol3i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffondu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffooki/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffop2m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffoqtu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffor4m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffosxe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffotuu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffovaa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffov44/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffowoq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffow2m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffoxoa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffox6m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffoyoa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffoy5i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqnyuy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqn2yi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqn4ay/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqn54u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqn7iq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqoami/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqobsa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqocyu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqod5i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqofcu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqogja/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqoho4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqoi5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqokie/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqolou/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqomsa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqonya/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqoo7i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqoqgq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqormu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqostu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqouea/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqovki/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiwqowte/?format=api"
                }
            ],
            "images": [
                {
                    "id": 69521,
                    "license": "cc_by",
                    "created_time": "2021-02-23T11:34:30.667991Z",
                    "last_modified_time": "2021-02-23T11:34:30.668031Z",
                    "name": "tyollisyyspal_logo3.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/tyollisyyspal_logo3_V9lXwTI.png",
                    "cropping": "240,0,586,345",
                    "photographer_name": "",
                    "alt_text": "Helsingin työllisyyspalvelut logo",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02120030",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/69521/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-01-02T13:05:05.715942Z",
            "last_modified_time": "2023-12-21T07:23:19.372575Z",
            "date_published": null,
            "start_time": "2023-01-04T07:00:00Z",
            "end_time": "2024-06-19T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Koulutusneuvontaa keskiviikkoisin Itäkeskuksessa. Tule juttelemaan koulutusneuvojan kanssa koulutuksiin liittyvistä asioista."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p><strong>KESKIVIIKON KOULUTUSNEUVONTA</strong></p><p>Oletko kiinnostunut opiskelusta? Tarvitsetko apua opiskelupaikan saamiseen tai tietoa eri opiskelumahdollisuuksista? &nbsp;Koulutusneuvonta on tarkoitettu helsinkiläisille maahan muuttaneille asiakkaille.</p><p>&nbsp;</p><p><strong>Keskiviikko on Itäkeskuksen toimipaikassa koulutuspäivä!</strong></p><p>&nbsp;</p><p>Paikalla on opettajia, jotka ovat erikoistuneet maahan muuttaneiden koulutukseen liittyviin kysymyksiin. &nbsp;Koulutusneuvontaa Itäkeskuksen toimipaikassa on tarjolla joka keskiviikko klo 9–15.&nbsp;</p><p>&nbsp;</p><p><strong>Koulutusneuvonnasta saat apua:</strong></p><ul><li>sopivan koulutuksen etsimiseen &nbsp;</li><li>koulutushakemuksen tekemiseen &nbsp;</li><li>osaamisen tunnistamiseen ja tunnustamisen kysymyksiin&nbsp;</li><li>muihin koulutukseen liittyviin asioihin. &nbsp;</li></ul><p><strong>Jos haluat, että teemme käynnilläsi hakemuksen johonkin koulutukseen, ota mukaasi todistukset aikaisemmista koulutuksistasi niin, että ne ovat sähköisesti saatavilla esimerkiksi kännykästäsi.</strong></p><p>&nbsp;</p><p>Tarvittaessa voidaan käyttää tulkkia. Et tarvitse ajanvarausta. &nbsp;Kysy lisää omalta työntekijältäsi tai Työllisyyspalveluiden neuvonnasta.</p><p>&nbsp;</p><p><strong>Helsingin työllisyyspalvelut sijaitsee osoitteessa Asiakkaankatu 3 A, 4 krs., 00930 Helsinki (Itäkeskus).</strong></p><p>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Koulutusneuvontaa Itäkeskuksessa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcxffpkry/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggieuqenm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:2592/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15937/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/PerhetaloSahrami",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/perhetalosahrami/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieuo7cq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupboy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupcz4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupegm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupf7i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieuphke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupiuy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupkgi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieuplya/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupnfi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupoti/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupqb4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieuproq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieuptdi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupupa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupv4a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupxeq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupypy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieupzwy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 75366,
                    "license": "cc_by",
                    "created_time": "2021-11-15T11:35:28.803129Z",
                    "last_modified_time": "2021-11-15T11:39:59.888475Z",
                    "name": "vauvanukke.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/vauvanukke.jpg",
                    "cropping": "0,150,900,1050",
                    "photographer_name": "Perhetalo Betania",
                    "alt_text": "Perhetalo Betania",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201069",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/75366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-19T13:44:22.400248Z",
            "last_modified_time": "2023-12-19T13:44:22.400288Z",
            "date_published": null,
            "start_time": "2024-01-09T11:30:00Z",
            "end_time": "2024-05-21T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vauvatreffeillä köllöttely- ja konttausikäiset lapset viihtyvät vanhempien seurassa"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhetalon vauvatreffeille ovat kaikki vauvaperheet tervetulleita! Vauvatreffeillä köllöttely- ja konttausikäiset lapset saavat yhdessä vanhemman kanssa osallistua leikkimiseen, liikkumiseen, tutkimiseen ja ilmaisuun mm. musiikki-, liikunta-, askartelu- ja satutuokioissa. Lapset löytävät leikkiseuraa ja leikin lomassa vanhemmat voivat tutustua muihin vauvaperheisiin. Lapset ja vanhemmat voivat osallistua toiminnan suunnitteluun ja toteutukseen ohjaajien kanssa.&nbsp;<br>Mahdollisuus omien ruokien lämmittämiseen ja kahvin/teen keittoon. Perhetalossa on myös vaipanvaihtoon sopivat tilat.&nbsp;<br><br><strong>Kangasalantie 11</strong> (Lastenrattaat saa jättää sisäpihalle Anjalantie 1 C. Porttikoodin saat soittamalla p. 09&nbsp;310&nbsp;42317)&nbsp;<br>Olemme auki ma-pe klo 8.30–16.00<br><br>Aina voi tulla leikkimään ja viihtymään!<br>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Lastenrattaat saa jättää sisäpihalle Anjalantie 1 C. Porttikoodin saat soittamalla p. 09 310 42317"
            },
            "info_url": {
                "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/perhetalo-sahrami"
            },
            "name": {
                "fi": "Vauvatreffit perhetalo Sahramissa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieuqenm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggiepz5ga",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:2592/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/PerhetaloSahrami",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/perhetalosahrami",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u42030010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepywza/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepyzx4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepy3ve/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepy5ae/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepy6nq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepy7xy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzbdq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzcq4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzd34/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzfie/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzg54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzijy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzjuu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzlcq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzmsi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzn7a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzpjq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzqty/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepzr6q/?format=api"
                }
            ],
            "images": [
                {
                    "id": 96515,
                    "license": "cc_by",
                    "created_time": "2023-09-15T11:43:01.611081Z",
                    "last_modified_time": "2023-09-15T11:45:11.751470Z",
                    "name": "soittimet.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/soittimet.2..jpg",
                    "cropping": "192,0,962,770",
                    "photographer_name": "perhetalo Sahrami",
                    "alt_text": "perhetalo Sahrami",
                    "data_source": "helsinki",
                    "publisher": "helsinki:u42030010201069",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/96515/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-19T13:23:51.749718Z",
            "last_modified_time": "2023-12-19T13:23:51.749747Z",
            "date_published": null,
            "start_time": "2024-01-11T11:30:00Z",
            "end_time": "2024-05-23T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Perhetalon taaperoiden ipana-aamuun ovat kaikki taaperot vanhempineen tervetulleita! Leikitään, liikutaan, lauletaan, lorutellaan, hassutellaan, tutkitaan"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Perhetalon taaperotreffeille ovat kaikki taaperot vanhempineen tervetulleita! Tuokioissa leikitään, liikutaan, lauletaan, lorutellaan, hassutellaan, tutkitaan ja opitaan.&nbsp;</p><p>Vanhemmilla on mahdollisuus tutustua muihin lapsiperheisiin ja lapset saavat leikkiseuraa. Vanhemmat ja lapset voivat osallistua toiminnan suunnitteluun ja toteutukseen yhdessä ohjaajien kanssa.<br>Tarkempi toimintojen sisältö ja ohjelma Facebook- ja/tai Instagram- sivullamme viikoittain.<br><br>Mahdollisuus omien ruokien lämmittämiseen ja kahvin/teen keittoon. Perhetalossa on myös vaipanvaihtoon sopivat tilat.&nbsp;<br><br><strong>Kangasalantie 11</strong> (Lastenrattaat saa jättää sisäpihalle Anjalantie 1 C. Porttikoodin saat soittamalla p. 09&nbsp;310&nbsp;42317)&nbsp;<br>Olemme auki ma-pe klo 8.30–16.00<br><br>Aina voi tulla leikkimään ja viihtymään!<br><br>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Lastenrattaat saa jättää sisäpihalle Anjalantie 1 C. Porttikoodin saat soittamalla p. 09 310 42317"
            },
            "info_url": {
                "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/perhetalo-sahrami"
            },
            "name": {
                "fi": "TAAPEROTREFFIT perhetalo Sahramissa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiepz5ga/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggieoohn4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30036/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2608/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieoobfm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieooc5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieood6m/?format=api"
                }
            ],
            "images": [
                {
                    "id": 97199,
                    "license": "cc_by",
                    "created_time": "2023-10-04T12:13:53.681982Z",
                    "last_modified_time": "2023-10-04T12:15:09.179355Z",
                    "name": "coffee-1869599_1280.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/coffee-1869599_1280.jpg",
                    "cropping": "212,0,1065,853",
                    "photographer_name": "",
                    "alt_text": "alt-kahvikuppi jossa sydämen kuva. Vieressä syksyisiä lehtiä ja keksejä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200303060",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/97199/?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:17:53.913947Z",
            "last_modified_time": "2023-12-19T13:17:53.913969Z",
            "date_published": null,
            "start_time": "2024-01-09T11:00:00Z",
            "end_time": "2024-05-14T11: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,
            "short_description": {
                "fi": "Mietityttääkö muisti?"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Milloin mennä muistitutkimuksiin? Miten muistitutkimuksiin pääsee? Mistä tiedän, onko minulla muistisairaus? Mietityttääkö muisti? Tervetuloa muistineuvolaan! Muistineuvolassa muistiohjaaja antaa neuvontaa ja vastaa sinua mietityttäviin asioihin. Aikaa ei tarvitse varata etukäteen.</p><p>Lisätietoja: <a href=\"mailto:nina.kallionmaki@muistihelsinki.fi\">nina.kallionmaki@muistihelsinki.fi</a> tai 0447709121</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti. Saat maksuttoman palvelukeskuskortin seniorikeskuksen neuvonnasta.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Muistineuvola"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieoohn4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggienk3hm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30036/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27481/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p30071/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienjs3y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienjunm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienjv6e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienjxla/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienjy3i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienj2na/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienj3ym/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienj5iu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienj6uy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkae4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkbyu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkdim/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkevm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkgq4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkici/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkjpe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkk4m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkmmy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkn2y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkpfy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienkqsu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 88644,
                    "license": "event_only",
                    "created_time": "2023-01-18T07:24:20.020509Z",
                    "last_modified_time": "2023-01-18T07:25:19.261109Z",
                    "name": "Helmet -kuoro.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Helmet_-kuoro.jpg",
                    "cropping": "100,0,501,400",
                    "photographer_name": "",
                    "alt_text": "Helmet -kuoro",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200303060",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/88644/?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:13:04.078494Z",
            "last_modified_time": "2023-12-19T13:13:04.078523Z",
            "date_published": null,
            "start_time": "2024-01-11T10:00:00Z",
            "end_time": "2024-05-30T11: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,
            "short_description": {
                "fi": "Olemme hyvän mielen kuoro ja ainoa pääsyvaatimus on halu laulaa yhdessä."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Helmet -kuoro&nbsp;<br>TOIVOTTAA TERVETULLEEKSI KAIKKI UUDET LAULAJAT</p><p>Olemme hyvän mielen kuoro ja ainoa pääsyvaatimus on halu laulaa yhdessä.<br>Laulamme monenlaista musiikkia perinteisestä tanssimusiikista virsiin.<br>Kuoroa johtaa vapaaehtoinen Merja Hållfast ja säestäjänä toimii Juha Hurskainen.<br>Tiedustelut: Merja p 050 544 5347</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti. Saat maksuttoman palvelukeskuskortin seniorikeskuksen neuvonnasta.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Seniorikeskuksen Helmet -kuoron harjoitukset"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggienk3hm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggielqwgi",
            "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,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielpyyy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielpz5e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielp3cm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielp4hq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielp5lq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielp6oy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielp72m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqbda/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqcf4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqdka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqemq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqfom/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqgpm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqhre/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqiuq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqkei/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqlja/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqmmq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqnsa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqowa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqpzq/?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:05:07.645703Z",
            "last_modified_time": "2023-12-19T13:05:07.645744Z",
            "date_published": null,
            "start_time": "2024-01-04T11:00:00Z",
            "end_time": "2024-05-23T14: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,
            "short_description": {
                "fi": "Torstaisin pelataan Samba korttipeliä."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Torstaisin pelataan Samba korttipeliä. Tervetuloa mukaan!</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Samba korttipelit"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggielqwgi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggiekzzza",
            "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,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekyy6m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieky3qi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieky4xm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieky6ay/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieky7ki/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzasi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzbza/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzdbi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzeje/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzfnu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzgsy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzh2q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzi7y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzkeu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzlne/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekznci/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzoke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzppe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzqvi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzr3e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekztai/?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:02:00.150203Z",
            "last_modified_time": "2023-12-19T13:02:00.150229Z",
            "date_published": null,
            "start_time": "2024-01-08T09:30:00Z",
            "end_time": "2024-05-27T14: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,
            "short_description": {
                "fi": "Mape -pelaajissa opetellaan pelaamaan samba -korttipeliä. "
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Mape -pelaajissa opetellaan pelaamaan samba -korttipeliä. Tervetuloa mukaan.</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p><p>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Mape -pelaajat"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiekzzza/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggiejzreu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30036/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2608/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejyqna/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejyshq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejytry/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejyuve/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejyvym/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejyw5e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejyyae/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejyze4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejy2gy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejy3km/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejy4pu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejy57y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejy7gu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzaoi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzbui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzc7u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzeeq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzfle/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzgqa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzhuy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzjaa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzkea/?format=api"
                }
            ],
            "images": [
                {
                    "id": 100498,
                    "license": "cc_by",
                    "created_time": "2023-12-19T12:56:23.896842Z",
                    "last_modified_time": "2023-12-19T12:57:26.110902Z",
                    "name": "avoin muistiryhmä.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/avoin_muistiryhm%C3%A4_gdQi3Pl.jpg",
                    "cropping": "153,0,762,609",
                    "photographer_name": "",
                    "alt_text": "Eri värisiä kartongista tehtyjä sydämiä roikkuu pyykkinarulla pyykkipojista",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200303060",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100498/?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-19T12:57:35.794138Z",
            "last_modified_time": "2023-12-19T12:57:35.794163Z",
            "date_published": null,
            "start_time": "2024-01-04T08:00:00Z",
            "end_time": "2024-05-30T08: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,
            "short_description": {
                "fi": "Ryhmä, jossa tuetaan muistia ja virkistetään aivoja."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ryhmä, jossa tuetaan muistia ja virkistetään aivoja mm. sanallisilla ja kirjallisilla tehtävillä.</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti. Saat maksuttoman palvelukeskuskortin seniorikeskuksen neuvonnasta.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Muistijumppa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiejzreu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggieh52we",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30036/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2608/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh4yby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh42wa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh44aq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh45ke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh46sa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5aka/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5cgy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5dpq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5eze/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5gdq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5htu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5i6u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5kkm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5luu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5nda/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5olm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5ptm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5q6u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh5sma/?format=api"
                }
            ],
            "images": [
                {
                    "id": 100497,
                    "license": "cc_by",
                    "created_time": "2023-12-19T12:47:43.444227Z",
                    "last_modified_time": "2023-12-19T12:49:16.064721Z",
                    "name": "butterflies-1127666_640.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/butterflies-1127666_640.jpg",
                    "cropping": "106,0,533,426",
                    "photographer_name": "",
                    "alt_text": "Kaksi valkosiipistä perhosta seisoo keltaisten kukkien päällä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200303060",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100497/?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-19T12:49:26.718691Z",
            "last_modified_time": "2023-12-19T12:49:26.718715Z",
            "date_published": null,
            "start_time": "2024-01-23T08:00:00Z",
            "end_time": "2024-05-28T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ryhmä on tarkoitettu sinulle, joka olet hiljattain saanut muistisairausdiagnoosin ja kaipaat vertaistukea, käytännön tietoa ja sisältöä elämääsi."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ryhmä on tarkoitettu sinulle, joka olet hiljattain saanut muistisairausdiagnoosin ja kaipaat vertaistukea, käytännön tietoa ja sisältöä elämääsi.</p><p>Toiminta muotoutuu osallistujien toiveiden ja tarpeiden mukaan.<br>Osallistuminen on maksutonta. Ryhmän jälkeen mahdollisuus omakustanteiseen lounaaseen ravintolassa.</p><p>Lisätietoa: sosiaaliohjaaja Sanna 09 310 46315</p><p>&nbsp;</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.<br>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Avoin muistiryhmä"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieh52we/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggiefmfty",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30036/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?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,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflhpa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflj2i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflk5e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefll74/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflndy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefloia/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflpqq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflqv4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflr2m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefls5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflubm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflvde/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflwfu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflxiu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflyle/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggieflz3q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefl25y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefl37q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefl5ae/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefl6b4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefl7gy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 87392,
                    "license": "event_only",
                    "created_time": "2022-12-13T10:42:01.591313Z",
                    "last_modified_time": "2023-06-01T12:05:48.195996Z",
                    "name": "Villasukat.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Villasukat.jpg",
                    "cropping": "100,0,501,400",
                    "photographer_name": "",
                    "alt_text": "alt-villasukkia",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200303060",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/87392/?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-19T12:38:17.777910Z",
            "last_modified_time": "2023-12-19T12:38:17.778083Z",
            "date_published": null,
            "start_time": "2024-01-08T11:00:00Z",
            "end_time": "2024-05-27T12: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,
            "short_description": {
                "fi": "Tule mukaan neulomaan yhdessä ja viettämään aikaa kahvikupin äärelle."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tule mukaan neulomaan yhdessä ja viettämään aikaa kahvikupin äärelle. Voit ottaa mukaan oman käsityön tai ottaa osaa yhteisiin projekteihin.</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti.</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Neulekahvila"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggiefmfty/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggidbv77u",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30036/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10647/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303040",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbudn4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbue7u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbugm4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbuhzi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbujgm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbukrq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbumaq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbunnq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbuo6q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbuqoe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbur4i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbutjm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbuuvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbuwdu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbuxsq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbuzbu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbu2ly/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbu35u/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbu5le/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbu6va/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbu774/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvbly/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvcza/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvedy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvfta/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvhaq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbviqa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvkae/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvlqy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvm34/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvoj4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvpuq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvrba/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvsta/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbvt6u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 92786,
                    "license": "cc_by",
                    "created_time": "2023-06-01T12:20:18.584641Z",
                    "last_modified_time": "2023-06-01T12:25:49.257121Z",
                    "name": "Arabiankielinen ryhmä.jpeg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Arabiankielinen_ryhm%C3%A4.jpeg",
                    "cropping": "172,0,852,681",
                    "photographer_name": "",
                    "alt_text": "kuva ryhmästä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200303060",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/92786/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ar/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2023-12-19T10:02:21.076759Z",
            "last_modified_time": "2023-12-19T10:02:21.076792Z",
            "date_published": null,
            "start_time": "2024-01-05T13:00:00Z",
            "end_time": "2024-08-30T15: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,
            "short_description": {
                "fi": "arabiankielinen ryhmä -kaunista aikaa- eläkeläisille ja työttömille"
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>arabiankielinen ryhmä -kaunista aikaa- eläkeläisille ja työttömille.&nbsp;Ryhmä on avoin, eikä siihen tarvitse erikseen ilmoittautua<br>Ryhmässä on erilaista toimintaa mm:<br>•&nbsp;&nbsp;&nbsp;&nbsp;liikuntaa<br>•&nbsp;&nbsp;&nbsp;&nbsp;keskustelua kulttuurista<br>•&nbsp;&nbsp;&nbsp;&nbsp;taidetta<br>•&nbsp;&nbsp;&nbsp;&nbsp;tehdään ruokaa yhdessä retkiä<br>•&nbsp;&nbsp;&nbsp;&nbsp;asiantuntija luentoja</p><p>Tule paikanpäälle kuulemaan tai soita ryhmän vapaaehtoiselle Omarille 0468434954</p><p>Tapahtuma on tarkoitettu vain eläkeläisille ja työttömille, joilla on palvelukeskuskortti. Saat maksuttoman palvelukeskuskortin seniorikeskuksen neuvonnasta.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Arabiankielinen ryhmä"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggidbv77u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agghzalj7q",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "36€"
                    },
                    "info_url": {
                        "fi": "https://www.kansallisteatteri.fi/esitys/prima-facie"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzakrjy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzaksyu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzakude/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzakvoa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzakwwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzakyaa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzakzkm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzak2wm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzak37a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzak5jm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzak6uu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzak764/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzalbly/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzalcw4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 100427,
                    "license": "event_only",
                    "created_time": "2023-12-18T10:37:35.365467Z",
                    "last_modified_time": "2023-12-18T10:38:17.341137Z",
                    "name": "Prima facie",
                    "url": "http://api.hel.fi/linkedevents/media/images/53380302072_67b1ec8f6d_3k.jpg",
                    "cropping": "402,0,1998,1596",
                    "photographer_name": "Suomen Kansallisteatteri (c) Tero Ahonen",
                    "alt_text": "Nainen kahtena. punainen tausta",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100427/?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": "2023-12-18T10:38:25.286691Z",
            "last_modified_time": "2023-12-18T10:38:25.286710Z",
            "date_published": null,
            "start_time": "2024-04-17T16:00:00Z",
            "end_time": "2024-05-16T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lontoolainen Tessa Ensler on lahjakkuutensa ja ahkeruutensa ansiosta tehnyt loikan työväenluokasta huippujuristiksi. "
            },
            "provider": {
                "fi": "Suomen Kansallisteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Lontoolainen Tessa Ensler on lahjakkuutensa ja ahkeruutensa ansiosta tehnyt loikan työväenluokasta huippujuristiksi. Hän on nousukiidossa oleva alansa tähti, joka tuntee kuulustelutekniset niksit kuin omat taskunsa. Erityisesti hän on kunnostautunut seksuaalirikoksista syytettyjen puolustusasianajajana.</p><p>Juuri kun Tessan ura on saamassa uutta nostetta, hänet raiskataan. Alkaa piinallinen oikeudenkäynti, jossa Tessa joutuu kohtaamaan edustamansa oikeusjärjestelmän ‒ tällä kertaa asianomistajan näkökulmasta. Ja se näkymä, mikä Tessalle avautuu, muuttaa hänen käsityksensä totuudesta ja oikeudenmukaisuudesta.</p><p>&nbsp;</p><p>Suomen Kansallisteatteri, Maalaamosali</p><p>17.4.-16.5.2024</p><p>Kantaesitys 18.4.2024</p><p>&nbsp;</p><p>Esitykset:</p><p>17.4. / 18.4. / 24.4. / 27.4. / 29.4. / 2.5./ 8.5. / 10.5. / 11.5. / 14.5. / 15.5. / 16.5. klo 19</p><p>20.4. / 4.5. klo 13</p><p>&nbsp;</p><p>Liput 36€, teemakeskustelu 8.5.</p><p>Kesto päivittyy ensi-illan alla</p>"
            },
            "location_extra_info": {
                "fi": "Omapohja"
            },
            "info_url": {
                "fi": "https://www.kansallisteatteri.fi/esitys/prima-facie"
            },
            "name": {
                "fi": "Prima facie"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzalj7q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agghzakwwu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzalj7q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "36€"
                    },
                    "info_url": {
                        "fi": "https://www.kansallisteatteri.fi/esitys/prima-facie"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 100427,
                    "license": "event_only",
                    "created_time": "2023-12-18T10:37:35.365467Z",
                    "last_modified_time": "2023-12-18T10:38:17.341137Z",
                    "name": "Prima facie",
                    "url": "http://api.hel.fi/linkedevents/media/images/53380302072_67b1ec8f6d_3k.jpg",
                    "cropping": "402,0,1998,1596",
                    "photographer_name": "Suomen Kansallisteatteri (c) Tero Ahonen",
                    "alt_text": "Nainen kahtena. punainen tausta",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100427/?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": "2023-12-18T10:38:20.350644Z",
            "last_modified_time": "2023-12-18T10:38:20.350668Z",
            "date_published": null,
            "start_time": "2024-04-27T16:00:00Z",
            "end_time": "2024-04-27T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lontoolainen Tessa Ensler on lahjakkuutensa ja ahkeruutensa ansiosta tehnyt loikan työväenluokasta huippujuristiksi. "
            },
            "provider": {
                "fi": "Suomen Kansallisteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Lontoolainen Tessa Ensler on lahjakkuutensa ja ahkeruutensa ansiosta tehnyt loikan työväenluokasta huippujuristiksi. Hän on nousukiidossa oleva alansa tähti, joka tuntee kuulustelutekniset niksit kuin omat taskunsa. Erityisesti hän on kunnostautunut seksuaalirikoksista syytettyjen puolustusasianajajana.</p><p>Juuri kun Tessan ura on saamassa uutta nostetta, hänet raiskataan. Alkaa piinallinen oikeudenkäynti, jossa Tessa joutuu kohtaamaan edustamansa oikeusjärjestelmän ‒ tällä kertaa asianomistajan näkökulmasta. Ja se näkymä, mikä Tessalle avautuu, muuttaa hänen käsityksensä totuudesta ja oikeudenmukaisuudesta.</p><p>&nbsp;</p><p>Suomen Kansallisteatteri, Maalaamosali</p><p>17.4.-16.5.2024</p><p>Kantaesitys 18.4.2024</p><p>&nbsp;</p><p>Esitykset:</p><p>17.4. / 18.4. / 24.4. / 27.4. / 29.4. / 2.5./ 8.5. / 10.5. / 11.5. / 14.5. / 15.5. / 16.5. klo 19</p><p>20.4. / 4.5. klo 13</p><p>&nbsp;</p><p>Liput 36€, teemakeskustelu 8.5.</p><p>Kesto päivittyy ensi-illan alla</p>"
            },
            "location_extra_info": {
                "fi": "Omapohja"
            },
            "info_url": {
                "fi": "https://www.kansallisteatteri.fi/esitys/prima-facie"
            },
            "name": {
                "fi": "Prima facie"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghzakwwu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agghy4wl4y",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "35€"
                    },
                    "info_url": {
                        "fi": "https://www.kansallisteatteri.fi/esitys/plup-plup-oma-pohja"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4vz5m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4v4gy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4v5ou/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4v6vq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4v75a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4wbdm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4wcmi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4wdty/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4we4m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4wgc4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 100425,
                    "license": "event_only",
                    "created_time": "2023-12-18T10:21:25.648076Z",
                    "last_modified_time": "2023-12-18T10:22:21.117312Z",
                    "name": "Plup plup - oma pohja",
                    "url": "http://api.hel.fi/linkedevents/media/images/53359486225_c592cebb41_6k.jpg",
                    "cropping": "382,0,1898,1516",
                    "photographer_name": "Suomen Kansallisteatteri (c) Jaakko Pietiläinen",
                    "alt_text": "Alaston mies roskaämpärien edessä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100425/?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": "2023-12-18T10:22:27.313560Z",
            "last_modified_time": "2023-12-18T10:22:27.313579Z",
            "date_published": null,
            "start_time": "2024-04-19T16:00:00Z",
            "end_time": "2024-05-04T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Samuli Niittymäen ohjaus vie koelaboratorioon, jossa rotta nimeltä Splinter viettää viimeisiä päiviään. "
            },
            "provider": {
                "fi": "Suomen Kansallisteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Samuli Niittymäen ohjaus vie koelaboratorioon, jossa rotta nimeltä Splinter viettää viimeisiä päiviään.&nbsp;</p><p>Kokeessa testataan, kuinka addiktoivaa kokaiini on. Esityksessä kuullaan ja nähdään eläimen näkökulmasta, millaista on elää yksinäisyydessä ilman virikkeitä.</p><p>Vähäpuheinen esitys yhdistelee fyysistä teatteria ja tanssia.</p><p>Plup plupin kantaesitys oli Teatteri Takomossa vuonna 2021.</p><p>&nbsp;</p><p>Suomen Kansallisteatteri, Omapohja</p><p>19.4.–4.5.2024</p><p>&nbsp;</p><p>Esitykset:</p><p>19.4. / 20.4. / 22.4. / 23.4. / 26.4. / 27.4. / 29.4. / 30.4. / 3.5. / 4.5. klo 19</p><p>&nbsp;</p><p>Liput 35€</p><p>Kesto 1,5 h, ei väliaikaa</p><p>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Omapohja"
            },
            "info_url": {
                "fi": "https://www.kansallisteatteri.fi/esitys/plup-plup-oma-pohja"
            },
            "name": {
                "fi": "Plup plup ‒ oma pohja"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4wl4y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agghy4wbdm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4wl4y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "35€"
                    },
                    "info_url": {
                        "fi": "https://www.kansallisteatteri.fi/esitys/plup-plup-oma-pohja"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 100425,
                    "license": "event_only",
                    "created_time": "2023-12-18T10:21:25.648076Z",
                    "last_modified_time": "2023-12-18T10:22:21.117312Z",
                    "name": "Plup plup - oma pohja",
                    "url": "http://api.hel.fi/linkedevents/media/images/53359486225_c592cebb41_6k.jpg",
                    "cropping": "382,0,1898,1516",
                    "photographer_name": "Suomen Kansallisteatteri (c) Jaakko Pietiläinen",
                    "alt_text": "Alaston mies roskaämpärien edessä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100425/?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": "2023-12-18T10:22:24.556677Z",
            "last_modified_time": "2023-12-18T10:22:24.556707Z",
            "date_published": null,
            "start_time": "2024-04-27T16:00:00Z",
            "end_time": "2024-04-27T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Samuli Niittymäen ohjaus vie koelaboratorioon, jossa rotta nimeltä Splinter viettää viimeisiä päiviään. "
            },
            "provider": {
                "fi": "Suomen Kansallisteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Samuli Niittymäen ohjaus vie koelaboratorioon, jossa rotta nimeltä Splinter viettää viimeisiä päiviään.&nbsp;</p><p>Kokeessa testataan, kuinka addiktoivaa kokaiini on. Esityksessä kuullaan ja nähdään eläimen näkökulmasta, millaista on elää yksinäisyydessä ilman virikkeitä.</p><p>Vähäpuheinen esitys yhdistelee fyysistä teatteria ja tanssia.</p><p>Plup plupin kantaesitys oli Teatteri Takomossa vuonna 2021.</p><p>&nbsp;</p><p>Suomen Kansallisteatteri, Omapohja</p><p>19.4.–4.5.2024</p><p>&nbsp;</p><p>Esitykset:</p><p>19.4. / 20.4. / 22.4. / 23.4. / 26.4. / 27.4. / 29.4. / 30.4. / 3.5. / 4.5. klo 19</p><p>&nbsp;</p><p>Liput 35€</p><p>Kesto 1,5 h, ei väliaikaa</p><p>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Omapohja"
            },
            "info_url": {
                "fi": "https://www.kansallisteatteri.fi/esitys/plup-plup-oma-pohja"
            },
            "name": {
                "fi": "Plup plup ‒ oma pohja"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agghy4wbdm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggg2x6gie",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51869/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p12878/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27499/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303045",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x3yby/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x32ee/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x33nq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x342a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x36dy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x37mu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4aui/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4ca4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4djm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4er4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4f2e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4hfe/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4ire/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4j3a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4ley/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4mpy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4n4m/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4pia/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4qpy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4rvy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4s5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4ugm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4voq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4wvu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4x5i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x4zfm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x42nq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x433a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x45fu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x46ni/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x47xi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5bda/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5cnm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5dz4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5fde/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5gpu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5h24/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5jcm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5kk4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5lve/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5nai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5ojm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5pzq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5rba/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5sl4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5tuy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5u5q/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5wiy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5xt4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x5y5y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x52gi/?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/yso:p2433/?format=api"
                }
            ],
            "created_time": "2023-12-15T12:07:22.450349Z",
            "last_modified_time": "2023-12-15T12:07:22.450370Z",
            "date_published": null,
            "start_time": "2024-01-02T07:00:00Z",
            "end_time": "2024-12-17T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pilke-ryhmät tarjoavat vertaistuellista ohjattua ryhmätoimintaa ikääntyneille, joilla on tai on ollut päihdeongelmia."
            },
            "provider": {
                "fi": "Kannelmäen palvelukeskus"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Pilke-ryhmät tarjoavat vertaistuellista ohjattua ryhmätoimintaa&nbsp;ikääntyneille, joilla on tai on ollut&nbsp;päihdeongelmia. Ryhmään voit tulla sellaisena kuin olet, eikä se vaadi elämäntavan muuttamista. Pilke-ryhmästä saat tukea ja apua arkeen, sisältöä päivääsi, kaveruutta ja mukavaa tekemistä. Ryhmä alkaa yhteisellä aamupalalla ja kuulumiskierroksella. Toimintaa suunnitellaan yhdessä ryhmän kanssa.&nbsp;</p><p><strong>Ryhmään ilmoittaudutaan sosiaaliohjaajalle p. 09 310 23389.</strong></p><p><i>Palvelukeskuksen toiminta on tarkoitettu helsinkiläisille eläkeläisille ja työttömille. Palvelu on maksutonta, ellei toisin mainita. Saat tarvittavan palvelukeskuskortin maksutta palvelukeskuksen neuvonnasta.</i></p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Pilke-ryhmä"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2x6gie/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggg2w5k4u",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51869/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2607/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u321200303045",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4m3a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4pcy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4qle/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4rpy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4suq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4t2y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4vam/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4wfa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4xiy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4you/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w4ztq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w423a/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w44ai/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w45hu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w46mm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w47t4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w5azy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w5b7e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w5dga/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w5enq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 88866,
                    "license": "cc_by",
                    "created_time": "2023-01-24T12:47:53.766366Z",
                    "last_modified_time": "2023-01-24T12:48:21.998014Z",
                    "name": "Linked Äly ja väläys UUSI.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Linked_%C3%84ly_ja_v%C3%A4l%C3%A4ys_UUSI.jpg",
                    "cropping": "100,0,501,400",
                    "photographer_name": "",
                    "alt_text": "äly ja väläys",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200304040",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/88866/?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-15T12:02:53.296838Z",
            "last_modified_time": "2023-12-15T12:02:53.296857Z",
            "date_published": null,
            "start_time": "2024-01-11T08:00:00Z",
            "end_time": "2024-05-30T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Avoin aivopähkinätuokio"
            },
            "provider": {
                "fi": "Kannelmäen palvelukeskus"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Avoin aivopähkinätuokio vaihtuvin sisällöin. Ryhmässä pääset haastamaan ja virkistämään muistiasi erilaisten sanaleikkien ja aivopähkinöiden parissa.</p><p><i>Palvelukeskuksen toiminta on tarkoitettu helsinkiläisille eläkeläisille ja työttömille. Palvelu on maksutonta, ellei toisin mainita. Saat tarvittavan palvelukeskuskortin maksutta palvelukeskuksen neuvonnasta.</i></p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Äly ja väläys!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2w5k4u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggg2qm34y",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "45-55€"
                    },
                    "info_url": {
                        "fi": "https://www.kansallisteatteri.fi/esitys/mansikkapaikka"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmbc4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmdlu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmeqi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmfxy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmha4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmigi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmjpy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmkwu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qml6y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmnei/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmoiy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmppi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmqve/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmr4y/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qmtca/?format=api"
                }
            ],
            "images": [
                {
                    "id": 100376,
                    "license": "event_only",
                    "created_time": "2023-12-15T11:33:43.317472Z",
                    "last_modified_time": "2023-12-15T11:34:17.042440Z",
                    "name": "Mansikkapaikka",
                    "url": "http://api.hel.fi/linkedevents/media/images/53262127458_9b70770b4f_k.jpg",
                    "cropping": "340,0,1705,1366",
                    "photographer_name": "Suomen Kansallisteatteri (c) Mitro Härkönen",
                    "alt_text": "Kaksi ihmistä metsässä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100376/?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": "2023-12-15T11:34:25.527709Z",
            "last_modified_time": "2023-12-15T11:34:25.527744Z",
            "date_published": null,
            "start_time": "2024-03-04T17:00:00Z",
            "end_time": "2024-05-14T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sofi Oksasen odotettu uutuusnäytelmä kantaesitetään Kansallisteatterissa maaliskuussa 2024."
            },
            "provider": {
                "fi": "Suomen Kansallisteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sofi Oksasen odotettu uutuusnäytelmä kantaesitetään Kansallisteatterissa maaliskuussa 2024.</p><p>Mansikkapaikka on pelottavan ajankohtainen, trillerimäisten käänteiden draama, jossa ihmiset ajautuvat vihamielisen ideologian pelinappuloiksi.</p><p>Suomalaisopiskelija Ville on joutunut hoitoon psykiatrian klinikalle vieraassa maassa. Samaan aikaan keskisuomalaisella luonnonmarjatilalla on paljastunut törkeä ulkomaalaisten marjanpoimijoiden hyväksikäyttötapaus. Villen poliisisisko Alina alkaa tutkia skandaalia, joka uhkaa tahrata maineen myös mansikkatilaa isännöivältä Keijolta, Villen ja Alinan isältä. Asiat mutkistuvat, kun kukaan ei näytä tietävän, missä Ville on. Alina ryhtyy selvittämään veljensä katoamista.</p><p>Keijo on vakuuttunut, ettei hänen yrityksensä ole tehnyt mitään väärää. Jokin tuntuu kuitenkin olevan pahasti vialla. Ehkä oma maa ei olekaan mansikkaa? Ehkä vastoinkäymisten syyt ovat lähempänä kuin Keijo tai Alina kykenevät näkemään?</p><p>&nbsp;</p><p>Suomen Kansallisteatteri, Suuri näyttämö</p><p>4.3.-14.5.2024</p><p>Kantaesitys 6.3.2024</p><p>&nbsp;</p><p>Esitykset:</p><p>4.3. / 5.3. / 6.3. / 9.3. / 16.3. / 20.3. / 21.3. / 23.3. / 6.4. / 13.4. / 19.4. / 25.4. / 2.5. / 10.5. / 14.5. klo 19</p><p>Tekijätapaaminen 4.3. klo 17.30</p><p>Liput 45-55€ Lippupisteestä, kesto päivittyy myöhemmin</p>"
            },
            "location_extra_info": {
                "fi": "Suuri näyttämö"
            },
            "info_url": {
                "fi": "https://www.kansallisteatteri.fi/esitys/mansikkapaikka"
            },
            "name": {
                "fi": "Mansikkapaikka"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2qm34y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggg2lz3cu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "45-55€"
                    },
                    "info_url": {
                        "fi": "https://www.kansallisteatteri.fi/esitys/laulujoutsen-katastrofiballadi"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzhc4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzjke/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzksm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzlzy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzndi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzonq/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzptu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzqzi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzr64/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzthq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 100375,
                    "license": "event_only",
                    "created_time": "2023-12-15T11:13:29.161687Z",
                    "last_modified_time": "2023-12-15T11:14:14.345637Z",
                    "name": "Laulujoutsen",
                    "url": "http://api.hel.fi/linkedevents/media/images/53350991244_d84fd525c9_k.jpg",
                    "cropping": "315,0,1576,1261",
                    "photographer_name": "Suomen Kansallisteatteri / Aurinkoteatteri",
                    "alt_text": "Piirretty lintu ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100375/?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": "2023-12-15T11:14:21.087987Z",
            "last_modified_time": "2023-12-15T11:20:17.113597Z",
            "date_published": null,
            "start_time": "2024-04-16T16:00:00Z",
            "end_time": "2024-05-08T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Matkalla 30-vuotiseen sotaan kuningas Kustaa II Aadolf on saapunut Turkuun nauttiakseen alamaisten teloituksista "
            },
            "provider": {
                "fi": "Aurinkoteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Matkalla 30-vuotiseen sotaan kuningas Kustaa II Aadolf on saapunut Turkuun nauttiakseen alamaisten teloituksista sekä tutustumaan mullistavaan renessanssi-innovaatioon, haarukkaan.</p><p>Aikansa ylivoimaisesti parhaimmat komeljanttarit viruvat teljettyinä Turun linnan vankityrmään, vallanpitäjien aikomuksena olisi teloittaa heidät seuraavana aamuna.&nbsp;</p><p>Vainotut artistit kaappaavat Aurajoen varteen ankkuroidun purjealus Suomen Joutsenen ja päättävät ryhtyä merirosvoiksi haaliakseen niin paljon pääomaa ja rikkauksia, että Suomi huolii heidät takaisin.&nbsp;</p><p>Katolisen kirkon inkvisitio huomaa korvaamattoman aarteensa lähteneen protestanttisten junttien matkaan. Renessanssiruhtinaiden kopla lähtee raivokkaaseen takaa-ajoon, ja alukset kiitävät kohti myrskyisää Karibianmerta. Koko maailmantalous on nyt pelissä, eikä tämä taistelu voi päättyä kuin traagiseen katastrofiin.</p><p>&nbsp;</p><p>Suomen Kansallisteatteri, Suuri näyttämö</p><p>16.4.-8.5.2024</p><p>Ensi-ilta 17.4.2024</p><p>&nbsp;</p><p>Esitykset:</p><p>16.4. / 17.4. / 20.4. / 23.4. / 24.4. / 27.4. / 29.4. / 3.5. / 6.5. / 8.5. klo 19</p><p>&nbsp;</p><p>Tekijätapaaminen 29.4. klo 17.30</p><p>Liput 45-55€ Lippupisteestä, kesto päivittyy myöhemmin</p>"
            },
            "location_extra_info": {
                "fi": "Suuri näyttämö"
            },
            "info_url": {
                "fi": "https://www.kansallisteatteri.fi/esitys/laulujoutsen-katastrofiballadi"
            },
            "name": {
                "fi": "Laulujoutsen - katastrofiballadi"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lz3cu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aggg2lzonq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lz3cu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "45-55€"
                    },
                    "info_url": {
                        "fi": "https://www.kansallisteatteri.fi/esitys/laulujoutsen-katastrofiballadi"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 100375,
                    "license": "event_only",
                    "created_time": "2023-12-15T11:13:29.161687Z",
                    "last_modified_time": "2023-12-15T11:14:14.345637Z",
                    "name": "Laulujoutsen",
                    "url": "http://api.hel.fi/linkedevents/media/images/53350991244_d84fd525c9_k.jpg",
                    "cropping": "315,0,1576,1261",
                    "photographer_name": "Suomen Kansallisteatteri / Aurinkoteatteri",
                    "alt_text": "Piirretty lintu ja tekstiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/100375/?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": "2023-12-15T11:14:17.845005Z",
            "last_modified_time": "2023-12-15T11:20:14.200160Z",
            "date_published": null,
            "start_time": "2024-04-27T16:00:00Z",
            "end_time": "2024-04-27T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Matkalla 30-vuotiseen sotaan kuningas Kustaa II Aadolf on saapunut Turkuun nauttiakseen alamaisten teloituksista "
            },
            "provider": {
                "fi": "Aurinkoteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Matkalla 30-vuotiseen sotaan kuningas Kustaa II Aadolf on saapunut Turkuun nauttiakseen alamaisten teloituksista sekä tutustumaan mullistavaan renessanssi-innovaatioon, haarukkaan.</p><p>Aikansa ylivoimaisesti parhaimmat komeljanttarit viruvat teljettyinä Turun linnan vankityrmään, vallanpitäjien aikomuksena olisi teloittaa heidät seuraavana aamuna.&nbsp;</p><p>Vainotut artistit kaappaavat Aurajoen varteen ankkuroidun purjealus Suomen Joutsenen ja päättävät ryhtyä merirosvoiksi haaliakseen niin paljon pääomaa ja rikkauksia, että Suomi huolii heidät takaisin.&nbsp;</p><p>Katolisen kirkon inkvisitio huomaa korvaamattoman aarteensa lähteneen protestanttisten junttien matkaan. Renessanssiruhtinaiden kopla lähtee raivokkaaseen takaa-ajoon, ja alukset kiitävät kohti myrskyisää Karibianmerta. Koko maailmantalous on nyt pelissä, eikä tämä taistelu voi päättyä kuin traagiseen katastrofiin.</p><p>&nbsp;</p><p>Suomen Kansallisteatteri, Suuri näyttämö</p><p>16.4.-8.5.2024</p><p>Ensi-ilta 17.4.2024</p><p>&nbsp;</p><p>Esitykset:</p><p>16.4. / 17.4. / 20.4. / 23.4. / 24.4. / 27.4. / 29.4. / 3.5. / 6.5. / 8.5. klo 19</p><p>&nbsp;</p><p>Tekijätapaaminen 29.4. klo 17.30</p><p>Liput 45-55€ Lippupisteestä, kesto päivittyy myöhemmin</p>"
            },
            "location_extra_info": {
                "fi": "Suuri näyttämö"
            },
            "info_url": {
                "fi": "https://www.kansallisteatteri.fi/esitys/laulujoutsen-katastrofiballadi"
            },
            "name": {
                "fi": "Laulujoutsen - katastrofiballadi"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggg2lzonq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}