Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&include=location%2Ckeywords&page=36
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 32780,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=37",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=35"
    },
    "data": [
        {
            "id": "kulke:68036",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 576,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1956,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:348",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.541371Z",
                    "last_modified_time": "2024-02-06T13:19:15.204233Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 576,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1409,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4082869"
                    },
                    "description": null,
                    "price": {
                        "fi": "10 / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-28T15:13:12.432356Z",
            "last_modified_time": "2026-03-20T01:14:31.346405Z",
            "date_published": null,
            "start_time": "2026-09-17T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/744E1E5E48E288A45045AE53EF898873/Soul_Queen_LaGaylia_Frazier_ja_Helsingin_poliisisoittokunta"
            },
            "description": {
                "fi": "<p>Säkenöivä <b>LaGaylia Frazier</b> (USA/SWE) saapuu syksyiseen Suomeen <b>Helsingin poliisisoittokunnan</b> solistiksi. Popmusiikin kautta aikojen suurimmat hitit soivat Ruotsin pop-kuningattaren ja Suomen poliisin edustusorkesterin värikylläisinä tulkintoina vauhdikkaassa showssa. Konsertti on Keskusrikospoliisin 100-vuotisjuhlakonsertti. <br>Konsertit johtaa Helsingin poliisisoittokunnan ylikapellimestari <b>Sami Ruusuvuori</b>.</p><p>Floridan latino-pop -piireistä ja Coconuts-yhtyeestä maailmalle ponnistaneen LaGaylia Frazierin sielua hivelevä lauluääni ja hänen suuri energiansa soivat kauniisti supertähtien albumeilla, kuten Gloria Estefanin Kiss Me -albumilla ja “Shower Me With Your Love” elokuvan The Specialist soundtrackilla. Ruotsiin muuton jälkeen La Gaylia on ollut yksi prinsessa Victorian syntymäpäiväkonserteissa usein kuulluista vakiosolisteista.</p><p>LaGaylia Frazierin lavakarisma tempaisee mukaansa niin yleisön kuin orkesterinkin, ja hän onkin vieraillut poliisisoittokunnan solistina useita kertoja viime vuosina. Tämän vuoden konserteissa kuullaan musiikkia muun muassa Whitney Houstonilta, Beyoncelta, Tina Turnerilta, Gloria Gaynorilta, Beatlesilta, Aretha Franklinilta. Lisäksi päästään nauttimaan suuren sinfonisen puhallinorkesterin väriloistosta lumoavan orkesterimusiikin parissa.</p><p>Ikäsuositus: 12+</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>"
            },
            "name": {
                "fi": "Soul Queen LaGaylia Frazier ja Helsingin poliisisoittokunta – johtaa Sami Ruusuvuori"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Helsingin poliisilaitos / Helsingin poliisisoittokunta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68036/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67827",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 576,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1956,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:348",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.541371Z",
                    "last_modified_time": "2024-02-06T13:19:15.204233Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 576,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1409,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4047663",
                        "sv": "https://www.lippu.fi/eventseries/name-4047663",
                        "en": "https://www.lippu.fi/eventseries/name-4047663"
                    },
                    "description": null,
                    "price": {
                        "fi": "54,60 €",
                        "sv": "54,60 €",
                        "en": "54,60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494221,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-16T10:22:42.555753Z",
                    "last_modified_time": "2025-12-16T10:22:42.555767Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782672.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-16T10:22:42.386509Z",
            "last_modified_time": "2026-03-20T01:14:31.124706Z",
            "date_published": null,
            "start_time": "2026-09-16T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "David Tibetin luotsaama legendaarinen englantilainen, kokeellinen folk-yhtye Current 93 saapuu konsertoimaan Savoy-teatteriin 16. syyskuuta 2026.",
                "sv": "Det legendariska engelska experimentella folkbandet Current 93, som leds av David Tibet, kommer till Savoy-teatern för en konsert den 16 september 2026.",
                "en": "Legendary Current 93 to Savoy theatre in September"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DE2E0E40A8615042226ACCF26D36E1B7/Current_93",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DE2E0E40A8615042226ACCF26D36E1B7/Current_93",
                "en": "http://www.savoyteatteri.fi/en/events/event/DE2E0E40A8615042226ACCF26D36E1B7/Current_93"
            },
            "description": {
                "fi": "<p>David Tibetin luotsaama legendaarinen englantilainen, kokeellinen folk-yhtye Current 93 saapuu konsertoimaan Savoy-teatteriin 16. syyskuuta 2026.</p><p>Viime vuosina Current 93 on luonut sarjan ylistettyjä julkaisuja, mukaan lukien ”The Light Is Leaving Us All” ja ”If A City Is Set Upon A Hill” sekä uudelleenjulkaissut aiempia tuotoksiaan, kuten ”Sleep Has His House”, ”All The Pretty Little Horses”, ”Thunder Perfect Mind”, ”In Menstrual Night”, ”Nature Unveiled” ja muita hienoja sivujuonteita taiteilijan äärettömästä katalogista.</p><p>Current 93:n live-esiintymiset ovat harvinaisia hetkiä, joita odotetaan vähintäänkin innolla. Kun ne tapahtuvat, ne sijoittuvat vaikuttaviin ympäristöihin, jotka vahvistavat musiikin ilmapiiriä ja voimaa, tehden jokaisesta Current 93 -elämyksestä ainutkertaisen kokemuksen.</p><p>TuskaLive ja Blow Up That Gramophone esittävät:<br><b>Current 93</b></p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Det legendariska engelska experimentella folkbandet Current 93, som leds av David Tibet, kommer till Savoy-teatern för en konsert den 16 september 2026.</p><p>Under de senaste åren har Current 93 skapat en serie hyllade verk, inklusive ”The Light Is Leaving Us All” och ”If A City Is Set Upon A Hill”, samt gett ut tidigare produktioner på nytt, som ”Sleep Has His House”, ”All The Pretty Little Horses”, ”Thunder Perfect Mind”, ”In Menstrual Night”, ”Nature Unveiled” och andra fina delar av artistens ändlösa katalog.</p><p>Current 93:s liveframträdanden är sällsynta ögonblick som man ser fram emot. När de väl sker är det i imponerande miljöer som förstärker atmosfären och kraften i musiken, vilket gör varje Current 93-upplevelse unik.</p><p>TuskaLive och Blow Up That Gramophone presenterar:<br>Current 93</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Legendary Current 93 to Savoy theatre in September</p><p>CURRENT 93 is the Hallucinatory PicNic Æon of David Tibet and The C93 Family. Current 93’s — C93’s — unmistakable songs and works and cartoons and words have created A Face and A Fetch that is idiosyncratic and unique.</p><p>We are your Skipping-Rope NOW!</p><p>At 12.24 on December 5 2025, C93 is Reinier van Houdt, Alasdair Roberts, Aloma Ruiz Boada, Andrew Liles, David Tibet, Michael J. York, Davide Pepe, June-Alison Gibbons, Giulio Di Mauro and many other Friends — Shirley Collins, Michael Cashmore, Ben Chasny, Nick Cave, Baby Dee, Bill Fay, Marc Almond, Ossian Brown, Matt Sweeney, Anohni, and ± 93 others.</p><p>In recent years, C93 has crafted a string of highly acclaimed releases — including “The Light Is Leaving Us All” and “If A City Is Set Upon A Hill”, alongside reissues of former lives they had such as \"Sleep Has His House”, “All The Pretty Little Horses”, “Thunder Perfect Mind”, “In Menstrual Night”, “Nature Unveiled”, and other cool SideShows from her infinite back catalogue.</p><p>Live Channellings by C93 are rare occasions, eagerly anticipated by HourGlass Girls And Boys everywhere. When they do occur, they take place in striking settings that shadow and amplify the atmosphere and power of the music, making each C93 Channelling a singular experience.</p><p>Beyond music, David Tibet’s creative output extends into writing, publishing, translation, and visual art. He has published anthologies of his favourite supernatural literature — “The Moons At Your Door”, “There Is A Graveyard That Dwells in Man”, and “Dark Indeed, Sorrel” — and of his hero Count Stenbock, “Of Kings And Things”. He has also collaborated extensively on music and fiction with the supreme horror writer Thomas Ligotti, as well as with his Muse and She-Icon June-Alison Gibbons. His editions and translations of Coptic apocryphal and magical texts have been published and referenced in academic journals. He also studies and translates Akkadian, Middle English, Biblical Hebrew, and Ugaritic.</p><p>He will have a large exhibition of his artwork and writings, including his work with C93, in late 2026 at a major European art gallery.</p><p>His and his partner Ania’s publishing imprint Cashen's Gap has published editions of “The Pepsi-Cola Addict” by June-Alison Gibbons and “Discomania” by Jennifer Gibbons, and has many more unknown and gorgeous unspellable literary rarities ready to fly and sing.</p><p>After more than 93 years, C93 remains as unpredictable and compelling as ever and never. With David and The C93 Family endlessly Sketching out their Dreams and NightMares, their PicNic continues to evolve while remaining unmistakably C93: All Is The Same, And There Is No-One There.</p><p>WE ARE YOUR HOURGLASS NOW!</p><p>Love from David Tibet, 12.24, The Twelfth Of Never, 2025</p><p>TuskaLive and Blow Up That Gramophone present:<br><b>Current 93</b></p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>"
            },
            "name": {
                "fi": "Current 93",
                "sv": "Current 93",
                "en": "Current 93"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "TuskaLive / Finnish Metal Events Oy",
                "sv": "TuskaLive / Finnish Metal Events Oy",
                "en": "TuskaLive / Finnish Metal Events Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67827/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68184",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 576,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1956,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:348",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.541371Z",
                    "last_modified_time": "2024-02-06T13:19:15.204233Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1063,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 576,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1409,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4111824"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,90-43,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1588313,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T14:14:15.851330Z",
                    "last_modified_time": "2026-03-10T14:14:15.851342Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786066.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1588313/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-10T14:14:15.744766Z",
            "last_modified_time": "2026-03-20T01:14:31.029161Z",
            "date_published": null,
            "start_time": "2026-09-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D8F5D55577F511958A3D8413F3B83866/Rakkaudella_Helena_Jorma"
            },
            "description": {
                "fi": "<p><i>“Lauluja vuosien varrelta, yksin ja yhdessä. Lauluja rakkaudesta, kaipuusta, elämän illuusioista, ilosta, surusta, kielletyistä leikeistä, villeistä ruusuista, elämästä. Meistä itsestämme.”</i></p><p><b>Jorma Uotinen</b> on suomalaisen taiteen monilahjakkuus. Hänen tumma äänensä ja vahva läsnäolonsa tekevät jokaisesta esiintymisestä ainutlaatuisen kokemuksen.</p><p><b>Helena Lindgren</b> on laulaja ja näyttelijä, jonka lämmin ja sävykäs ääni on kuin luotu chansonin, jazzin ja suomalaisten ikivihreiden tulkintaan.</p><p>Rakkaudella Helena & Jorma  konserteissa kuullaan rakastettuja suomalaisia ja kansainvälisiä lauluja — Hymne à l’amour, Dance Me to the End of Love, Puhu hiljaa rakkaudesta — teemoina rakkaus, aika ja ihmisyys.</p><p>Uotisen ja Lindgrenin yhteistyö on kunnianosoitus elämälle ja taiteelle — kahden kokeneen tulkitsijan vuoropuhelu, joka sykkii samaa rytmiä kuin rakkaus itse.</p><p>Rakkaudella, Helena & Jorma</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "name": {
                "fi": "Rakkaudella Helena & Jorma – Helena Lindgren & Jorma Uotinen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Konserttitoimisto Kumpulainen Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68184/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68234",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 865,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:301",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.322231Z",
                    "last_modified_time": "2024-02-06T13:19:14.923914Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 45,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 714,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:750",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.569923Z",
                    "last_modified_time": "2024-02-06T13:19:18.031999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 9,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kesäkurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:750/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:760",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-09-12T07:10:01.276593Z",
                    "last_modified_time": "2025-09-12T07:10:01.276611Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yhteistyökumppaneiden kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)"
                    ],
                    "created_time": "2023-08-16T05:05:43.494553Z",
                    "last_modified_time": "2023-08-16T05:05:43.494572Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pörssikurssit",
                        "sv": "börskurser",
                        "en": "stock prices"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7277",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)",
                        "exchange rates",
                        "vaihtokurssit",
                        "valuutan muuntokurssit",
                        "växelkurser"
                    ],
                    "created_time": "2023-08-16T05:14:41.956398Z",
                    "last_modified_time": "2023-08-16T05:14:41.956416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valuuttakurssit",
                        "sv": "valutakurser",
                        "en": "rates of exchange"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-13T14:13:38.433309Z",
            "last_modified_time": "2026-03-20T01:14:30.907132Z",
            "date_published": null,
            "start_time": "2026-06-15T10:00:00Z",
            "end_time": "2026-06-18T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa sukeltamaan korujen ihmeelliseen maailmaan korukesäleirillä! Viikon aikana kokeillaan monipuolisesti erilaisia materiaaleja ja tekniikoita polymeerimassoista helmiin ja kierrätyslöytöihin. Inspiraatiota haetaan myös taiteesta, luonnosta ja lähialueen näyttelyistä.",
                "sv": "Välkommen till smyckenas fantastiska värld! På vårt smyckesläger testar vi olika material och tekniker – från formbara massor till pärlor och återbruksmaterial. Inspiration hämtar vi från konst, naturen och utställningar i närområdet.",
                "en": "Welcome to the wonderful world of jewellery! At our jewellery camp we explore different materials and techniques – from modelling clays to beads and recycled materials. Inspiration is drawn from art, nature and exhibitions in the surrounding area."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FB9A96D7B09BCDB490CB6BCF233107A3/Lasifaasi_Korukesaleiri",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/FB9A96D7B09BCDB490CB6BCF233107A3/Lasifaasi_Smyckeslager",
                "en": "http://www.annantalo.fi/en/events/event/FB9A96D7B09BCDB490CB6BCF233107A3/Lasifaasi_Jewellery_summer_camp"
            },
            "description": {
                "fi": "<p>Tervetuloa sukeltamaan korujen ihmeelliseen maailmaan korukesäleirillä! Viikon aikana kokeillaan monipuolisesti erilaisia materiaaleja ja tekniikoita polymeerimassoista helmiin ja kierrätyslöytöihin. Inspiraatiota haetaan myös taiteesta, luonnosta ja lähialueen näyttelyistä.</p><p>Korukesäleirillä tutustutaan erilaisiin korutyyleihin ja materiaaleihin ja huomataan, että melkein mistä tahansa voi syntyä upea koru. Viikon aikana tehdään koruja muun muassa muovailtavista massoista, paperista, pahvista, helmistä ja kierrätysmateriaaleista. Jokaisella leiripäivällä on oma teemansa, joka johdattaa uuden tekniikan ja materiaalin pariin. Hyödynnämme Annantalon loistavaa sijaintia vierailemalla lähialueen näyttelyissä tai keräämällä luonnosta materiaaleja koruihin. Aikaisempaa kokemusta korunteosta ei tarvita – riittää, että tulet mukaan ja annat luovuuden viedä. Ryhmän opetuskieli on suomi ja ruotsi. Leirin hinta on 140€ (sivuillamme lisätietoa sisaralennuksista ja ehdoista).</p><p>Ilmoittautuminen: https://www.taidekerhot.fi/koruleiri</p>",
                "sv": "<p>Välkommen till smyckenas fantastiska värld! På vårt smyckesläger testar vi olika material och tekniker – från formbara massor till pärlor och återbruksmaterial. Inspiration hämtar vi från konst, naturen och utställningar i närområdet.</p><p>På smyckessommarlägret bekantar vi oss med olika smyckesstilar och material och upptäcker att nästan vad som helst kan bli ett vackert smycke. Under veckan skapar vi smycken bland annat av formbara massor, papper, kartong, pärlor och återbruksmaterial. Varje lägerdag har sitt eget tema som introducerar en ny teknik och ett nytt material. Vi drar nytta av Annantalos utmärkta läge genom att besöka utställningar i närområdet eller samla material i naturen till våra smycken. Du behöver ingen tidigare erfarenhet av smyckestillverkning – det räcker att du kommer med och låter kreativiteten ta plats. Undervisningsspråket är finska och svenska. Lägeravgiften är 140 € (mer information om syskonrabatter och villkor finns på vår webbplats).</p><p>Anmälan: https://www.taidekerhot.fi/koruleiri</p>",
                "en": "<p>Welcome to the wonderful world of jewellery! At our jewellery camp we explore different materials and techniques – from modelling clays to beads and recycled materials. Inspiration is drawn from art, nature and exhibitions in the surrounding area.</p><p>At the jewellery summer camp we explore different jewellery styles and materials and discover that almost anything can be turned into a beautiful piece of jewellery. During the week we create jewellery from materials such as modelling clays, paper, cardboard, beads and recycled materials. Each day of the camp has its own theme introducing a new technique and material. We make use of Annantalo’s great location by visiting nearby exhibitions or collecting materials from nature for our jewellery. No previous jewellery-making experience is needed – just come along and let your creativity lead the way. The language of instruction is Finnish and Swedish. The camp fee is €140 (see our website for more information about sibling discounts and terms).</p><p>Registration: https://www.taidekerhot.fi/koruleiri</p>"
            },
            "name": {
                "fi": "Lasifaasi: Korukesäleiri – 9-13-vuotiaille",
                "sv": "Lasifaasi: Smyckesläger – 9-13-åringar",
                "en": "Lasifaasi: Jewellery summer camp – 9-13-year-olds"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68234/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68231",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 865,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:301",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.322231Z",
                    "last_modified_time": "2024-02-06T13:19:14.923914Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 45,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 714,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:750",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.569923Z",
                    "last_modified_time": "2024-02-06T13:19:18.031999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 9,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kesäkurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:750/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:760",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-09-12T07:10:01.276593Z",
                    "last_modified_time": "2025-09-12T07:10:01.276611Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yhteistyökumppaneiden kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)"
                    ],
                    "created_time": "2023-08-16T05:05:43.494553Z",
                    "last_modified_time": "2023-08-16T05:05:43.494572Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pörssikurssit",
                        "sv": "börskurser",
                        "en": "stock prices"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7277",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)",
                        "exchange rates",
                        "vaihtokurssit",
                        "valuutan muuntokurssit",
                        "växelkurser"
                    ],
                    "created_time": "2023-08-16T05:14:41.956398Z",
                    "last_modified_time": "2023-08-16T05:14:41.956416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valuuttakurssit",
                        "sv": "valutakurser",
                        "en": "rates of exchange"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-13T14:13:38.113498Z",
            "last_modified_time": "2026-03-20T01:14:30.768379Z",
            "date_published": null,
            "start_time": "2026-06-15T06:00:00Z",
            "end_time": "2026-06-18T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa sukeltamaan korujen ihmeelliseen maailmaan korukesäleirillä! Viikon aikana kokeillaan monipuolisesti erilaisia materiaaleja ja tekniikoita polymeerimassoista helmiin ja kierrätyslöytöihin. Inspiraatiota haetaan myös taiteesta, luonnosta ja lähialueen näyttelyistä.",
                "sv": "Välkommen till smyckenas fantastiska värld! På vårt smyckesläger testar vi olika material och tekniker – från formbara massor till pärlor och återbruksmaterial. Inspiration hämtar vi från konst, naturen och utställningar i närområdet.",
                "en": "Welcome to the wonderful world of jewellery! At our jewellery camp we explore different materials and techniques – from modelling clays to beads and recycled materials. Inspiration is drawn from art, nature and exhibitions in the surrounding area."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CBDEF5A5F7A74ECF885973EE648E7C87/Lasifaasi_Korukesaleiri",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CBDEF5A5F7A74ECF885973EE648E7C87/Lasifaasi_Smyckeslager",
                "en": "http://www.annantalo.fi/en/events/event/CBDEF5A5F7A74ECF885973EE648E7C87/Lasifaasi_Jewellery_summer_campKorukesaleiri"
            },
            "description": {
                "fi": "<p>Tervetuloa sukeltamaan korujen ihmeelliseen maailmaan korukesäleirillä! Viikon aikana kokeillaan monipuolisesti erilaisia materiaaleja ja tekniikoita polymeerimassoista helmiin ja kierrätyslöytöihin. Inspiraatiota haetaan myös taiteesta, luonnosta ja lähialueen näyttelyistä.</p><p>Korukesäleirillä tutustutaan erilaisiin korutyyleihin ja materiaaleihin ja huomataan, että melkein mistä tahansa voi syntyä upea koru. Viikon aikana tehdään koruja muun muassa muovailtavista massoista, paperista, pahvista, helmistä ja kierrätysmateriaaleista. Jokaisella leiripäivällä on oma teemansa, joka johdattaa uuden tekniikan ja materiaalin pariin. Hyödynnämme Annantalon loistavaa sijaintia vierailemalla lähialueen näyttelyissä tai keräämällä luonnosta materiaaleja koruihin. Aikaisempaa kokemusta korunteosta ei tarvita – riittää, että tulet mukaan ja annat luovuuden viedä. Ryhmän opetuskieli on suomi. Leirin hinta on 140€ (sivuillamme lisätietoa sisaralennuksista ja ehdoista).</p><p>Ilmoittautuminen: https://www.taidekerhot.fi/koruleiri</p>",
                "sv": "<p>Välkommen till smyckenas fantastiska värld! På vårt smyckesläger testar vi olika material och tekniker – från formbara massor till pärlor och återbruksmaterial. Inspiration hämtar vi från konst, naturen och utställningar i närområdet.</p><p>På smyckessommarlägret bekantar vi oss med olika smyckesstilar och material och upptäcker att nästan vad som helst kan bli ett vackert smycke. Under veckan skapar vi smycken bland annat av formbara massor, papper, kartong, pärlor och återbruksmaterial. Varje lägerdag har sitt eget tema som introducerar en ny teknik och ett nytt material. Vi drar nytta av Annantalos utmärkta läge genom att besöka utställningar i närområdet eller samla material i naturen till våra smycken. Du behöver ingen tidigare erfarenhet av smyckestillverkning – det räcker att du kommer med och låter kreativiteten ta plats. Undervisningsspråket är finska. Lägeravgiften är 140 € (mer information om syskonrabatter och villkor finns på vår webbplats).</p><p>Anmälan: https://www.taidekerhot.fi/koruleiri</p>",
                "en": "<p>Welcome to the wonderful world of jewellery! At our jewellery camp we explore different materials and techniques – from modelling clays to beads and recycled materials. Inspiration is drawn from art, nature and exhibitions in the surrounding area.</p><p>At the jewellery summer camp we explore different jewellery styles and materials and discover that almost anything can be turned into a beautiful piece of jewellery. During the week we create jewellery from materials such as modelling clays, paper, cardboard, beads and recycled materials. Each day of the camp has its own theme introducing a new technique and material. We make use of Annantalo’s great location by visiting nearby exhibitions or collecting materials from nature for our jewellery. No previous jewellery-making experience is needed – just come along and let your creativity lead the way. The language of instruction is Finnish. The camp fee is €140 (see our website for more information about sibling discounts and terms).</p><p>Registration: https://www.taidekerhot.fi/koruleiri</p>"
            },
            "name": {
                "fi": "Lasifaasi: Korukesäleiri – 7-9-vuotiaille",
                "sv": "Lasifaasi: Smyckesläger – 7-9-åringar",
                "en": "Lasifaasi: Jewellery summer campKorukesäleiri – 7-9-year-olds"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68231/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68271",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8740",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:54.264692Z",
                "last_modified_time": "2025-03-27T09:09:27.443498Z",
                "custom_data": null,
                "email": "malmitalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1361,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.malmitalo.fi/",
                    "sv": "https://www.malmitalo.fi/sv/framsidan",
                    "en": "https://www.malmitalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.",
                    "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.",
                    "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services."
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1956,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1349,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Malmitalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:596",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:59.781294Z",
                    "last_modified_time": "2024-02-06T13:19:16.916968Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 326,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muu"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:755",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2024-05-30T11:10:09.697444Z",
                    "last_modified_time": "2024-05-30T11:10:09.697496Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1117,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1409,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1674197,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T15:14:02.902267Z",
                    "last_modified_time": "2026-03-19T15:14:02.902283Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786140.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1674197/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T15:14:02.758211Z",
            "last_modified_time": "2026-03-20T01:14:30.535009Z",
            "date_published": null,
            "start_time": "2026-06-12T11:30:00Z",
            "end_time": "2026-06-12T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Rakkaan kaupunkimme syntymäpäivänä tapahtumakesä tarjoaa kävijöille taas runsaan ohjelmapäivän täynnä tekemistä. Luvassa myös kaksi keikkaa, joissa mukana palkittuja artisteja maan huipulta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva_Malmilla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva",
                "en": "http://www.malmitalo.fi/en/events/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva"
            },
            "description": {
                "fi": "<p>Rakkaan kaupunkimme syntymäpäivänä tapahtumakesä tarjoaa kävijöille taas runsaan ohjelmapäivän täynnä tekemistä. Luvassa myös kaksi keikkaa, joissa mukana palkittuja artisteja maan huipulta.</p><p>Tarkempi aikataulu ja ohjelma julkaistaan toukokuussa.</p><p>Tapahtumiin on vapaa pääsy.</p>"
            },
            "name": {
                "fi": "Helsinki-päivä Malmilla – Malmin tapahtumakesä 2026",
                "sv": "Helsinki-päivä – Malmin tapahtumakesä 2026",
                "en": "Helsinki-päivä – Malmin tapahtumakesä 2026"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68271/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68183",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 981,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 986,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:50",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.712175Z",
                    "last_modified_time": "2024-02-06T13:19:14.155029Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 382,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Näyttelyt"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p21812",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "onlineutställningar",
                        "webbutställningar",
                        "digitaaliset näyttelyt",
                        "digitala utställningar",
                        "digital exhibitions"
                    ],
                    "created_time": "2023-08-16T05:10:11.760235Z",
                    "last_modified_time": "2023-08-16T05:10:11.760254Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 338,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "verkkonäyttelyt",
                        "sv": "utställningar på nätet",
                        "en": "online exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1543043,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-06T12:13:13.817968Z",
                    "last_modified_time": "2026-03-06T12:13:13.817981Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781901.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1543043/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-06T12:13:13.702077Z",
            "last_modified_time": "2026-03-20T01:14:30.432714Z",
            "date_published": null,
            "start_time": "2026-06-12",
            "end_time": "2026-08-09",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soul of Helsinki on narratiivinen valokuvausmatka helsinkiläisyydestä, ihmisistä ja tiloista, kun ihmisiä ei niissä ole.",
                "sv": "Soul of Helsinki är en berättande fotografisk resa om det helsingforsiska, om människor och om rum när det inte finns människor i dem.",
                "en": "Soul of Helsinki is a narrative photographic journey through the identity and people of Helsinki and urban places with no people in them."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_-_Study_of_soul_from_a_city_perspective_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_-_Study_of_soul_from_a_city_perspective",
                "en": "http://www.stoa.fi/en/events/event/7266C7DE6D0537729934979626C5B164/Mila_Milax_Soul_of_Helsinki_Study_of_soul_from_a_city_perspective"
            },
            "description": {
                "fi": "<p>Soul of Helsinki on narratiivinen valokuvausmatka helsinkiläisyydestä, ihmisistä ja tiloista, kun ihmisiä ei niissä ole.</p><p>Helsingin miljöössä on kaikille tuttu urbaani henki, mutta miten tuntee kuuluvansa näihin tiloihin ja yhteisöihin? Soul of Helsinki on sekä yksilöllinen että yhteisöllinen kokemus. Mediansa kautta Mila juhlistaa helsinkiläisten sielukkuutta: perspektiivejä siihen, miten löytää onnellisuuden omasta tekemisestään, jakaa tarkoitustaan muiden kanssa, ja todistaa, että Helsingissä kaikki on mahdollista. Voi olla kuka tahansa, ja silti olla helsinkiläinen. Kuulua.</p><p>Minkälainen kaupunki tämä on? Mitä nämä tilat pitävät sisällään? Miten elämme kaupungin kulttuuria ja luomme yhteyksiä toisiimme? Vastaus tähän on jo sinussa itsessäsi.</p><p>Sinä olet Helsingin sielu.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Soul of Helsinki är en berättande fotografisk resa om det helsingforsiska, om människor och om rum när det inte finns människor i dem.</p><p>Miljöerna i Helsingfors har en urban anda som alla känner, men hur känner man att man tillhör dessa rum och gemenskaper. Soul of Helsinki är både en individuell och en gemensam upplevelse. Genom sina medier hyllar Mila helsingforsarnas själfullhet: perspektiv på hur man finner lycka i det man gör, delar sitt syfte med andra och bevisar att allt är möjligt i Helsingfors. Man kan vara vem som helst och ändå vara helsingforsare. Höra till.</p><p>Hurdan stad är det här? Vad finns i dessa rum? Hur lever vi ut stadskulturen och skapar kontakt med varandra? Svaret på detta finns redan inom dig.</p><p>Du är Helsingfors själ.</p><p>Fritt inträde</p>",
                "en": "<p>Soul of Helsinki is a narrative photographic journey through the identity and people of Helsinki and urban places with no people in them.</p><p>Everyone is familiar with the urban spirit of Helsinki, but how do you feel part of these spaces and communities? Soul of Helsinki is both an individual and a communal experience. Through her media, Mila celebrates the soulfulness of the residents of Helsinki: perspectives on how to find happiness in what they do, sharing their purpose with others and proving that anything is possible in Helsinki. You can be anyone and still be from Helsinki. To be heard.</p><p>What kind of city is this? What do these spaces contain? How do we live and breathe the culture of the city and connect with each other? The answer to this is already within you.</p><p>You are the soul of Helsinki.</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Mila Milax: Soul of Helsinki - Study of soul from a city perspective",
                "sv": "Mila Milax: Soul of Helsinki - Study of soul from a city perspective",
                "en": "Mila Milax: Soul of Helsinki – Study of soul from a city perspective"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68183/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68203",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 981,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 762,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 986,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6529",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "noh-teatteri",
                        "noo-teatteri",
                        "noh theater"
                    ],
                    "created_time": "2023-08-16T05:16:17.404853Z",
                    "last_modified_time": "2023-08-16T05:16:17.404870Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 544,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "no-teatteri",
                        "sv": "no-teater",
                        "en": "noh theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394060/",
                        "sv": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394060/",
                        "en": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394060/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22€- 17€",
                        "sv": "22€- 17€",
                        "en": "22€- 17€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1590178,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-11T15:40:09.815275Z",
                    "last_modified_time": "2026-03-11T15:40:09.815291Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780769.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1590178/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-11T15:40:09.705072Z",
            "last_modified_time": "2026-03-20T01:14:30.338293Z",
            "date_published": null,
            "start_time": "2026-06-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri",
                "sv": "Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.",
                "en": "Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/12A4A8CE17DAA11357F58E3A30A2A0A7/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista",
                "sv": "http://www.stoa.fi/sv/evenemang/event/12A4A8CE17DAA11357F58E3A30A2A0A7/PORTTITEATTERI_JALJET_En_dokumentarforestallning_om_kroppens_minne",
                "en": "http://www.stoa.fi/en/events/event/12A4A8CE17DAA11357F58E3A30A2A0A7/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista"
            },
            "description": {
                "fi": "<p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri</p><p>PORTTITEATTERI:</p><p>JÄLJET – Dokumentaarinen esitys kehojemme muistista</p><p>JÄLJET on Porttiteatterin dokumentaarinen teos rikostaustaisten esiintyjän temppuilevista, kovia kokeneista ja reissussa rähjääntyneistä ruumiista. Se on esitys tykyttävistä sydämistä, arvista ja vammoista, mutta myös voimasta, nautinnosta ja hoivasta. Kuinka uskaltaa nojata toiseen? Kuinka kaatua ja nousta uudelleen? Esitys on matka. Se on silmänisku myyttisille sankareille, kotiinpalaajille.</p><p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri. Sen dokumentaariset esitykset voidaan nähdä yhteiskunnallisina puheenvuoroina, joissa maailmaa tarkastellaan vankilasta vapautuneiden silmin.</p><p>Ohjaus: Rosa-Maria Perä ja työryhmä</p><p>Musiikkidramaturgia: Sanna Salmenkallio</p><p>Koreografia: Ninu Lindfors</p><p>Videot ja kuvat: Ville Tanttu</p><p>Valosuunnittelu: Riikka Karjalainen</p><p>Puvustus: Anna Sinkkonen</p><p>Porttiteatterin yhteisötyöntekijä: Noora Siljander</p><p>Tuotanto: Porttiteatteri ja STOA</p><p>Kieli: suomi<br>Genre: dokumenttiteatteri<br>Paikka: Teatterisali</p>",
                "sv": "<p>Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.</p><p>Dess dokumentärföreställningar kan ses som inlägg i samhällsdebatten. JÄLJET är ett verk om den tidigare kriminella artistens krånglande, hårt prövade och nedgångna kropp. Det är en föreställning om bultande hjärtan, ärr och skador, men också om styrka, glädje och omsorg. Verket är en resa till minnena och en blinkning till mytiska hjältar, hemvändare.</p><p>Språk: finska<br>Genre: dokumentärteater<br>Plats: Teatersalen</p>",
                "en": "<p>Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists.</p><p>Its documentary presentations can be seen as a form of social discourse. JÄLJET –Dokumentaarinen esitys kehojemme muistista (TRACES – a documentary performance about the memory our bodies hold) is a work about the tricky, hard-worn and ragged bodies of performers with a criminal background. It is a performance about beating hearts, scars and injuries, but also strength, pleasure and care. The work is a journey down memory lane and a wink to mythical heroes, homecomers.</p><p>Language: Finnish<br>Genre: documentary theatre<br>Location: theatre hall</p>"
            },
            "name": {
                "fi": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista",
                "sv": "PORTTITEATTERI: JÄLJET – En dokumentärföreställning om kroppens minne",
                "en": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68203/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68201",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 981,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 762,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 986,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6529",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "noh-teatteri",
                        "noo-teatteri",
                        "noh theater"
                    ],
                    "created_time": "2023-08-16T05:16:17.404853Z",
                    "last_modified_time": "2023-08-16T05:16:17.404870Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 544,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "no-teatteri",
                        "sv": "no-teater",
                        "en": "noh theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394059/",
                        "sv": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394059/",
                        "en": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394059/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22€- 17€",
                        "sv": "22€- 17€",
                        "en": "22€- 17€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1590177,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-11T15:40:09.419762Z",
                    "last_modified_time": "2026-03-11T15:40:09.419777Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780768.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1590177/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-11T15:40:09.289911Z",
            "last_modified_time": "2026-03-20T01:14:30.236924Z",
            "date_published": null,
            "start_time": "2026-06-10T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri.",
                "sv": "Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.",
                "en": "Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/72C7B45BF466F6600F1EAA7BC58E3201/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista",
                "sv": "http://www.stoa.fi/sv/evenemang/event/72C7B45BF466F6600F1EAA7BC58E3201/PORTTITEATTERI_JALJET_En_dokumentarforestallning_om_kroppens_minne",
                "en": "http://www.stoa.fi/en/events/event/72C7B45BF466F6600F1EAA7BC58E3201/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista"
            },
            "description": {
                "fi": "<p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri.</p><p>PORTTITEATTERI:</p><p>JÄLJET – Dokumentaarinen esitys kehojemme muistista</p><p>JÄLJET on Porttiteatterin dokumentaarinen teos rikostaustaisten esiintyjän temppuilevista, kovia kokeneista ja reissussa rähjääntyneistä ruumiista. Se on esitys tykyttävistä sydämistä, arvista ja vammoista, mutta myös voimasta, nautinnosta ja hoivasta. Kuinka uskaltaa nojata toiseen? Kuinka kaatua ja nousta uudelleen? Esitys on matka. Se on silmänisku myyttisille sankareille, kotiinpalaajille.</p><p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri. Sen dokumentaariset esitykset voidaan nähdä yhteiskunnallisina puheenvuoroina, joissa maailmaa tarkastellaan vankilasta vapautuneiden silmin.</p><p>Ohjaus: Rosa-Maria Perä ja työryhmä</p><p>Musiikkidramaturgia: Sanna Salmenkallio</p><p>Koreografia: Ninu Lindfors</p><p>Videot ja kuvat: Ville Tanttu</p><p>Valosuunnittelu: Riikka Karjalainen</p><p>Puvustus: Anna Sinkkonen</p><p>Porttiteatterin yhteisötyöntekijä: Noora Siljander</p><p>Tuotanto: Porttiteatteri ja STOA</p><p>Kieli: suomi<br>Genre: dokumenttiteatteri<br>Paikka: Teatterisali</p>",
                "sv": "<p>Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.</p><p>Dess dokumentärföreställningar kan ses som inlägg i samhällsdebatten. JÄLJET är ett verk om den tidigare kriminella artistens krånglande, hårt prövade och nedgångna kropp. Det är en föreställning om bultande hjärtan, ärr och skador, men också om styrka, glädje och omsorg. Verket är en resa till minnena och en blinkning till mytiska hjältar, hemvändare.</p><p>Språk: finska<br>Genre: dokumentärteater<br>Plats: Teatersalen</p>",
                "en": "<p>Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists.</p><p>Its documentary presentations can be seen as a form of social discourse. JÄLJET –Dokumentaarinen esitys kehojemme muistista (TRACES – a documentary performance about the memory our bodies hold) is a work about the tricky, hard-worn and ragged bodies of performers with a criminal background. It is a performance about beating hearts, scars and injuries, but also strength, pleasure and care. The work is a journey down memory lane and a wink to mythical heroes, homecomers.</p><p>Language: Finnish<br>Genre: documentary theatre<br>Location: theatre hall</p>"
            },
            "name": {
                "fi": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista",
                "sv": "PORTTITEATTERI: JÄLJET – En dokumentärföreställning om kroppens minne",
                "en": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68201/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68200",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 981,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 762,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 986,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6529",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "noh-teatteri",
                        "noo-teatteri",
                        "noh theater"
                    ],
                    "created_time": "2023-08-16T05:16:17.404853Z",
                    "last_modified_time": "2023-08-16T05:16:17.404870Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 544,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "no-teatteri",
                        "sv": "no-teater",
                        "en": "noh theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394058/",
                        "sv": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394058/",
                        "en": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394058/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22€- 17€",
                        "sv": "22€- 17€",
                        "en": "22€- 17€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1590176,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-11T15:40:08.706841Z",
                    "last_modified_time": "2026-03-11T15:40:08.706856Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780767.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1590176/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-11T15:40:08.607601Z",
            "last_modified_time": "2026-03-20T01:14:29.930800Z",
            "date_published": null,
            "start_time": "2026-06-09T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri.",
                "sv": "Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.",
                "en": "Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/743C1329ED0A00AE5FAF2FC81FCAF4CB/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista",
                "sv": "http://www.stoa.fi/sv/evenemang/event/743C1329ED0A00AE5FAF2FC81FCAF4CB/PORTTITEATTERI_JALJET_En_dokumentarforestallning_om_kroppens_minne",
                "en": "http://www.stoa.fi/en/events/event/743C1329ED0A00AE5FAF2FC81FCAF4CB/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista"
            },
            "description": {
                "fi": "<p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri.</p><p>PORTTITEATTERI:</p><p>JÄLJET – Dokumentaarinen esitys kehojemme muistista</p><p>JÄLJET on Porttiteatterin dokumentaarinen teos rikostaustaisten esiintyjän temppuilevista, kovia kokeneista ja reissussa rähjääntyneistä ruumiista. Se on esitys tykyttävistä sydämistä, arvista ja vammoista, mutta myös voimasta, nautinnosta ja hoivasta. Kuinka uskaltaa nojata toiseen? Kuinka kaatua ja nousta uudelleen? Esitys on matka. Se on silmänisku myyttisille sankareille, kotiinpalaajille.<br>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri. Sen dokumentaariset esitykset voidaan nähdä yhteiskunnallisina puheenvuoroina, joissa maailmaa tarkastellaan vankilasta vapautuneiden silmin.</p><p>Ohjaus: Rosa-Maria Perä ja työryhmä</p><p>Musiikkidramaturgia: Sanna Salmenkallio</p><p>Koreografia: Ninu Lindfors</p><p>Videot ja kuvat: Ville Tanttu</p><p>Valosuunnittelu: Riikka Karjalainen</p><p>Puvustus: Anna Sinkkonen</p><p>Porttiteatterin yhteisötyöntekijä: Noora Siljander</p><p>Tuotanto: Porttiteatteri ja STOA</p><p>Kieli: suomi<br>Genre: dokumenttiteatteri<br>Paikka: Teatterisali</p>",
                "sv": "<p>Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.</p><p>Dess dokumentärföreställningar kan ses som inlägg i samhällsdebatten. JÄLJET är ett verk om den tidigare kriminella artistens krånglande, hårt prövade och nedgångna kropp. Det är en föreställning om bultande hjärtan, ärr och skador, men också om styrka, glädje och omsorg. Verket är en resa till minnena och en blinkning till mytiska hjältar, hemvändare.</p><p>Språk: finska<br>Genre: dokumentärteater<br>Plats: Teatersalen</p>",
                "en": "<p>Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists.</p><p>Its documentary presentations can be seen as a form of social discourse. JÄLJET –Dokumentaarinen esitys kehojemme muistista (TRACES – a documentary performance about the memory our bodies hold) is a work about the tricky, hard-worn and ragged bodies of performers with a criminal background. It is a performance about beating hearts, scars and injuries, but also strength, pleasure and care. The work is a journey down memory lane and a wink to mythical heroes, homecomers.</p><p>Language: Finnish<br>Genre: documentary theatre<br>Location: theatre hall</p>"
            },
            "name": {
                "fi": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista",
                "sv": "PORTTITEATTERI: JÄLJET – En dokumentärföreställning om kroppens minne",
                "en": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68200/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68233",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 865,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:301",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.322231Z",
                    "last_modified_time": "2024-02-06T13:19:14.923914Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 45,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 714,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:750",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.569923Z",
                    "last_modified_time": "2024-02-06T13:19:18.031999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 9,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kesäkurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:750/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:760",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-09-12T07:10:01.276593Z",
                    "last_modified_time": "2025-09-12T07:10:01.276611Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yhteistyökumppaneiden kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)"
                    ],
                    "created_time": "2023-08-16T05:05:43.494553Z",
                    "last_modified_time": "2023-08-16T05:05:43.494572Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pörssikurssit",
                        "sv": "börskurser",
                        "en": "stock prices"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7277",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)",
                        "exchange rates",
                        "vaihtokurssit",
                        "valuutan muuntokurssit",
                        "växelkurser"
                    ],
                    "created_time": "2023-08-16T05:14:41.956398Z",
                    "last_modified_time": "2023-08-16T05:14:41.956416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valuuttakurssit",
                        "sv": "valutakurser",
                        "en": "rates of exchange"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-13T14:13:37.517845Z",
            "last_modified_time": "2026-03-20T01:14:29.814102Z",
            "date_published": null,
            "start_time": "2026-06-08T10:00:00Z",
            "end_time": "2026-06-12T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa sukeltamaan korujen ihmeelliseen maailmaan korukesäleirillä! Viikon aikana kokeillaan monipuolisesti erilaisia materiaaleja ja tekniikoita polymeerimassoista helmiin ja kierrätyslöytöihin. Inspiraatiota haetaan myös taiteesta, luonnosta ja lähialueen näyttelyistä.",
                "sv": "Välkommen till smyckenas fantastiska värld! På vårt smyckesläger testar vi olika material och tekniker – från formbara massor till pärlor och återbruksmaterial. Inspiration hämtar vi från konst, naturen och utställningar i närområdet.",
                "en": "Welcome to the wonderful world of jewellery! At our jewellery camp we explore different materials and techniques – from modelling clays to beads and recycled materials. Inspiration is drawn from art, nature and exhibitions in the surrounding area."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/278ED09D6AED1489C76A9F3E1F3CEE47/Lasifaasi_Korukesaleiri",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/278ED09D6AED1489C76A9F3E1F3CEE47/Lasifaasi_Smyckeslager",
                "en": "http://www.annantalo.fi/en/events/event/278ED09D6AED1489C76A9F3E1F3CEE47/Lasifaasi_Jewellery_summer_camp"
            },
            "description": {
                "fi": "<p>Tervetuloa sukeltamaan korujen ihmeelliseen maailmaan korukesäleirillä! Viikon aikana kokeillaan monipuolisesti erilaisia materiaaleja ja tekniikoita polymeerimassoista helmiin ja kierrätyslöytöihin. Inspiraatiota haetaan myös taiteesta, luonnosta ja lähialueen näyttelyistä.</p><p>Korukesäleirillä tutustutaan erilaisiin korutyyleihin ja materiaaleihin ja huomataan, että melkein mistä tahansa voi syntyä upea koru. Viikon aikana tehdään koruja muun muassa muovailtavista massoista, paperista, pahvista, helmistä ja kierrätysmateriaaleista. Jokaisella leiripäivällä on oma teemansa, joka johdattaa uuden tekniikan ja materiaalin pariin. Päivissä on mukana myös kevyitä inspiraatioretkiä. Hyödynnämme Annantalon loistavaa sijaintia vierailemalla lähialueen näyttelyissä tai keräämällä luonnosta materiaaleja koruihin. Aikaisempaa kokemusta korunteosta ei tarvita – riittää, että tulet mukaan ja annat luovuuden viedä. Ryhmän opetuskieli on suomi ja ruotsi. Leirin hinta on 160€ (sivuillamme lisätietoa sisaralennuksista ja ehdoista).</p><p>Ilmoittautuminen: https://www.taidekerhot.fi/koruleiri</p>",
                "sv": "<p>Välkommen till smyckenas fantastiska värld! På vårt smyckesläger testar vi olika material och tekniker – från formbara massor till pärlor och återbruksmaterial. Inspiration hämtar vi från konst, naturen och utställningar i närområdet.</p><p>På smyckessommarlägret bekantar vi oss med olika smyckesstilar och material och upptäcker att nästan vad som helst kan bli ett vackert smycke. Under veckan skapar vi smycken bland annat av formbara massor, papper, kartong, pärlor och återbruksmaterial. Varje lägerdag har sitt eget tema som introducerar en ny teknik och ett nytt material. Vi drar nytta av Annantalos utmärkta läge genom att besöka utställningar i närområdet eller samla material i naturen till våra smycken. Du behöver ingen tidigare erfarenhet av smyckestillverkning – det räcker att du kommer med och låter kreativiteten ta plats. Undervisningsspråket är finska och svenska. Lägeravgiften är 160 € (mer information om syskonrabatter och villkor finns på vår webbplats).</p><p>Anmälan: https://www.taidekerhot.fi/koruleiri</p>",
                "en": "<p>Welcome to the wonderful world of jewellery! At our jewellery camp we explore different materials and techniques – from modelling clays to beads and recycled materials. Inspiration is drawn from art, nature and exhibitions in the surrounding area.</p><p>At the jewellery summer camp we explore different jewellery styles and materials and discover that almost anything can be turned into a beautiful piece of jewellery. During the week we create jewellery from materials such as modelling clays, paper, cardboard, beads and recycled materials. Each day of the camp has its own theme introducing a new technique and material. We make use of Annantalo’s great location by visiting nearby exhibitions or collecting materials from nature for our jewellery. No previous jewellery-making experience is needed – just come along and let your creativity lead the way. The language of instruction is Finnish and Swedish. The camp fee is €160 (see our website for more information about sibling discounts and terms).</p><p>Registration: https://www.taidekerhot.fi/koruleiri</p>"
            },
            "name": {
                "fi": "Lasifaasi: Korukesäleiri – 9-13-vuotiaille",
                "sv": "Lasifaasi: Smyckesläger – 9-13-åringar",
                "en": "Lasifaasi: Jewellery summer camp – 9-13-year-olds"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68233/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68232",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 865,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:301",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.322231Z",
                    "last_modified_time": "2024-02-06T13:19:14.923914Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 45,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 714,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:750",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.569923Z",
                    "last_modified_time": "2024-02-06T13:19:18.031999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 9,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kesäkurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:750/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:760",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-09-12T07:10:01.276593Z",
                    "last_modified_time": "2025-09-12T07:10:01.276611Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yhteistyökumppaneiden kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)"
                    ],
                    "created_time": "2023-08-16T05:05:43.494553Z",
                    "last_modified_time": "2023-08-16T05:05:43.494572Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pörssikurssit",
                        "sv": "börskurser",
                        "en": "stock prices"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7277",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)",
                        "exchange rates",
                        "vaihtokurssit",
                        "valuutan muuntokurssit",
                        "växelkurser"
                    ],
                    "created_time": "2023-08-16T05:14:41.956398Z",
                    "last_modified_time": "2023-08-16T05:14:41.956416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valuuttakurssit",
                        "sv": "valutakurser",
                        "en": "rates of exchange"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-13T14:13:37.110472Z",
            "last_modified_time": "2026-03-20T01:14:29.706735Z",
            "date_published": null,
            "start_time": "2026-06-08T06:00:00Z",
            "end_time": "2026-06-12T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa sukeltamaan korujen ihmeelliseen maailmaan korukesäleirillä! Viikon aikana kokeillaan monipuolisesti erilaisia materiaaleja ja tekniikoita polymeerimassoista helmiin ja kierrätyslöytöihin. Inspiraatiota haetaan myös taiteesta, luonnosta ja lähialueen näyttelyistä.",
                "sv": "Välkommen till smyckenas fantastiska värld! På vårt smyckesläger testar vi olika material och tekniker – från formbara massor till pärlor och återbruksmaterial. Inspiration hämtar vi från konst, naturen och utställningar i närområdet.",
                "en": "Welcome to the wonderful world of jewellery! At our jewellery camp we explore different materials and techniques – from modelling clays to beads and recycled materials. Inspiration is drawn from art, nature and exhibitions in the surrounding area."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7E2414340C189944150DB56B6C722585/Lasifaasi_Korukesaleiri",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7E2414340C189944150DB56B6C722585/Lasifaasi_Smyckeslager",
                "en": "http://www.annantalo.fi/en/events/event/7E2414340C189944150DB56B6C722585/Lasifaasi_Jewellery_summer_camp"
            },
            "description": {
                "fi": "<p>Tervetuloa sukeltamaan korujen ihmeelliseen maailmaan korukesäleirillä! Viikon aikana kokeillaan monipuolisesti erilaisia materiaaleja ja tekniikoita polymeerimassoista helmiin ja kierrätyslöytöihin. Inspiraatiota haetaan myös taiteesta, luonnosta ja lähialueen näyttelyistä.</p><p>Korukesäleirillä tutustutaan erilaisiin korutyyleihin ja materiaaleihin ja huomataan, että melkein mistä tahansa voi syntyä upea koru. Viikon aikana tehdään koruja muun muassa muovailtavista massoista, paperista, pahvista, helmistä ja kierrätysmateriaaleista. Jokaisella leiripäivällä on oma teemansa, joka johdattaa uuden tekniikan ja materiaalin pariin. Päivissä on mukana myös kevyitä inspiraatioretkiä. Hyödynnämme Annantalon loistavaa sijaintia vierailemalla lähialueen näyttelyissä tai keräämällä luonnosta materiaaleja koruihin. Aikaisempaa kokemusta korunteosta ei tarvita – riittää, että tulet mukaan ja annat luovuuden viedä. Ryhmän opetuskieli on suomi. Leirin hinta on 160€ (sivuillamme lisätietoa sisaralennuksista ja ehdoista).</p><p>Ilmoittautuminen: https://www.taidekerhot.fi/koruleiri</p>",
                "sv": "<p>Välkommen till smyckenas fantastiska värld! På vårt smyckesläger testar vi olika material och tekniker – från formbara massor till pärlor och återbruksmaterial. Inspiration hämtar vi från konst, naturen och utställningar i närområdet.</p><p>På smyckessommarlägret bekantar vi oss med olika smyckesstilar och material och upptäcker att nästan vad som helst kan bli ett vackert smycke. Under veckan skapar vi smycken bland annat av formbara massor, papper, kartong, pärlor och återbruksmaterial. Varje lägerdag har sitt eget tema som introducerar en ny teknik och ett nytt material. Vi drar nytta av Annantalos utmärkta läge genom att besöka utställningar i närområdet eller samla material i naturen till våra smycken. Du behöver ingen tidigare erfarenhet av smyckestillverkning – det räcker att du kommer med och låter kreativiteten ta plats. Undervisningsspråket är finska. Lägeravgiften är 160 € (mer information om syskonrabatter och villkor finns på vår webbplats).</p><p>Anmälan: https://www.taidekerhot.fi/koruleiri</p>",
                "en": "<p>Welcome to the wonderful world of jewellery! At our jewellery camp we explore different materials and techniques – from modelling clays to beads and recycled materials. Inspiration is drawn from art, nature and exhibitions in the surrounding area.</p><p>At the jewellery summer camp we explore different jewellery styles and materials and discover that almost anything can be turned into a beautiful piece of jewellery. During the week we create jewellery from materials such as modelling clays, paper, cardboard, beads and recycled materials. Each day of the camp has its own theme introducing a new technique and material. We make use of Annantalo’s great location by visiting nearby exhibitions or collecting materials from nature for our jewellery. No previous jewellery-making experience is needed – just come along and let your creativity lead the way. The language of instruction is Finnish. The camp fee is €160 (see our website for more information about sibling discounts and terms).</p><p>Registration: https://www.taidekerhot.fi/koruleiri</p>"
            },
            "name": {
                "fi": "Lasifaasi: Korukesäleiri – 7-9-vuotiaille",
                "sv": "Lasifaasi: Smyckesläger – 7-9-åringar",
                "en": "Lasifaasi: Jewellery summer camp – 7-9-year-olds"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68232/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68198",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 981,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 762,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 986,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6529",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "noh-teatteri",
                        "noo-teatteri",
                        "noh theater"
                    ],
                    "created_time": "2023-08-16T05:16:17.404853Z",
                    "last_modified_time": "2023-08-16T05:16:17.404870Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 544,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "no-teatteri",
                        "sv": "no-teater",
                        "en": "noh theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394057/",
                        "sv": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394057/",
                        "en": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394057/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22€- 17€",
                        "sv": "22€- 17€",
                        "en": "22€- 17€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1590175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-11T15:40:08.361913Z",
                    "last_modified_time": "2026-03-11T15:40:08.361928Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780764.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1590175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-11T15:40:08.270808Z",
            "last_modified_time": "2026-03-20T01:14:29.617421Z",
            "date_published": null,
            "start_time": "2026-06-06T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri.",
                "sv": "Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.",
                "en": "Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/826590A905944FA4DF005C275D132359/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista",
                "sv": "http://www.stoa.fi/sv/evenemang/event/826590A905944FA4DF005C275D132359/PORTTITEATTERI_JALJET_En_dokumentarforestallning_om_kroppens_minne",
                "en": "http://www.stoa.fi/en/events/event/826590A905944FA4DF005C275D132359/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista"
            },
            "description": {
                "fi": "<p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri.</p><p>PORTTITEATTERI:</p><p>JÄLJET – Dokumentaarinen esitys kehojemme muistista</p><p>JÄLJET on Porttiteatterin dokumentaarinen teos rikostaustaisten esiintyjän temppuilevista, kovia kokeneista ja reissussa rähjääntyneistä ruumiista. Se on esitys tykyttävistä sydämistä, arvista ja vammoista, mutta myös voimasta, nautinnosta ja hoivasta. Kuinka uskaltaa nojata toiseen? Kuinka kaatua ja nousta uudelleen? Esitys on matka. Se on silmänisku myyttisille sankareille, kotiinpalaajille.</p><p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri. Sen dokumentaariset esitykset voidaan nähdä yhteiskunnallisina puheenvuoroina, joissa maailmaa tarkastellaan vankilasta vapautuneiden silmin.</p><p>Ohjaus: Rosa-Maria Perä ja työryhmä</p><p>Musiikkidramaturgia: Sanna Salmenkallio</p><p>Koreografia: Ninu Lindfors</p><p>Videot ja kuvat: Ville Tanttu</p><p>Valosuunnittelu: Riikka Karjalainen</p><p>Puvustus: Anna Sinkkonen</p><p>Porttiteatterin yhteisötyöntekijä: Noora Siljander</p><p>Tuotanto: Porttiteatteri ja STOA</p><p>Kieli: suomi<br>Genre: dokumenttiteatteri<br>Paikka: Teatterisali</p>",
                "sv": "<p>Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.</p><p>Dess dokumentärföreställningar kan ses som inlägg i samhällsdebatten. JÄLJET är ett verk om den tidigare kriminella artistens krånglande, hårt prövade och nedgångna kropp. Det är en föreställning om bultande hjärtan, ärr och skador, men också om styrka, glädje och omsorg. Verket är en resa till minnena och en blinkning till mytiska hjältar, hemvändare.</p><p>Språk: finska<br>Genre: dokumentärteater<br>Plats: Teatersalen</p>",
                "en": "<p>Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists.</p><p>Its documentary presentations can be seen as a form of social discourse. JÄLJET –Dokumentaarinen esitys kehojemme muistista (TRACES – a documentary performance about the memory our bodies hold) is a work about the tricky, hard-worn and ragged bodies of performers with a criminal background. It is a performance about beating hearts, scars and injuries, but also strength, pleasure and care. The work is a journey down memory lane and a wink to mythical heroes, homecomers.</p><p>Language: Finnish<br>Genre: documentary theatre<br>Location: theatre hall</p>"
            },
            "name": {
                "fi": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista",
                "sv": "PORTTITEATTERI: JÄLJET – En dokumentärföreställning om kroppens minne",
                "en": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68198/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68197",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 981,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 762,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 986,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6529",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "noh-teatteri",
                        "noo-teatteri",
                        "noh theater"
                    ],
                    "created_time": "2023-08-16T05:16:17.404853Z",
                    "last_modified_time": "2023-08-16T05:16:17.404870Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 544,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "no-teatteri",
                        "sv": "no-teater",
                        "en": "noh theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394056/",
                        "sv": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394056/",
                        "en": "https://www.lippu.fi/event/jaljet-dokumentaarinen-esitys-kehojemme-muistista-stoa-21394056/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22€- 17€",
                        "sv": "22€- 17€",
                        "en": "22€- 17€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1590174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-11T15:40:08.035519Z",
                    "last_modified_time": "2026-03-11T15:40:08.035535Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780763.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1590174/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-11T15:40:07.927294Z",
            "last_modified_time": "2026-03-20T01:14:29.507257Z",
            "date_published": null,
            "start_time": "2026-06-05T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri.",
                "sv": "Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.",
                "en": "Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/AC63DBF6A6F8110B4F5466AA555A0BB9/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista",
                "sv": "http://www.stoa.fi/sv/evenemang/event/AC63DBF6A6F8110B4F5466AA555A0BB9/PORTTITEATTERI_JALJET_En_dokumentarforestallning_om_kroppens_minne",
                "en": "http://www.stoa.fi/en/events/event/AC63DBF6A6F8110B4F5466AA555A0BB9/PORTTITEATTERI_JALJET_Dokumentaarinen_esitys_kehojemme_muistista"
            },
            "description": {
                "fi": "<p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri.</p><p>PORTTITEATTERI:</p><p>JÄLJET – Dokumentaarinen esitys kehojemme muistista</p><p>JÄLJET on Porttiteatterin dokumentaarinen teos rikostaustaisten esiintyjän temppuilevista, kovia kokeneista ja reissussa rähjääntyneistä ruumiista. Se on esitys tykyttävistä sydämistä, arvista ja vammoista, mutta myös voimasta, nautinnosta ja hoivasta. Kuinka uskaltaa nojata toiseen? Kuinka kaatua ja nousta uudelleen? Esitys on matka. Se on silmänisku myyttisille sankareille, kotiinpalaajille.</p><p>Porttiteatteri on vankilasta vapautuvien, rikostaustaisten sekä ammattitaiteilijoiden yhteisöteatteri. Sen dokumentaariset esitykset voidaan nähdä yhteiskunnallisina puheenvuoroina, joissa maailmaa tarkastellaan vankilasta vapautuneiden silmin.</p><p>Ohjaus: Rosa-Maria Perä ja työryhmä</p><p>Musiikkidramaturgia: Sanna Salmenkallio</p><p>Koreografia: Ninu Lindfors</p><p>Videot ja kuvat: Ville Tanttu</p><p>Valosuunnittelu: Riikka Karjalainen</p><p>Puvustus: Anna Sinkkonen</p><p>Porttiteatterin yhteisötyöntekijä: Noora Siljander</p><p>Tuotanto: Porttiteatteri ja STOA</p><p>Kieli: suomi<br>Genre: dokumenttiteatteri<br>Paikka: Teatterisali</p>",
                "sv": "<p>Porttiteatteri är en social teater för personer med brottslig bakgrund som frigetts från fängelset och för professionella konstnärer.</p><p>Dess dokumentärföreställningar kan ses som inlägg i samhällsdebatten. JÄLJET är ett verk om den tidigare kriminella artistens krånglande, hårt prövade och nedgångna kropp. Det är en föreställning om bultande hjärtan, ärr och skador, men också om styrka, glädje och omsorg. Verket är en resa till minnena och en blinkning till mytiska hjältar, hemvändare.</p><p>Språk: finska<br>Genre: dokumentärteater<br>Plats: Teatersalen</p>",
                "en": "<p>Porttiteatteri is a community theatre for people released from prison, people with a criminal background and professional artists.</p><p>Its documentary presentations can be seen as a form of social discourse. JÄLJET –Dokumentaarinen esitys kehojemme muistista (TRACES – a documentary performance about the memory our bodies hold) is a work about the tricky, hard-worn and ragged bodies of performers with a criminal background. It is a performance about beating hearts, scars and injuries, but also strength, pleasure and care. The work is a journey down memory lane and a wink to mythical heroes, homecomers.</p><p>Language: Finnish<br>Genre: documentary theatre<br>Location: theatre hall</p>"
            },
            "name": {
                "fi": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista",
                "sv": "PORTTITEATTERI: JÄLJET – En dokumentärföreställning om kroppens minne",
                "en": "PORTTITEATTERI: JÄLJET – Dokumentaarinen esitys kehojemme muistista"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68197/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68242",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7260",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Keski-Vuosaari",
                            "sv": "Mellersta Nordsjö"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.880408Z",
                "last_modified_time": "2025-03-27T09:09:26.837979Z",
                "custom_data": null,
                "email": "vuotalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00980",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 770,
                "image": 414657,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.143385,
                        60.208565
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85983"
                },
                "street_address": {
                    "fi": "Mosaiikkitori 2",
                    "sv": "Mosaiktorget 2",
                    "en": "Mosaiikkitori 2"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.vuotalo.fi/",
                    "sv": "https://www.vuotalo.fi/sv/framsidan",
                    "en": "https://www.vuotalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin."
                },
                "name": {
                    "fi": "Vuotalo",
                    "sv": "Nordhuset",
                    "en": "Vuosaari House"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:45",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.630975Z",
                    "last_modified_time": "2024-02-06T13:19:14.040714Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 807,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vuotalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1641034,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-16T08:13:48.022057Z",
                    "last_modified_time": "2026-03-16T08:13:48.022072Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779134.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1641034/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-16T08:13:47.925164Z",
            "last_modified_time": "2026-03-20T01:14:29.318663Z",
            "date_published": null,
            "start_time": "2026-06-05",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!",
                "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!",
                "en": "Come and spend summer holidays with us making art on playgrounds!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/01E6C586CE590AE8CAC259ACB9316BFC/Taidefillari",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/01E6C586CE590AE8CAC259ACB9316BFC/Konstcykel",
                "en": "http://www.vuotalo.fi/en/events/event/01E6C586CE590AE8CAC259ACB9316BFC/Art_bike_Taidefillari"
            },
            "description": {
                "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ei ennakkoilmoittautumista!</p><p>Sopii lapsille ja perheille.</p><p>Kieli: suomi, englanti</p><p>Maksuton</p>",
                "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>",
                "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>No advance registration needed!</p><p>Suitable for children and families.</p>"
            },
            "name": {
                "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15",
                "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15",
                "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68242/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68241",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7260",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Keski-Vuosaari",
                            "sv": "Mellersta Nordsjö"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.880408Z",
                "last_modified_time": "2025-03-27T09:09:26.837979Z",
                "custom_data": null,
                "email": "vuotalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00980",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 770,
                "image": 414657,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.143385,
                        60.208565
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85983"
                },
                "street_address": {
                    "fi": "Mosaiikkitori 2",
                    "sv": "Mosaiktorget 2",
                    "en": "Mosaiikkitori 2"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.vuotalo.fi/",
                    "sv": "https://www.vuotalo.fi/sv/framsidan",
                    "en": "https://www.vuotalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin."
                },
                "name": {
                    "fi": "Vuotalo",
                    "sv": "Nordhuset",
                    "en": "Vuosaari House"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:45",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.630975Z",
                    "last_modified_time": "2024-02-06T13:19:14.040714Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 807,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vuotalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1641033,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-16T08:13:47.672122Z",
                    "last_modified_time": "2026-03-16T08:13:47.672136Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779133.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1641033/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-16T08:13:47.576162Z",
            "last_modified_time": "2026-03-20T01:14:28.986673Z",
            "date_published": null,
            "start_time": "2026-06-04",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!",
                "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!",
                "en": "Come and spend summer holidays with us making art on playgrounds!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/026BF5D42CFA029513DC057F94601545/Taidefillari",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/026BF5D42CFA029513DC057F94601545/Konstcykel",
                "en": "http://www.vuotalo.fi/en/events/event/026BF5D42CFA029513DC057F94601545/Art_bike_Taidefillari"
            },
            "description": {
                "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Kieli: suomi, englanti</p><p>Maksuton</p>",
                "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>",
                "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>No advance registration needed!</p><p>Suitable for children and families.</p>"
            },
            "name": {
                "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15",
                "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15",
                "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68241/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68240",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7260",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Keski-Vuosaari",
                            "sv": "Mellersta Nordsjö"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.880408Z",
                "last_modified_time": "2025-03-27T09:09:26.837979Z",
                "custom_data": null,
                "email": "vuotalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00980",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 770,
                "image": 414657,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.143385,
                        60.208565
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85983"
                },
                "street_address": {
                    "fi": "Mosaiikkitori 2",
                    "sv": "Mosaiktorget 2",
                    "en": "Mosaiikkitori 2"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.vuotalo.fi/",
                    "sv": "https://www.vuotalo.fi/sv/framsidan",
                    "en": "https://www.vuotalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin."
                },
                "name": {
                    "fi": "Vuotalo",
                    "sv": "Nordhuset",
                    "en": "Vuosaari House"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:45",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.630975Z",
                    "last_modified_time": "2024-02-06T13:19:14.040714Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 807,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vuotalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1641032,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-16T08:13:47.323971Z",
                    "last_modified_time": "2026-03-16T08:13:47.323986Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779132.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1641032/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-16T08:13:47.220554Z",
            "last_modified_time": "2026-03-20T01:14:28.799953Z",
            "date_published": null,
            "start_time": "2026-06-03",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!",
                "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!",
                "en": "Come and spend summer holidays with us making art on playgrounds!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E73D22E07154F312D0693ED5E36F0881/Taidefillari",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E73D22E07154F312D0693ED5E36F0881/Konstcykel",
                "en": "http://www.vuotalo.fi/en/events/event/E73D22E07154F312D0693ED5E36F0881/Art_bike_Taidefillari"
            },
            "description": {
                "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Kieli: suomi, englanti</p><p>Maksuton</p>",
                "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>",
                "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>No advance registration needed!</p><p>Suitable for children and families.</p>"
            },
            "name": {
                "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15",
                "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15",
                "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68240/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68239",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7260",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Keski-Vuosaari",
                            "sv": "Mellersta Nordsjö"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.880408Z",
                "last_modified_time": "2025-03-27T09:09:26.837979Z",
                "custom_data": null,
                "email": "vuotalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00980",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 770,
                "image": 414657,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.143385,
                        60.208565
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 85983"
                },
                "street_address": {
                    "fi": "Mosaiikkitori 2",
                    "sv": "Mosaiktorget 2",
                    "en": "Mosaiikkitori 2"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.vuotalo.fi/",
                    "sv": "https://www.vuotalo.fi/sv/framsidan",
                    "en": "https://www.vuotalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin."
                },
                "name": {
                    "fi": "Vuotalo",
                    "sv": "Nordhuset",
                    "en": "Vuosaari House"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:45",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.630975Z",
                    "last_modified_time": "2024-02-06T13:19:14.040714Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 807,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vuotalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1641031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-16T08:13:46.907372Z",
                    "last_modified_time": "2026-03-16T08:13:46.907392Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779131.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1641031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-16T08:13:46.790059Z",
            "last_modified_time": "2026-03-20T01:14:28.380129Z",
            "date_published": null,
            "start_time": "2026-06-02",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!",
                "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!",
                "en": "Come and spend summer holidays with us making art on playgrounds!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AA05C5C30A139D88BFCF1543C74135E0/Taidefillari",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/AA05C5C30A139D88BFCF1543C74135E0/Konstcykel",
                "en": "http://www.vuotalo.fi/en/events/event/AA05C5C30A139D88BFCF1543C74135E0/Art_bike_Taidefillari"
            },
            "description": {
                "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 1.-5.6.2026.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p>Taidefillarin reitti:<br>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ei ennakkoilmoittautumista!</p><p>Sopii lapsille ja perheille.</p><p>KIELI: suomi, englanti</p><p>Maksuton</p>",
                "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>",
                "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p>ma 1.6. Vuotalon etupiha<br>ti 2.6. Haruspuisto klo 10–12  ja Meri-Rastilan tori klo 13–15 <br>ke 3.6. Leikkipuisto Lohikäärmepuisto<br>to 4.6. Leikkipuisto Mustakivi<br>pe 5.6. Leikkipaikka Ullaksenpuisto</p><p>Ingen förhandsanmälan!</p><p>Lämpar sig för barn och familjer.</p>"
            },
            "name": {
                "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15",
                "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15",
                "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68239/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68050",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2026-02-13T06:09:13.632215Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 594,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.959616,
                        60.183193
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1321,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 762,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 652,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6529",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "noh-teatteri",
                        "noo-teatteri",
                        "noh theater"
                    ],
                    "created_time": "2023-08-16T05:16:17.404853Z",
                    "last_modified_time": "2023-08-16T05:16:17.404870Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 544,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "no-teatteri",
                        "sv": "no-teater",
                        "en": "noh theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494680,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-29T12:13:02.348015Z",
                    "last_modified_time": "2026-01-29T12:13:02.348030Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772068.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494680/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-29T12:13:02.181459Z",
            "last_modified_time": "2026-03-20T01:14:28.209137Z",
            "date_published": null,
            "start_time": "2026-06-01T07:00:00Z",
            "end_time": "2026-06-05T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.",
                "sv": "På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.",
                "en": "During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/74B7B0631FE3FC6CCE6DF3521F580B00/Lavastettu_juttu",
                "sv": "http://www.caisa.fi/sv/evenemang/event/74B7B0631FE3FC6CCE6DF3521F580B00/En_iscensatt_affar_",
                "en": "http://www.caisa.fi/en/events/event/74B7B0631FE3FC6CCE6DF3521F580B00/A_Staged_Affair"
            },
            "description": {
                "fi": "<p>Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.</p><p>Mitä medialukutaito tarkoittaa? Mistä tietää onko jokin asian totta? Miltä voi tuntua, kun jokin paljastuu valheeksi? Millä tavoilla meidän käsityksiämme todellisuudesta rakennetaan?   <br>Kurssin aikana suunnitellaan ja toteutetaan leikin kautta esitys, jossa kesäkurssilaiset pohtivat medialukutaitoa ja omaa suhdettaan esitettyyn todellisuuteen. Esitys suunnitellaan ja käsikirjoitetaan yhdessä. Harjoiteltu esitys kuvataan ja editoidaan valmiiksi videoteokseksi. <br>  <br>Tutustumme esityksen valmistamisen päävaiheisiin, joihin kuuluu lavastus, puvustus, kuvaaminen ja videoeditointi helpoilla editointiohjelmilla. Tutustumme näyttelemiseen ja esiintymiseen kehollisten harjoitteiden ja leikin avulla.   <br>  <br>Kurssi on tarkoitettu 7–12-vuotiaille. Kurssi ei edellytä ennakko-osaamista. Valmiit videoteokset jaetaan osallistujille kurssin päätteeksi. Kuvattuja materiaaleja ei käytetä tai säilytetä kurssin jälkeen. Osallistuminen edellyttää kuvauslupaa edellä mainittuun tarkoitukseen.  <br> <br>Kurssiin ei sisälly ruokailua, joten lapsilla tulee olla mukana omat eväät ja juomapullo.  <br>  <br>Ohjaajina toimivat taidekasvattajat Andra Sarenius ja Saban Ramadani.</p><p>Kielet: suomi ja englanti tarvittaessa. <br>   <br>Ilmoittautuminen <br>Ilmoittaudu mukaan hauskalle ja leikkisälle Caisan kesäkurssille! Ilmoittautuminen on sitova. Mahdolliset peruutukset mahdollisimman ajoissa. Vahvistamme ilmoittautumisen sähköpostitse.<br> <br>Kurssikokonaisuus vk 23, 1.6.–5.6. ma–pe klo 10–14</p><p>Kysymykset ja tiedustelut: teemu.savikurki@hel.fi</p>",
                "sv": "<p>På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.</p><p>Vad är medieläskunnighet? Hur vet man om något är sant? Hur kan det kännas när något avslöjas som en lögn? På vilket sätt är våra verklighetsuppfattningar konstruerade?</p><p>Under kursen planeras och genomförs en lekfull föreställning där kursdeltagarna reflekterar över medieläskunnighet och sin egen relation till den verklighet som presenteras. Föreställningen är planerad och skriven tillsammans. Den inövade föreställningen filmas och redigeras till ett färdigt videoverk. <br>  <br>Vi bekantar oss med de viktigaste skeden i att göra en föreställning, inklusive scenografi, kostymdesign, filmning och videoredigering med lättanvänd programvara före redigering. Vi lär oss om skådespeleri och uppträdande genom fysiska övningar och lek.   <br>  <br>Kursen är avsedd för 7–12-åringar. Inga förkunskaper krävs för att delta i kursen. De färdiga videoverken kommer att delas ut till deltagarna i slutet av kursen. Det filmade materialet kommer inte att användas eller förvaras efter kursen. Deltagande kräver ett filmningstillstånd för ovanstående ändamål.  <br> <br>I kursen ingår inga måltider, så barnen bör ta med sig egen matsäck och en vattenflaska.  <br>  <br>Projektet leds av konstpedagogerna Andra Sarenius och Saban Ramadani.</p><p>Språk: finska och engelska<br>   <br>Anmälan <br>Anmäl dig till Caisas roliga och lekfulla sommarkurs! Anmälan är bindande. Eventuella avbokningar ska göras så tidigt som möjligt. <br> <br>Kurspaket v 23, 1.6–5.6. må–fre 10–14   <br>ANMÄL DIG VIA DENNA LÄNK: https://forms.office.com/e/dpT7c2FxDm</p>",
                "en": "<p>During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie.</p><p>What does media literacy mean? How do you know if something is true? How does it feel when something turns out to be a lie? In what ways are our perceptions of reality constructed?<br> <br>During the course, a performance is planned and implemented through play. The summer course participants reflect on media literacy and their own relationship with represented reality. The performance is planned and scripted together. The rehearsed performance is filmed and edited into a finished video work.<br> <br>We will get to know the main stages of making a show, which include staging, costuming, filming and video editing with easy editing programs. We get to know acting and performing through physical exercises and play.<br> <br>The course is intended for 7–12-year-olds. The course does not require prior knowledge. The finished video works will be distributed to the participants at the end of the course. The described materials are not used or stored after the course. Participation requires a photography permit for the aforementioned purpose.</p><p>The course does not include meals, so children must bring their own snacks and a drinking bottle.</p><p>The instructors are art educators Andra Sarenius and Saban Ramadani.</p><p>Language: Finnish & English<br> <br>Registration <br>Sign up for the fun and playful Caisa summer course! Registration is binding. Possible cancellations as early as possible. Two options to choose from:<br> <br>Course 1, week 23, 1.6.–5.6. mon–fri 10 am–2 pm<br>REGISTER VIA THIS LINK: https://forms.office.com/e/dpT7c2FxDm</p>"
            },
            "name": {
                "fi": "Lavastettu juttu – kesäkurssi 7–12-vuotiaille lapsille (TÄYNNÄ)",
                "sv": "En iscensatt affär – sommarkurs för barn i åldern 7–12 år (FULL)",
                "en": "A Staged Affair – summer course for children aged 7–12 (FULL)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68050/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68227",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 865,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:301",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.322231Z",
                    "last_modified_time": "2024-02-06T13:19:14.923914Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 45,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 714,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:750",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.569923Z",
                    "last_modified_time": "2024-02-06T13:19:18.031999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 9,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kesäkurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:750/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:760",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-09-12T07:10:01.276593Z",
                    "last_modified_time": "2025-09-12T07:10:01.276611Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Yhteistyökumppaneiden kurssit"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)"
                    ],
                    "created_time": "2023-08-16T05:05:43.494553Z",
                    "last_modified_time": "2023-08-16T05:05:43.494572Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pörssikurssit",
                        "sv": "börskurser",
                        "en": "stock prices"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7277",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kurssit (hinnat)",
                        "exchange rates",
                        "vaihtokurssit",
                        "valuutan muuntokurssit",
                        "växelkurser"
                    ],
                    "created_time": "2023-08-16T05:14:41.956398Z",
                    "last_modified_time": "2023-08-16T05:14:41.956416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 90,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valuuttakurssit",
                        "sv": "valutakurser",
                        "en": "rates of exchange"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-13T12:13:43.656684Z",
            "last_modified_time": "2026-03-20T01:14:27.837241Z",
            "date_published": null,
            "start_time": "2026-06-01T07:00:00Z",
            "end_time": "2026-06-05T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kurssilla inspiroidumme kirjallisuudesta ja kirjoitamme omia tekstejä eri genreissä. Keskeistä on osallistujien luovuuden ilo, tavoitteet sekä henkilökohtainen kehittyminen kirjoittajana. Sanataideopettajat houkuttelevat, ohjaavat ja kannustavat.",
                "sv": "Under kursen inspireras vi av litteratur och skriver egna texter i olika genrer. Deltagarnas skaparlust, ambition och personliga skrivutveckling är det centrala. Ordkonstlärarna lockar, handleder och hejar.",
                "en": "During this course, we draw inspiration from literature and write our own texts in various genres. The central focus is on the participants' creative passion, ambition, and personal development as writers. Our teachers will entice, guide, and encourage you."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/96A83DE474794D5DC2F97B9C32952801/Sydkustens_ordskola_Kirjallinen_eksistentialismi_huumorin_kautta",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/96A83DE474794D5DC2F97B9C32952801/Sydkustens_ordskola_Litterar_existentialism_existerar_i_humorn_",
                "en": "http://www.annantalo.fi/en/events/event/96A83DE474794D5DC2F97B9C32952801/Sydkustens_ordskola_Literary_existentialism_through_humour"
            },
            "description": {
                "fi": "<p>Kurssilla inspiroidumme kirjallisuudesta ja kirjoitamme omia tekstejä eri genreissä. Keskeistä on osallistujien luovuuden ilo, tavoitteet sekä henkilökohtainen kehittyminen kirjoittajana. Sanataideopettajat houkuttelevat, ohjaavat ja kannustavat.</p><p>Tutkimme elämän suuria kysymyksiä huumorin kautta hullunkuristen inspiraatiokirjailijoiden, Roald Dahlin, Meg Rosoffin ja Eduard Uspenskin, avulla. Inspiraatiota ammennamme tietysti myös muilta upeilta kirjailijoilta ja kiinnostavista teoksista. Kurssille osallistumiseen ei vaadita inspiraatiokirjailijoiden kirjojen lukemista etukäteen.</p><p>Opetuskieli ruotsi. Kurssin sanataideopettajina toimivat Hanna Lundström, Lotta Sanhaie, Stina Svenfelt, Katja von Wendt och Elza Vuorinen.</p><p>Ilmoittautuminen osoitteessa sydkusten.eepos.fi viimeistään 15.4.2026. Hinta 100 €.</p>",
                "sv": "<p>Under kursen inspireras vi av litteratur och skriver egna texter i olika genrer. Deltagarnas skaparlust, ambition och personliga skrivutveckling är det centrala. Ordkonstlärarna lockar, handleder och hejar.</p><p>Vi undersöker tillvarons stora frågor via humorn med tokroliga inspirationsförfattare som Roald Dahl, Meg Rosoff och Eduard Uspenskij. Vi inspireras naturligtvis också av andra underbara författare och litterära verk. Man måste inte ha läst inspirationsförfattarnas böcker för att delta i kursen.</p><p>Undervisningsspråket är svenska. Kursens ordkonstlärare är Hanna Lundström, Lotta Sanhaie, Stina Svenfelt, Katja von Wendt och Elza Vuorinen.</p><p>Anmälan till sommarkursen är öppen på sydkusten.eepos.fi senast 15.4.2026. Kursen kostar 100 €.</p>",
                "en": "<p>During this course, we draw inspiration from literature and write our own texts in various genres. The central focus is on the participants' creative passion, ambition, and personal development as writers. Our teachers will entice, guide, and encourage you.</p><p>We explore life’s big questions through humour, using wacky, inspirational authors such as Roald Dahl, Meg Rosoff, and Eduard Uspensky. Of course, we are also inspired by other wonderful writers and literary works. You do not need to have read these authors' books beforehand to participate in the course.</p><p>​The language of instruction is Swedish. The course teachers are Hanna Lundström, Lotta Sanhaie, Stina Svenfelt, Katja von Wendt and Elza Vuorinen.</p><p>​Registration: Open at sydkusten.eepos.fi until April 15, 2026. Price 100 €.</p>"
            },
            "name": {
                "fi": "Sydkustens ordskola: Kirjallinen eksistentialismi huumorin kautta – 13-18-vuotiaille",
                "sv": "Sydkustens ordskola: Litterär existentialism existerar i humorn – 13-18-åringar",
                "en": "Sydkustens ordskola: Literary existentialism through humour – 13-18-year-olds"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68227/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}