Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
Full-text search
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
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
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=1449
{ "meta": { "count": 32755, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1450", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1448" }, "data": [ { "id": "kulke:60536", "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": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "telephone": { "fi": "+358 9 310 85983" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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": 1318, "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: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": 1953, "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: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": 799, "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": 5966, "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": 4819, "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": 5022, "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: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": 13450, "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" } ], "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/mirkka-ja-luis-vuotalo-17137473/", "sv": "https://www.lippu.fi/event/mirkka-ja-luis-vuotalo-17137473/", "en": "https://www.lippu.fi/event/mirkka-ja-luis-vuotalo-17137473/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4362, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:48.043249Z", "last_modified_time": "2023-09-07T14:23:48.043280Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728239.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4362/?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": "2023-09-07T14:23:47.872990Z", "last_modified_time": "2023-11-14T06:13:18.061807Z", "date_published": null, "start_time": "2023-10-07T08: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, "name": { "fi": "Mirkka ja Luis", "sv": "Mirkka & Luis", "en": "Mirkka and Luis" }, "provider_contact_info": null, "description": { "fi": "<p>Mirkka & Luis -lastenmusiikkiyhtyeen intohimona on laulattaa, naurattaa ja liikuttaa niin mieltä kuin kehoakin.</p><p>Palkittua yhtyettä on kiitelty korkeatasoisesta musiikista, oivaltavista, ajankohtaisista ja puhuttelevista sanoituksista sekä valloittavasta läsnäolosta, joka hurmaa niin lapset kuin aikuisetkin.</p><p>Yhtye julkaisi ensimmäisen levynsä vuonna 2018 ja levyn kappaleista kuusi julkaistiin myös musiikkivideona yhteistyössä mm. Otavamedian kanssa. Vuonna 2019 yhtye valittiin ”Vuoden tulokkaaksi” valtakunnallisessa lastenmusiikkigaalassa.</p><p>Esikoisalbumi <i>Koiruuksia</i> oli ehdolla myös Vuoden lastenlevy ja Vuoden lastenlaulu -kategorioissa. Samassa gaalassa yhtye valittiin myös Konserttikeskuksen artistiksi. Lisäksi yhtye julkaisi <i>Kuraa, kuraa, kuraa!</i> - kappaleen toisen levynsä ensimmäisenä singlenä, joka julkaistiin myös Yle Areenan 100 lastenlaulua -formaatissa kahden muun uuden levyn kappaleen lisäksi.</p><p>Vuonna 2021 yhtye julkaisi toisen levyn nimeltään <i>Arvaa mitä?</i>, josta kaksi kappaletta oli mukana Pikku Kakkosen kesäkiertueella 2022. Vuonna 2022 yhtye valittiin Vuoden artistiksi samaisessa lastenmusiikkigaalassa. Tervetuloa kuulemaan parasta lastenmusiikkia, ”Lapsille parasta, tottakai!”</p><p>Ikäsuositus: lapsille ja lapsiperheille<br>Kieli: suomi</p>", "sv": "<p>Barnmusikbandet Mirkka & Luis passion är att locka fram sång, skratt och rörelse i både kropp och sinne.</p><p>Det prisbelönade bandet har lovordats för sin högklassiga musik, sina insiktsfulla, aktuella och tilltalande låttexter och den inbjudande närvaron som charmar båda barn och vuxna.</p>", "en": "<p>Mirkka & Luis is a children’s music group with a passion for singing, making people laugh and moving both the mind and the body.</p><p>The award-winning ensemble has been praised for its high-quality music, insightful, topical and evocative lyrics and captivating presence that charms both children and adults.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D544623BE46CE9DA61D0F0F88D06D2E6/Mirkka_ja_Luis", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D544623BE46CE9DA61D0F0F88D06D2E6/Mirkka_Luis", "en": "http://www.vuotalo.fi/en/events/event/D544623BE46CE9DA61D0F0F88D06D2E6/Mirkka_and_Luis" }, "short_description": { "fi": "Mirkka & Luis -lastenmusiikkiyhtyeen intohimona on laulattaa, naurattaa ja liikuttaa niin mieltä kuin kehoakin.", "sv": "Barnmusikbandet Mirkka & Luis passion är att locka fram sång, skratt och rörelse i både kropp och sinne.", "en": "Mirkka & Luis is a children’s music group with a passion for singing, making people laugh and moving both the mind and the body." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60536/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59971", "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": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "telephone": { "fi": "+358 40 160 3755" }, "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." }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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": 984, "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:51", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.725686Z", "last_modified_time": "2024-02-06T13:19:14.175381Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 265, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Sirkus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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": 5966, "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": 4819, "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": 5022, "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: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:p5007", "has_user_editable_resources": false, "alt_labels": [ "art of circus", "sirkus (taidelajit)", "cirkus (konstart)", "cirkuskonst" ], "created_time": "2023-08-16T05:18:56.386288Z", "last_modified_time": "2023-08-16T05:18:56.386306Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 179, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sirkustaide", "sv": "cirkus (konstarter)", "en": "circus (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?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/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4361, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:47.632452Z", "last_modified_time": "2023-09-07T14:23:47.632484Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731998.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4361/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:47.055897Z", "last_modified_time": "2023-11-14T06:13:17.985685Z", "date_published": null, "start_time": "2023-10-06T17:30: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, "name": { "fi": "Kulovalkea | ENSI-ILTA – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Kulovalkea | PREMIÄR – Decade of Deviations: Nuua Company 10 år", "en": "Kulovalkea – Wildfire | PREMIERE – Decade of Deviations: Nuua Company 10 years" }, "provider_contact_info": null, "description": { "fi": "<p>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Kulovalkea </b><br>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle. <br> <br>Esitys tarjoaa eteerisiä tunnelmia ja unenomaisia näyttämökuvia, kuin liikkuvia maalauksia. Luoden tilaa luoville liikkeille, jotka vievät katsojan uteliaiseen tilaan, jonka kautta arkiselta tuntuvat asiat muuttuvat odottamattomiksi ja kieroutuneiksi. <br> <br>Totuus ei aina ole sitä, mitä todellisuus välittää, vaan enemmän se, mikä on peräisin alitajunnastamme, unelmistamme ja näkemyksistämme, jotka ovat haudattu syvälle psyykeisiimme. Kulovalkea tarjoaa pirstaleisen joukon näyttämökuvia, jotka ruokkivat kekseliäisyyttä ja uhmaavat rationaalisuutta. Kahdeksan sirkustaiteilijan voimin luomme virtuoottisen ja absurdin matkan tietoisuuden rajamaille.</p><p><u>https://nuua.company/project/kulovalkea/</u><br> <br>Kesto: 70 min <br>Ohjaus: Olli Vuorinen <br>Esiintyminen: Valpuri Kaarninen, Maria Peltola, Jaime Allen, Juho Yrjölä, Merri Heikkilä, Nelli Kujansivu, Rosa Autio, Petteri Savikorpi <br>Valosuunnittelu: Teo Laverna <br>Äänisuunnittelu: Katri Salmenoja <br>Tukijat: Dynamo, Cirko, Circus Cirkör, Suntopia, Sorin Sirkus, Latitude 50, Circa Auch, Taiteen keskustoiminkunta, Koneen Säätiö, Helsingin kaupunki</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.</p><p>Den eteriska föreställningens drömlika scener är som rörliga målningar. Det skapas utrymme för kreativa rörelser som väcker åskådarens nyfikenhet och gör att vardagliga fenomen känns oväntade och skruvade.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new.</p><p>The performance offers ethereal atmospheres and dreamlike stage images, like moving paintings. It creates space for creative movements that take the viewer into a curious state, through which things that seem mundane become unexpected and twisted.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5408433802243EA400C6FC2FA29C19F8/Kulovalkea_ENSI-ILTA", "sv": "http://www.stoa.fi/sv/evenemang/event/5408433802243EA400C6FC2FA29C19F8/Kulovalkea_PREMIAR", "en": "http://www.stoa.fi/en/events/event/5408433802243EA400C6FC2FA29C19F8/Kulovalkea_Wildfire_PREMIERE" }, "short_description": { "fi": "Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.", "sv": "Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.", "en": "Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59971/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59733", "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": 575, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.947306, 60.16663 ] }, "name": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "telephone": { "fi": "+358 9 310 36563" }, "description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/", "sv": "http://www.savoyteatteri.fi/", "en": "http://www.savoyteatteri.fi/" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Kasarmikatu 46-48", "sv": "Kaserngatan 46-48", "en": "Kasarmikatu 46-48" }, "@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": 1953, "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:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 795, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:350", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.556582Z", "last_modified_time": "2024-02-06T13:19:15.225361Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 430, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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": 575, "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": 5966, "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": 4819, "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": 5022, "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" } ], "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-3377055", "sv": "https://www.lippu.fi/eventseries/name-3377055", "en": "https://www.lippu.fi/eventseries/name-3377055" }, "description": null, "price": { "fi": "59/47/15 €, Premium 69 €", "sv": "59/47/15 €, Premium 69 €", "en": "59/47/15 €, Premium 69 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4360, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:45.839575Z", "last_modified_time": "2023-09-07T14:23:45.839595Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730031.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4360/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:45.184666Z", "last_modified_time": "2023-11-14T06:13:17.909954Z", "date_published": null, "start_time": "2023-10-06T16: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, "name": { "fi": "Flamenco Luxurîa (Espanja) – by Barcelona Flamenco Ballet", "sv": "Flamenco Luxurîa (Spanien) – by Barcelona Flamenco Ballet", "en": "Flamenco Luxurîa (Spain) – by Barcelona Flamenco Ballet" }, "provider_contact_info": null, "description": { "fi": "<p>Espanjalainen flamenco-esitys täynnä jännitystä, intohimoa ja taituruutta</p><p>Arvostettu Barcelona Flamenco Ballet tuo lokakuussa Savoy-teatteriin tuoreen tanssispektaakkelinsa Flamenco Luxurîa.</p><p>Nimi Luxurîa tarkoittaa suomeksi hekumaa, intohimoa. Teoksen on luonut palkittu tanssija ja koreografi David Gutiérrez, jonka esittämä päähenkilö joutuu valitsemaan rakkauden sekä vapauden ja intohimon välillä. Esityksen naispääroolin tanssii Montserrat María Martínez. Viime vuonna ensi-iltansa saanut Luxurîa on jo kerännyt menestystä ympäri maailmaa, muun muassa Yhdysvalloissa, Etelä-Koreassa, Italiassa ja tietenkin myös Espanjan Kataloniassa.</p><p>David Gutiérrezin koreografiat yhdistävät niin perinteistä kuin modernia flamencotanssia. Hänen juurensa ovat vahvasti Katalonian sydämessä Barcelonassa, jossa Gutiérrez aloitti tanssiopintonsa nelivuotiaana. Katalonialaisen kulttuurin esiintuominen on yksi merkityksellisimpiä asioita Gutiérrezin työssä.</p><p>Seitsemän tanssijan ja viiden muusikon ensemble tuo Savoyn lavalle näyttäviä tanssinumeroita, sykähdyttävää flamencomusiikkia sekä loisteliaita pukuja. Luvassa on viihdyttävä ja vahva esitys, joka painuu yleisön mieliin pitkäksi aikaa.</p><p>Esiintyjät:<br>Pääosissa: David Gutiérrez, Montserrat María Martínez<br>Tanssija-ensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Kitara: Jordi Centeno<br>Laulu: Rafael Bueno<br>Perkussiot: Alberto Garrido<br>Piano: José Miguel Castaño<br>Huilu ja saksofoni: Rafael Palomares</p><p>Kesto n. 2 t, sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>En spansk flamencoshow full med spänning, passion och virtuositet</p><p>Renommerade Barcelona Flamenco Ballet kommer till Savoyteatern i oktober med sitt färska dansspektakel Flamenco Luxurîa.</p><p>Namnet Luxurîa betyder rus, passion på svenska. Verket är skapat av den prisbelönta dansaren och koreografen David Gutiérrez som spelar huvudrollen, en karaktär som tvingas välja mellan kärlek och frihet och passion. Föreställningens kvinnliga huvudroll dansas av Montserrat María Martínez. Luxurîa som hade premiär i fjol har redan rönt framgångar runtom i världen, bland annat i USA, Sydkorea, Italien och naturligtvis Katalonien i Spanien.</p><p>David Gutiérrez koreografier kombinerar både traditionell och modern flamencodans. Hans rötter är stadigt i hjärtat av Katalonien, Barcelona, där Gutiérrez inledde dansstudierna i fyraårsåldern. Att lyfta fram den katalanska kulturen är ett av de viktigaste elementen i Gutiérrez arbete.</p><p>Ensemblen med sju dansare och fem musiker fyller Savoys scen med imponerande dansnummer, bedårande flamencomusik och storslagna kostymer. Det utlovas en underhållande och kraftfull föreställning som publiken sent kommer att glömma.</p><p>På scenen:<br>I huvudrollerna: David Gutiérrez, Montserrat María Martínez<br>Dansensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Gitarr: Jordi Centeno<br>Sång: Rafael Bueno<br>Perkussion: Alberto Garrido<br>Piano: José Miguel Castaño<br>Flöjt och saxofon: Rafael Palomares</p><p>Längd ca 2,5 timmar med paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>A Spanish flamenco show full of excitement, passion and virtuosity</p><p>The esteemed Barcelona Flamenco Ballet will be bringing its fresh dance spectacle Flamenco Luxurîa to Savoy Theatre in October.</p><p>In English, the name Luxurîa means lust and passion. The piece was created by the award-winning dancer and choreograph David Gutiérrez, who plays the protagonist who is forced to choose between love, freedom and passion. The leading female role is performed by dancer Montserrat María Martínez. After its premiere last year, Luxurîa has already found success in countless countries, such as the United States, South Korea, Italy and of course Catalonia, Spain.</p><p>David Gutiérrez’s choreographies combine traditional and modern flamenco. His roots strongly are planted in the heart of Catalonia, Barcelona, where he began his dance studies at four years old. Highlighting the Catalonian culture is one of the most important aspects of Gutiérrez’s work.</p><p>The ensemble of seven dancers and five musicians will fill the Savoy stage with spectacular dance numbers, stirring Flamenco music and stunning outfits. Audiences will get to enjoy an entertaining and powerful performance that they will remember for a long time.</p><p>Performers:<br>Leading roles: David Gutiérrez, Montserrat María Martínez<br>Dance ensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Guitar: Jordi Centeno<br>Vocals: Rafael Bueno<br>Percussions: Alberto Garrido<br>Piano: José Miguel Castaño<br>Flute and saxophone: Rafael Palomares</p><p>Duration approx. 2 h with intermission.</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 served.</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1CE74E9C31268D2D5319DDE28BA7FFBF/Flamenco_Luxur_a_Espanja_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/1CE74E9C31268D2D5319DDE28BA7FFBF/Flamenco_Luxur_a_Spanien_", "en": "http://www.savoyteatteri.fi/en/events/event/1CE74E9C31268D2D5319DDE28BA7FFBF/Flamenco_Luxur_a_Spain_" }, "short_description": { "fi": "Espanjalainen flamenco-esitys täynnä jännitystä, intohimoa ja taituruutta", "sv": "En spansk flamencoshow full med spänning, passion och virtuositet", "en": "A Spanish flamenco show full of excitement, passion and virtuosity" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59928", "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": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "telephone": { "fi": "+358 40 160 3755" }, "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." }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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": 984, "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:51", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.725686Z", "last_modified_time": "2024-02-06T13:19:14.175381Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 265, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Sirkus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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": 5966, "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": 4819, "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": 5022, "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: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:p5007", "has_user_editable_resources": false, "alt_labels": [ "art of circus", "sirkus (taidelajit)", "cirkus (konstart)", "cirkuskonst" ], "created_time": "2023-08-16T05:18:56.386288Z", "last_modified_time": "2023-08-16T05:18:56.386306Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 179, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sirkustaide", "sv": "cirkus (konstarter)", "en": "circus (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?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/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4359, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:44.661970Z", "last_modified_time": "2023-09-07T14:23:44.661993Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731639.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4359/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:44.496295Z", "last_modified_time": "2023-11-14T06:13:17.832592Z", "date_published": null, "start_time": "2023-10-06T16: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, "name": { "fi": "Blueberry Burdock | ENSI-ILTA – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Blueberry Burdock | PREMIÄR – Decade of Deviations: Nuua Company 10 år", "en": "Blueberry Burdock | PREMIERE – Decade of Deviations: Nuua Company 10 years" }, "provider_contact_info": null, "description": { "fi": "<p>Miellyttävä limbo mielen risteyksessä, teos joka on syntynyt kirjaimellisten ja metaforisten suuntien yltäkylläisyydestä.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Blueberry Burdock</b><br>Blueberry Burdock on ylenpalttisten vaihtoehtojen hukuttaman hahmon matka, jossa ristiriidat ja sisäiset konfliktit ilmenevät kehollisina kertomuksina. Teoksen hahmo sotkeutuu harhaanjohtaviin opasteisiin ja rakentaa huonetta liikkuvista seinistä ja puolikkaista esineistä. Kooten eletyn elemän ja pirstaleisen todellisuuden palapeliä. <br> <br>Visuaalisen kerronnan, esinemanipulaation ja koomisen absurdiuden yhdistelmä Blueberry Burdock, tanssii ihmismielen limbomaisessa tilassa.<br> <br>Esitys herättää uudenlaista arvostusta elämän syvällisyyttä kohtaan. Se rohkaisee yleisöä hyväksymään elettyjen kokemusten ristiriitaisuuksia ja juhlimaan olemassaolon kaunista arvoituksellisuutta.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p>Ohjaus: Thomas Monckton<br>Esiintyminen: Olli Vuorinen<br>Valosuunnittelu: Teo Lanerva<br>Äänisuunnittelu: Konsta Leinonen<br>Pukusuunnittelu: Iida Ukkola<br>Lavastus: Olli Vuorinen<br>Lavasteiden rakennus: Kalle Oja<br>Tuotanto: Nuua Company<br>Yhteistuotanto: Kallo Collective <br>Tukijat: Taiteen edistämiskeskus, Helsingin kaupunki,Tanssiteatteri Hurjaruuth, Koneen säätiö, Tero Saarinen Company, Stoa</p><p>Kesto: 50 min</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Cirkuskonstnär Olli Vuorinens soloverk är en surrealistisk resa till människans psykologiska handlingsmönster och motstridigheterna i dem.</p><p>Med ett urval av konkreta och metaforiska uttryck och ett överflöd av riktningar kombinerar Blueberry Burdock surrealistiska scener och kroppsliga berättelser som uttrycker komplexiteten i det levda livet.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>Circus artist Olli Vuorinen’s solo piece is a surrealist journey into the psychological patterns of the human mind and their contradictions.</p><p>In an abundance of concrete and metaphorical choices and directions, ‘Blueberry Burdock’ combines surrealist scenes and embodied narratives that express the complexity of a life lived.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/40946F4B447CCE1FAA45F78CC74424B6/Blueberry_Burdock_ENSI-ILTA", "sv": "http://www.stoa.fi/sv/evenemang/event/40946F4B447CCE1FAA45F78CC74424B6/Blueberry_Burdock_PREMIAR", "en": "http://www.stoa.fi/en/events/event/40946F4B447CCE1FAA45F78CC74424B6/Blueberry_Burdock_PREMIERE" }, "short_description": { "fi": "Miellyttävä limbo mielen risteyksessä, teos joka on syntynyt kirjaimellisten ja metaforisten suuntien yltäkylläisyydestä.", "sv": "Cirkuskonstnär Olli Vuorinens soloverk är en surrealistisk resa till människans psykologiska handlingsmönster och motstridigheterna i dem.", "en": "Circus artist Olli Vuorinen’s solo piece is a surrealist journey into the psychological patterns of the human mind and their contradictions." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59928/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60520", "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": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "@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": 1953, "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": 1336, "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": 5966, "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": 4819, "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": 5022, "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" } ], "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/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/", "sv": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/", "en": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4358, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:44.263173Z", "last_modified_time": "2023-09-07T14:23:44.263195Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730914.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4358/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:44.085271Z", "last_modified_time": "2023-11-14T06:13:17.754466Z", "date_published": null, "start_time": "2023-10-06T16: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, "name": { "fi": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro", "sv": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro", "en": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro" }, "provider_contact_info": null, "description": { "fi": "<p>Illan aikana luvassa on psykedeelisiä rantalomakokemuksia ja kokeellista rock-musiikkia.</p><p></b>Pekka Laine</b> elää kaksoiselämää.</p><p>Päivisin hän on arvostettu Yleisradion musiikkitoimittaja, joka suosituissa radio-ohjelmissaan ja televisiodokumenteissa myllää populaarikulttuurin syövereissä. Sitten on se hämärämpi puoli eli kitaristi ja musiikintekijä Pekka Laine.</p><p>Kulttimainetta nauttivan <i>The Hypnomen</i> -yhtyeen primus motorina Laine on 1990-luvulta asti tehnyt villisti kuplivaa instrumentaalimusiikkia. Kitaralegenda <b>Esa Pulliaisen</b> rohkaisemana ja yllyttämänä syntyi soolodebyytti <i>The Enchanted Guitar of Pekka Laine</i> vuonna 2021. Levy on rakkaudentunnustus lumotulle soittimelle, sähkökitaralle ja sen kosmisille kaiuille.</p><p>Seuraava askel oli vääjäämätön. Maaginen mielikuvitusmatka on vietävä live-yleisön eteen ja syntyi <i>Pekka Laine & The Enchanted</i>. Kuusimiehisessä unelmayhtyeessä kokemus ja näkemys kohtaavat nuoruuden vimman, kun indie-konkarit ja uuden polven tyyliniekat hyppäävät saman raketin kyytiin.</p><p>Livesovituksina Laineen instrumentaalisävellykset tarjoavat mielikuvitusmatkailua koko rahalla. Luvassa on psykedeelisiä rantalomakokemuksia, jännittäviä hetkiä länkkärimaisemissa, pikapyrähdyksiä avaruuteen ja surrealistisia seikkailuita.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine – kitara <br>Tommi Pietiläinen – kitara<br>Topias Tiheäsalo – kitara<br>Toni Liimatta – koskettimet<br>Väinö Karjalainen – basso <br>Mooses Kuloniemi – rummut</p><p>Illan avaa kokeellista rock-musiikkia esittävä <b>Tinyhawk & Bizzarro</b>, joka julkaisi debyyttialbuminsa elokuussa 2023. Yhtyeen ensimmäinen single <i>Yorokobi</i> ilmestyi 16.12.2022, toinen single <i>Nekorok</i> 3.3.2023 ja tulevan albumin kolmas ja viimeinen single <i>Uji</i> 26.5.2023.</p><p>Kokoonpanon biisintekijä ja kitaristi <b>Jenni Kinnunen</b> tunnetaan esimerkiksi Rosita Luu -yhtyeestä.<br> <br><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen – kitara<br>Markus Väisänen –kitara<br>Teemu Aho – basso<br>Jaakko Pöyhönen – rummut</p>", "sv": "<p>Under kvällen blir det psykedeliska badsemesterupplevelser och experimentell rockmusik.</p><p>Pekka Laine lever ett dubbelliv. På dagtid är han en uppskattad musikreporter vid Rundradion som gräver djupt i populärmusikens värld i sina populära radioprogram och tv-dokumentärer.</p><p>Sedan finns det en mörkare sida, gitarristen och musikskrivaren <b>Pekka Laine</b>. Laine har, i egenskap av primus motor för det kultförklarade bandet <b>The Hypnomen</b>, sedan 1990-talet skapat vilt bubblande instrumentalmusik.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine <br>Tommi Pietiläinen <br>Topias Tiheäsalo <br>Toni Liimatta <br>Väinö Karjalainen <br>Mooses Kuloniemi</p><p>Kvällen öppnas av <b>Tinyhawk & Bizzarro</b> som spelar experimentell rockmusik och som släppte sitt debutalbum i augusti 2023. Bandets låtskrivare och gitarrist <b>Jenni Kinnunen</b> är känd till exempel från bandet Rosita Luu.</p><p><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen <br>Markus Väisänen<br>Teemu Aho <br>Jaakko Pöyhönen</p>", "en": "<p>During the evening, there will be psychedelic beach holiday experiences and experimental rock music.</p><p><b>Pekka Laine</b> leads a double life. By day, Laine is a respected music journalist at Yle, who roams the depths of popular culture in popular radio programmes and TV documentaries.</p><p>And then there’s the darker side – guitarist and musician Pekka Laine. Laine has been making wildly effervescent instrumental music since the 1990s as the primus motor of the cult band <b>The Hypnomen</b>.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine <br>Tommi Pietiläinen <br>Topias Tiheäsalo <br>Toni Liimatta <br>Väinö Karjalainen <br>Mooses Kuloniemi</p><p>The evening will be kicked off by experimental rock band <b>Tinyhawk & Bizzarro</b>, who are releasing their debut album in August 2023. The band’s songwriter and guitarist <b>Jenni Kinnunen</b> is known for bands such as Rosita Luu.</p><p><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen <br>Markus Väisänen<br>Teemu Aho <br>Jaakko Pöyhönen</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro", "en": "http://www.malmitalo.fi/en/events/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro" }, "short_description": { "fi": "Illan aikana luvassa on psykedeelisiä rantalomakokemuksia ja kokeellista rock-musiikkia.", "sv": "Under kvällen blir det psykedeliska badsemesterupplevelser och experimentell rockmusik.", "en": "During the evening, there will be psychedelic beach holiday experiences and experimental rock music." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60520/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61049", "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": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:29", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.424657Z", "last_modified_time": "2024-02-06T13:19:13.738407Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1153, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuvat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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": 1336, "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": 5966, "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:p16327", "has_user_editable_resources": false, "alt_labels": [ "elokuva (taiteet)", "film (konstarter)", "spelfilm" ], "created_time": "2023-08-16T05:17:37.994244Z", "last_modified_time": "2023-08-16T05:17:37.994289Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 351, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvataide", "sv": "filmkonst", "en": "cinema (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5148, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:46.282165Z", "last_modified_time": "2023-10-09T13:29:46.282184Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737381.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:46.062987Z", "last_modified_time": "2023-11-14T06:13:17.677908Z", "date_published": null, "start_time": "2023-10-06T15: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, "name": { "fi": "Spede (7) – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta.</p><p>Elokuva valottaa kulissien takaisia tapahtumia 1960-luvun lopulta Uuno Turhapuron syntytarinaan ja kansansuosioon, sekä Speden väsymätöntä taistelua viihteen puolesta ajan elokuvataidepiirejä vastaan. Millainen Spede Pasanen oli persoonana, työkaverina, viihdetaiteilijana - ja puolisona?</p><p>Ikäraja 7<br>Ensi-ilta 29.9.2023<br>Kesto 95 min<br>Tekstitetty suomeksi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5A0B3173E0CBC350A266E1DEA1114F49/Spede_7_" }, "short_description": { "fi": "Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61049/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60987", "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": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:29", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.424657Z", "last_modified_time": "2024-02-06T13:19:13.738407Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1153, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuvat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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": 1336, "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": 5966, "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:p16327", "has_user_editable_resources": false, "alt_labels": [ "elokuva (taiteet)", "film (konstarter)", "spelfilm" ], "created_time": "2023-08-16T05:17:37.994244Z", "last_modified_time": "2023-08-16T05:17:37.994289Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 351, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvataide", "sv": "filmkonst", "en": "cinema (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5147, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:45.870162Z", "last_modified_time": "2023-10-09T13:29:45.870181Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737357.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5147/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:45.737886Z", "last_modified_time": "2023-11-14T06:13:17.600846Z", "date_published": null, "start_time": "2023-10-06T12: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, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2757A2CE1B0421E81CE577D24850A751/Kuolleet_lehdet_7_" }, "short_description": { "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60987/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60931", "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": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "telephone": { "fi": "+358 9 310 85983" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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": 1953, "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:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 795, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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": 799, "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": 5966, "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": 4819, "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": 5022, "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" } ], "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/retro-disco-vuotalo-17526366/", "sv": "https://www.lippu.fi/event/retro-disco-vuotalo-17526366/", "en": "https://www.lippu.fi/event/retro-disco-vuotalo-17526366/" }, "description": null, "price": { "fi": "10 € / 8 €", "sv": "10 € / 8 €", "en": "10 € / 8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4712, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-11T21:21:13.164359Z", "last_modified_time": "2023-09-11T21:21:13.164376Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733536.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4712/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-11T21:21:12.649253Z", "last_modified_time": "2023-11-14T06:13:17.526852Z", "date_published": null, "start_time": "2023-10-06T11:00:00Z", "end_time": "2023-10-06T13: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, "name": { "fi": "Retro-Disco med Dj Börje – ARMAS festivaali", "sv": "Retro-Disco med Dj Börje – ARMAS-festivalen", "en": "Retro-Disco med Dj Börje – ARMAS festival" }, "provider_contact_info": null, "description": { "fi": "<p>Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60-80-luvuilta iltapäivädiskossa.</p><p>Kesto: 2 t<br>Kieli: ruotsi</p>", "sv": "<p>Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960-80-talet.</p><p>Längd: 2 t<br>Språk: svenska</p>", "en": "<p>The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco.</p><p>Duration: 2 h <br>Language: Swedish</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F229BFF746A9ACDFF197164CA2242220/Retro-Disco_med_Dj_Borje", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F229BFF746A9ACDFF197164CA2242220/Retro-Disco_med_Dj_Borje", "en": "http://www.vuotalo.fi/en/events/event/F229BFF746A9ACDFF197164CA2242220/Retro-Disco_med_Dj_Borje" }, "short_description": { "fi": "Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60-80-luvuilta iltapäivädiskossa.", "sv": "Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960-80-talet.", "en": "The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60931/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60219", "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": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "telephone": { "fi": "+358 40 160 3755" }, "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." }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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": 1318, "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:205", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.162709Z", "last_modified_time": "2024-02-06T13:19:14.678169Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 654, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuva ja media" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?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": 984, "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": 5966, "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": 4819, "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": 5022, "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:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": 13450, "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" } ], "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:u4804001050", "sub_events": [], "images": [ { "id": 4357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:43.829043Z", "last_modified_time": "2023-09-07T14:23:43.829072Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734227.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4357/?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": "2023-09-07T14:23:43.668665Z", "last_modified_time": "2023-11-14T06:13:17.444444Z", "date_published": null, "start_time": "2023-10-06T07:15: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, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino", "en": "http://www.stoa.fi/en/events/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino" }, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60220", "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": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "telephone": { "fi": "+358 40 160 3755" }, "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." }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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": 1318, "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:205", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.162709Z", "last_modified_time": "2024-02-06T13:19:14.678169Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 654, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuva ja media" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?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": 984, "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": 5966, "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": 4819, "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": 5022, "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:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": 13450, "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" } ], "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:u4804001050", "sub_events": [], "images": [ { "id": 4356, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:42.728742Z", "last_modified_time": "2023-09-07T14:23:42.728762Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734226.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4356/?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": "2023-09-07T14:23:42.066764Z", "last_modified_time": "2023-11-14T06:13:17.364651Z", "date_published": null, "start_time": "2023-10-06T06:15: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, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "en": "http://www.stoa.fi/en/events/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino" }, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60505", "has_user_editable_resources": false, "location": { "id": "tprek:7255", "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:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:12:15.976796Z", "last_modified_time": "2025-03-27T09:09:26.704708Z", "custom_data": null, "email": "kanneltalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 559, "image": 414654, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.876202, 60.23885 ] }, "name": { "fi": "Kanneltalo", "sv": "Gamlasgården", "en": "Cultural Centre Kanneltalo" }, "telephone": { "fi": "+358 40 822 8918" }, "description": { "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.", "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.", "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre." }, "info_url": { "fi": "http://www.kanneltalo.fi/", "sv": "https://www.kanneltalo.fi/sv/framsidan", "en": "https://www.kanneltalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Klaneettitie 5", "sv": "Klarinettvägen 5", "en": "Klaneettitie 5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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": 1953, "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:41", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.583027Z", "last_modified_time": "2024-02-06T13:19:13.977719Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 554, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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": 5966, "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": 4819, "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": 5022, "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" } ], "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:u4804001050", "sub_events": [], "images": [ { "id": 4355, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:41.327663Z", "last_modified_time": "2023-09-07T14:23:41.327683Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730506.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4355/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.959467Z", "last_modified_time": "2023-11-14T06:13:17.280850Z", "date_published": null, "start_time": "2023-10-06", "end_time": "2023-10-21", "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, "name": { "fi": "Suomalaisen barokkiorkesterin muusikot & Jeremy Barrois: X.TUNNE – Musiikillinen kohtaamislaboratorio ja videokooste", "sv": "Musiker från Suomalainen barokkiorkesteri & Jeremy Barrois: X.TUNNE – Ett musikaliskt möteslaboratorium och videocollage", "en": "Musicians of the Finnish Baroque Orchestra & Jeremy Barrois: X.TUNNE – Musical encounter laboratory and video compilation" }, "provider_contact_info": null, "description": { "fi": "<p>Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.</p><p>Kuulijalle rakennetaan Kanneltalon galleriaan oma tila, jossa ympäröivä elämä ja muut kuulijat jäävät hetkeksi taka-alalle, vain musiikki ja muusikko ovat tärkeitä. Varaa itsellesi maksuton henkilökohtainen esitys, tule seuraamaan live-kohtaamisia taustalta tai tule katsomaan videokooste.</p><p>X.TUNNE. on Helsinki Early Music Festivalin versio <b>Suomalaisen barokkiorkesterin</b> <i>Tule.Tunne.</i> <br>-barokkiperformanssilaboratoriosta.</p><p>Perjantaina 6.10. klo 15–18 ja lauantaina 7.10. klo 13–16 tarjolla on yhteensä 12 puolen tunnin mittaista kohtaamista, jossa yksi muusikko esiintyy kerrallaan yhteen kuulijaan keskittyen.</p><p><b>Varattavissa olevat ajat:</b><br>Perjantai 6.10. klo 15, 15.30, 16, 16.30, 17 ja 17.30<br>Lauantai 7.10. klo 13, 13.30, 14, 14.30, 15 ja 15.30</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Maksuttomat lippuvaraukset: Lippu.fi</a></u></p><p>Videokuvaaja <b>Jeremy Barrois</b> tallentaa esitykset ja editoi valikoiduista hetkistä kokonaisuuden, joka on katsottavissa Kanneltalon galleriassa osana <i>Helsinki Early Music Festivalia</i>. Tallenne on nähtävissä Kanneltalon galleriassa 11.–21.10.2023.</p><p>Yhteistyössä Kanneltalo, Suomalainen barokkiorkesteri, Helsinki Early Music Festival</p><p>Galleria, vapaa pääsy</p>", "sv": "<p>Boka en kostnadsfri privatföreställning.</p><p>För lyssnaren byggs ett eget utrymme i Gamlasgårdens galleri där livet omkring och den övriga publiken hamnar i bakgrunden för en stund och bara musiken och musikern har betydelse. Boka en kostnadsfri privatföreställning, följ live-mötena från kulisserna eller sätt dig och titta på videocollaget.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Kostnadsfria biljettbokning: Lippu.fi</a></u></p>", "en": "<p>Book yourself a free personal performance.</p><p>The listener is built their own space at the Kanneltalo gallery, where the surrounding life and other listeners take a back seat for a moment and only the music and the musician are important. Book yourself a free personal performance, come and follow the live encounters in the background or watch the video compilation.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Free ticket bookings: Lippu.fi</a></u></p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Suomalaisen_barokkiorkesterin_muusikot_Jeremy_Barrois_X_TUNNE", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musiker_fran_Suomalainen_barokkiorkesteri_Jeremy_Barrois_X_TUNNE", "en": "http://www.kanneltalo.fi/en/events/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musicians_of_the_Finnish_Baroque_Orchestra_Jeremy_Barrois_X_TUNNE" }, "short_description": { "fi": "Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.", "sv": "Boka en kostnadsfri privatföreställning.", "en": "Book yourself a free personal performance." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60990", "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": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "telephone": { "fi": "+358 40 160 3755" }, "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." }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:205", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.162709Z", "last_modified_time": "2024-02-06T13:19:14.678169Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 654, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuva ja media" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:29", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.424657Z", "last_modified_time": "2024-02-06T13:19:13.738407Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1153, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuvat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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": 984, "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": 380, "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:52", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.738883Z", "last_modified_time": "2024-02-06T13:19:14.199532Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 618, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?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": 5966, "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:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16327", "has_user_editable_resources": false, "alt_labels": [ "elokuva (taiteet)", "film (konstarter)", "spelfilm" ], "created_time": "2023-08-16T05:17:37.994244Z", "last_modified_time": "2023-08-16T05:17:37.994289Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 351, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvataide", "sv": "filmkonst", "en": "cinema (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 673, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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:u4804001050", "sub_events": [], "images": [ { "id": 5146, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:43.791522Z", "last_modified_time": "2023-10-09T13:29:43.791542Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737111.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5146/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:42.804303Z", "last_modified_time": "2023-11-14T06:13:17.195474Z", "date_published": null, "start_time": "2023-10-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, "name": { "fi": "Kulttuuria täynnä – muistoja Sortavalasta -dokumenttinäytös" }, "provider_contact_info": null, "description": { "fi": "<p>Haastatteludokumentin ”Kulttuuria täynnä ¬ muistoja Sortavalasta” -näytös on osa Stoan gallerian Aikamatka Sortavalaan -näyttelyn oheisohjelmaa.</p><p>Sortavala oli sotia edeltävällä ajalla monin tavoin poikkeuksellinen kaupunki. Sen sijainti Laatokan pohjoisrannalla tuolloisten Karjalan laulumaiden äärellä sekä kaupungin vireä ja yritteliäs ilmapiiri loivat hyvät edellytykset monipuoliselle kulttuurielämälle. Voidaan sanoa, että Sortavalan yhteiskunnallinen ja kulttuurinen merkitys oli huomattavasti sen kokoa suurempi.<br> <br>Nyt valmistunut haastatteludokumentti valottaa eri näkökulmista Sortavalan ja sen ympäristön kulttuuri- ja sivistyselämää, sen vaikuttajia ja ihmisten arkea siellä. Kertojina on Sortavala-asiantuntijoita sekä siellä nuoruutensa viettäneitä alkuperäisiä sortavalalaisia. Kaupungista kehittyi 1800-luvun lopulta alkaen sota-aikaan asti kulttuurinen, taloudellinen sekä henkinen ja hengellinen keskus. <br> <br>Elokuva on samalla surullisella tavalla ajankohtainen. Kuulemme aikalaisten tunnelmia, kun sodan alkaessa lapsuus loppui ja joutui näkemään kasvuympäristön tuhoutumisen. Vuosikymmenienkään aikana rakkaus kotiseutuun ei ole unohtunut. <br> <br>Dokumentin on käsikirjoittanut ja ohjannut Sortavala-seuran puheenjohtaja Marja Lampi ja se on toteutettu yhteistyössä Metropolia Ammattikorkeakoulun elokuva- ja televisioalanopiskelijoiden kanssa. <br>Elokuva käynnistää Helsingissä toimivan Sortavala-seuran 70-vuotisjuhlavuoden.</p><p>Dokumentin kesto n. 1 tunti.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FCF05BFDCD33291F1CF131B379F6F28B/Kulttuuria_taynna_muistoja_Sortavalasta_-dokumenttinaytos" }, "short_description": { "fi": "Haastatteludokumentin ”Kulttuuria täynnä ¬ muistoja Sortavalasta” -näytös on osa Stoan gallerian Aikamatka Sortavalaan -näyttelyn oheisohjelmaa." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60990/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60142", "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": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "telephone": { "fi": "+358 9 310 85983" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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": 1953, "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": 1061, "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: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": 799, "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": 5966, "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": 4819, "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": 5022, "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" } ], "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/the-mystery-wires-markku-veijalainen-vuotalo-17474773/", "sv": "https://www.lippu.fi/event/the-mystery-wires-markku-veijalainen-vuotalo-17474773/", "en": "https://www.lippu.fi/event/the-mystery-wires-markku-veijalainen-vuotalo-17474773/" }, "description": null, "price": { "fi": "29 €", "sv": "29 €", "en": "29 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4353, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:40.219074Z", "last_modified_time": "2023-09-07T14:23:40.219096Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733182.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4353/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.074496Z", "last_modified_time": "2023-11-14T06:13:17.123269Z", "date_published": null, "start_time": "2023-10-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, "name": { "fi": "The Mystery Wires & Markku \"Mape\" Veijalainen – Ilta Cliff & The Shadowsin tyyliin", "sv": "The Mystery Wires & Markku \"Mape\" Veijalainen", "en": "The Mystery Wires & Markku \"Mape\" Veijalainen" }, "provider_contact_info": null, "description": { "fi": "<p>Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.</p><p>Luvassa rautalankaklassikoita ja nuorisoelokuvamusiikkia Cliff & The Shadows -tyyliin.</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa. <br>Sali avautuu klo 17.30.<br>Kesto: 2 t <br>Liput lippu.fi tai ovelta.</p>", "sv": "<p>Kvällens programledare Mape tar publiken till 1960-talets ungdomsmusik tillsammans med Back To The Sixties-legenderna.</p><p>Det utlovas klassiska ståltrådshits och musik från ungdomsfilmer i Cliff & The Shadows stil.</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen. Barn under 18 år endast i sällskap av en vuxen.<br>Dörrarna öppnas kl. 17.30.<br>Längd ca 2 h. Bilj. á 29 € via Lippu.fi eller vid dörren.</p>", "en": "<p>The evening’s host Mape takes the audience on a journey through 1960s youth music with the legends of Back To The Sixties.</p><p>The programme includes ironclad classics and youth film music in the style of Cliff Richard & The Shadows.</p><p>Club night, fully licensed bar, Café Pokkari. Children under 18 yrs only with an adult. <br>Doors open at 5.30 PM. <br>Duration approx. 2 hours. <br>Tickets € 29 from lippu.fi or from the door.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen", "en": "http://www.vuotalo.fi/en/events/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen" }, "short_description": { "fi": "Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.", "sv": "Kvällens programledare Mape tar publiken till 1960-talets ungdomsmusik tillsammans med Back To The Sixties-legenderna.", "en": "The evening’s host Mape takes the audience on a journey through 1960s youth music with the legends of Back To The Sixties." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60142/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60519", "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": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "@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": 1953, "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": 1336, "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": 5966, "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": 4819, "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": 5022, "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" } ], "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/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV", "en": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV" }, "description": null, "price": { "fi": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4354, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:40.639097Z", "last_modified_time": "2023-09-07T14:23:40.639153Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_726140.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4354/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.463579Z", "last_modified_time": "2023-11-14T06:13:17.041699Z", "date_published": null, "start_time": "2023-10-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, "name": { "fi": "Helsinki International Big Band Composing Contest", "sv": "Helsinki International Big Band Composing Contest", "en": "Helsinki International Big Band Composing Contest" }, "provider_contact_info": null, "description": { "fi": "<p>Euroopan laajuisen Big Band -sävellyskilpailun finaalikonsertti kuullaan Malmitalossa!</p><p>Joka toinen vuosi pidettävä <b>Helsinki International Big Band Composing Contest</b> järjestetään jälleen <b>UMO Helsinki Jazz Orchestran</b> ja <b>Suomen Big Band -yhdistys ry:n</b> toteuttamana.</p><p>Kilpailu on suunnattu kaikille eurooppalaisille tai Euroopassa asuville musiikintekijöille ilman ikärajaa ja kilpaa käydään yhdellä ennalta tallentamattomalla ja julkaisemattomalla, 4–7-minuuttisella, big bandin vakiokokoonpanolle sävelletyllä teoksella per säveltäjä.</p><p>Finaaliin valitaan kahden anonyymin esikarsintakierroksen jälkeen enintään 10 teosta, jotka UMO Helsinki Jazz Orchestra soittaa kapellimestari <b>Antti Rissasen</b> johtamana.</p><p>Tuomaristoa johtaa UMOn taiteellinen johtaja ja pääkapellimestari <b>Ed Partyka</b>. Kilpailun voittajalle on luvassa 3000 euron palkinto, toiseksi tulleelle 2000 euroa ja kolmannelle 1000 euroa.</p><p>Kilpailun lisätiedot ja säännöt www.umohelsinki.fi</p><p>Konsertin kesto: n. 2,5–3 tuntia.</p>", "sv": "<p>Finalkonserten för Big Band-kompositionstävlingen går av stapeln i Malms kulturhus!</p><p>Till finalen utses efter två anonyma omgångar högst tio verk som UMO Helsinki Jazz Orchestra spelar under ledning av dirigent Antti Rissanen.</p><p>Längd cirka 2,5–3 t.</p>", "en": "<p>The final concert of the pan-European Big Band Composing Contest will take place at Malmitalo!</p><p>After two anonymous opening rounds, a maximum of 10 works will be selected for the final, to be performed by the UMO Helsinki Jazz Orchestra under the direction of conductor Antti Rissanen.</p><p>Duration: approx. 2,5–3 hours</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest", "en": "http://www.malmitalo.fi/en/events/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest" }, "short_description": { "fi": "Euroopan laajuisen Big Band -sävellyskilpailun finaalikonsertti kuullaan Malmitalossa!", "sv": "Finalkonserten för Big Band-kompositionstävlingen går av stapeln i Malms kulturhus!", "en": "The final concert of the pan-European Big Band Composing Contest will take place at Malmitalo!" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60519/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60112", "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": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "telephone": { "fi": "+358 40 160 3755" }, "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." }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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": 1953, "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": 1061, "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: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": 984, "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": 5966, "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: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": 1175, "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": 1139, "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:u4804001050", "sub_events": [], "images": [ { "id": 4352, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:39.861108Z", "last_modified_time": "2023-09-07T14:23:39.861129Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4352/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:39.262046Z", "last_modified_time": "2023-11-14T06:13:16.970554Z", "date_published": null, "start_time": "2023-10-05T08:45: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, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/731519EF0687905212B9A9DE68FCD27D/Opi_suomea_laulaen_" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60111", "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": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "telephone": { "fi": "+358 40 160 3755" }, "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." }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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": 1953, "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": 1061, "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: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": 984, "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": 5966, "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: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": 1175, "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": 1139, "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:u4804001050", "sub_events": [], "images": [ { "id": 4351, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:38.430270Z", "last_modified_time": "2023-09-07T14:23:38.430291Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733045.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4351/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:37.658582Z", "last_modified_time": "2023-11-14T06:13:16.899918Z", "date_published": null, "start_time": "2023-10-05T07: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, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F72256EABB7D356BC94F79AB68A77732/Opi_suomea_laulaen_" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60111/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60470", "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 ] }, "name": { "fi": "Caisa", "sv": "Caisa", "en": "Cultural Centre Caisa" }, "telephone": { "fi": "+358 9 310 80008" }, "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." }, "info_url": { "fi": "https://www.caisa.fi/fi/etusivu", "sv": "https://www.caisa.fi/sv/framsidan", "en": "https://www.caisa.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Kaikukatu 4, Helsinki", "sv": "Ekogatan 4, Helsinki", "en": "Kaikukatu 4, Helsinki" }, "@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": 1318, "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:30", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.465653Z", "last_modified_time": "2024-02-06T13:19:13.772265Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 119, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kuvataide" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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": 5966, "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": 4819, "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": 5022, "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": 1175, "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": 1139, "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": 13450, "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:p7266", "has_user_editable_resources": false, "alt_labels": [ "konkretismi (kuvataide)", "konkretism (konst)" ], "created_time": "2023-08-16T05:08:25.346620Z", "last_modified_time": "2023-08-16T05:08:25.346640Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 175, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "konkreettinen taide", "sv": "konkret konst", "en": "concrete art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "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:u4804001050", "sub_events": [], "images": [ { "id": 4350, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:37.240620Z", "last_modified_time": "2023-09-07T14:23:37.240643Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725257.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4350/?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": "2023-09-07T14:23:37.092517Z", "last_modified_time": "2023-11-14T06:13:16.829559Z", "date_published": null, "start_time": "2023-10-05T07:00:00Z", "end_time": "2023-10-05T09: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, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60470/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60518", "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": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "@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": 1953, "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": 1336, "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": 5966, "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": 4819, "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": 5022, "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" } ], "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/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/", "sv": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/", "en": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/" }, "description": null, "price": { "fi": "29,50 € / 22,50 €", "sv": "29,50 € / 22,50 €", "en": "29,50 € / 22,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4349, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:36.873850Z", "last_modified_time": "2023-09-07T14:23:36.873877Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728592.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4349/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:36.722617Z", "last_modified_time": "2023-11-14T06:13:16.754145Z", "date_published": null, "start_time": "2023-10-04T16: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, "name": { "fi": "Georg \"Joijje\" Wadenius", "sv": "Georg \"Joijje\" Wadenius", "en": "Georg \"Joijje\" Wadenius" }, "provider_contact_info": null, "description": { "fi": "<p>Georg Wadenius aloitti uransa jazz-kitaristina, joka oli saanut vahvoja vaikutteita Wes Montgomeryltä ja Jim Hallilta.</p><p>Soitettuaan kolme vuotta tunnetussa <i>Made in Sweden</i> -fuusiokooonpanossa hän sai kutsun liittyä <i>Blood, Sweat and Tears</i> -yhtyeeseen. Hän esiintyi ja levytti kokoonpanon kanssa neljän vuoden ajan.</p><p>Samaan aikaan hän levytti ja esiintyi livenä myös <b>Joe Hendersonin</b> ja <b>Ronnie Cuberin</b> kanssa. Myöhemmin hänestä tuli <i>Saturday Night Live Bandin</i> vakiojäsen kuuden vuoden ajaksi ja hän sekä levytti että teki kiertueita <b>Roberta Flackin</b>, <b>Luther Vandrossin</b>, <b>Simon & Garfunkelin</b>, <b>Steely Danin</b> sekä lukuisten muiden kanssa.</p><p>Nyt hän palaa juurilleen trio <i>Gejoman</i> kanssa, yhdessä kahden Ruotsin suurimman jazz-muusikon, <b>Jonas Holgerssonin</b> (rummut) sekä <b>Mattias Svenssonin</b> (basso) kanssa.</p>", "sv": "<p>Jazzgitarristen Georg Wadenius har spelat med Roberta Flack, Luther Vandross, Simon & Garfunkel och Steely Dan – och många fler.</p><p>Nu återvänder han till sina rötter med trio Gejoma – tillsammans med två av Sveriges största jazzmusiker, Jonas Holgersson (trummor) och Mattias Svensson (bas).</p>", "en": "<p>Georg Wadenius started as a jazz guitar player, heavily influenced by Wes Montgomery and Jim Hall.</p><p>After 3 years with the renowned fusion group Made in Sweden he was asked to join Blood, Sweat & Tears. He played and recorded with them for 4 years.</p><p>During this time he also recorded and played live with Joe Henderson and Ronnie CuberLater on he was a permanent member of the Saturday Night Live Band for 6 years and recorded and toured with Roberta Flack, Luther Vandross, Simon & Garfunkel and Steely Dan – among countless others.</p><p>He now returns to his roots with the trio Gejoma – joined by two of Swedens greatest jazz players, Jonas Holgersson, drums and Mattias Svensson, bass.</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius", "en": "http://www.malmitalo.fi/en/events/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius" }, "short_description": { "fi": "Georg Wadenius aloitti uransa jazz-kitaristina, joka oli saanut vahvoja vaikutteita Wes Montgomeryltä ja Jim Hallilta.", "sv": "Jazzgitarristen Georg Wadenius har spelat med Roberta Flack, Luther Vandross, Simon & Garfunkel och Steely Dan – och många fler.", "en": "Georg Wadenius started as a jazz guitar player, heavily influenced by Wes Montgomery and Jim Hall." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61061", "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": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "telephone": { "fi": "+358 9 310 85983" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:205", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.162709Z", "last_modified_time": "2024-02-06T13:19:14.678169Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 654, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuva ja media" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:29", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.424657Z", "last_modified_time": "2024-02-06T13:19:13.738407Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1153, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuvat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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": 799, "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": 5966, "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": 4819, "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": 5022, "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:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16327", "has_user_editable_resources": false, "alt_labels": [ "elokuva (taiteet)", "film (konstarter)", "spelfilm" ], "created_time": "2023-08-16T05:17:37.994244Z", "last_modified_time": "2023-08-16T05:17:37.994289Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 351, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvataide", "sv": "filmkonst", "en": "cinema (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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:u4804001050", "sub_events": [], "images": [ { "id": 5144, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:39.179357Z", "last_modified_time": "2023-10-09T13:29:39.179378Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733538.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5144/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:38.926239Z", "last_modified_time": "2023-11-14T06:13:16.661997Z", "date_published": null, "start_time": "2023-10-04T15: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, "name": { "fi": "Onsdagsbio: Dogborn", "sv": "Onsdagsbio: Dogborn", "en": "Onsdagsbio: Dogborn" }, "provider_contact_info": null, "description": { "fi": "<p>Rap-tähti Silvana Imam tekee pääosassa elokuvadebyyttinsä. Isabella Carbonell palkittiin parhaana alle 40-vuotiaana ohjaajana Venetsian elokuvajuhlilla.</p><p>Kodittomina ja yhteiskunnalle näkymättöminä elävistä kaksosista sisar on tikittävä pommi. Veli ei ole sanonut sanaakaan sen jälkeen, kun he pakenivat kotimaastaan. Odottamaton työtarjous näyttää tuovan heidät askeleen lähemmäksi unelmaa oikeasta kodista. Heidän tarvitsee vain kuljettaa tavaroita paikasta A paikkaan B. Mutta kun tavarat saapuvat kahden nuoren tytön muodossa, sisarusten välille syntyy konflikti. Kahden intensiivisen päivän aikana he kohtaavat elämää muuttavan dilemman – kuinka pitkälle he ovat valmiita menemään selviytymistaistelussaan?</p><p>Ruotsi 2022\t<br>Ohjaaja:\t Isabella Carbonell<br>Käsikirjoitus:\tIsabella Carbonell<br>Näyttelijät:\tSilvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Genre:\t Draama, Rikostarina, 2020-luku<br>Kesto: 84 min. <br>Kielet: Ruotsi, litvia, arabia, mandariini-kiinaa, englanti, tekstitys: Suomi <br>ikäraja: K16</p><p>Järj. Finlandssvenkst filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Huvudrollen var rap-stjärnan Silvana Imams filmdebut. Isabella Carbonell belönades som bästa regissör under 40 år vid filmfestivalen i Venedig</p><p>Ett hemlöst tvillingpar rör sig under radarn, bortom samhällets regler och system för hjälpande händer. Tillsammans kämpar de för sin överlevnad och tvingas söka sig till kriminella kretsar där de får i uppdrag att sköta okategoriserade leveranser genom ett vinterkyligt Stockholm. När leveransernas innehåll avslöjas sätts tvillingarnas mänsklighet på prov.</p><p>Sverige 2022\t<br>Regissör:\t Isabella Carbonell<br>Manus:\t Isabella Carbonell<br>Genre:\t Drama, Thriller, 2020-talet<br>Skådespelare:\tSilvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Längd: 84 min. <br>Språk: Svenska, litauiska, arabiska, mandarin-kinesiska, <br> engelska, <br>Textning: Fnska. <br>Åldersgräns: F16<br>. <br>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset.</p>", "en": "<p>The headpart is the rapstar Silvana Imams first appearance on film. Isabella Carbonell was rewarded as the best director under 40 years at the Film Festival in Venice.</p><p>Homeless and invisible – the Twins are constantly struggling to survive. Sister is a ticking time bomb; her screams are loud. Brother, on the other hand, doesn’t speak, but rather screams inwards. Their dream of a real home leads to an unexpected job opportunity that sounds simple enough: transport goods from point A to point B. But when the goods appear in the form of two young girls, the unspeakable happens: a rift suddenly occurs between Brother and Sister. Over the course of two intense days the twins are forced to make a life-altering decision: how far are they willing to go in their quest for a better future?</p><p>Sweden 2022\t<br>Director:\t Isabella Carbonell<br>Script:\t Isabella Carbonell<br>Genre:\t Drama, Thriller, 2020-ies<br>Actors:\t Silvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Duration: 84 min. <br>Languages: Swedish, lithuanian, arabic, mandarin-chinese, <br> english<br>Subtitles: Finnish<br>Age limit : 16</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo.<br>.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn", "en": "http://www.vuotalo.fi/en/events/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn" }, "short_description": { "fi": "Rap-tähti Silvana Imam tekee pääosassa elokuvadebyyttinsä. Isabella Carbonell palkittiin parhaana alle 40-vuotiaana ohjaajana Venetsian elokuvajuhlilla.", "sv": "Huvudrollen var rap-stjärnan Silvana Imams filmdebut. Isabella Carbonell belönades som bästa regissör under 40 år vid filmfestivalen i Venedig", "en": "The headpart is the rapstar Silvana Imams first appearance on film. Isabella Carbonell was rewarded as the best director under 40 years at the Film Festival in Venice." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61061/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61047", "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": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:29", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.424657Z", "last_modified_time": "2024-02-06T13:19:13.738407Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1153, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuvat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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": 1336, "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": 5966, "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": 4819, "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": 5022, "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:p16327", "has_user_editable_resources": false, "alt_labels": [ "elokuva (taiteet)", "film (konstarter)", "spelfilm" ], "created_time": "2023-08-16T05:17:37.994244Z", "last_modified_time": "2023-08-16T05:17:37.994289Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 351, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvataide", "sv": "filmkonst", "en": "cinema (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5145, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:41.086199Z", "last_modified_time": "2023-10-09T13:29:41.086218Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737377.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5145/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:40.401936Z", "last_modified_time": "2023-11-14T06:13:16.577770Z", "date_published": null, "start_time": "2023-10-04T15: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, "name": { "fi": "Rakas äitini (12) – Kino Helios", "sv": "Rakas äitini (12) – Kino Helios", "en": "Rakas äitini (12) – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa.</p><p>Borghettin perhe on juuri muuttanut uuteen upeilla näkymillä varustettuun kerrostaloasuntoon, joita kiireessä rakennetaan kaupungin vaurastuvalle keskiluokalle. Vaikka perheessä näyttää ulospäin olevan kaikki kunnossa, niin asiat eivät ole niin kuin ennen.<br> <br>Clara (<b>Penélope Cruz</b>) ja Felice (<b>Vincenzo Amato</b>) ovat menettäneet rakkautensa. Kotiäiti Clara on<br>autoritääriselle miehelleen ensimmäiseksi vaimo ja vasta toiseksi lapsilleen äiti. Claralla ei juurikaan ole sosiaalista elämää ydinperheen ulkopuolella ja siksi hän alkaa elää elämäänsä lastensa kautta.</p><p>Kotona oleva stressaantunut tunnelma sekä kotiväkivallan peittely suvun silmissä vie hänet entistä kauemmaksi aviomiehestään. Perheen tytär Adri (<b>Luana Giuliani</b>) kamppailee oman identiteettinsä kanssa ja isänsä harmiksi ystävystyy alempaan yhteiskuntaluokkaan kuuluvan tytön kanssa. Sisäiset ristiriidat repivät perhettä erilleen kohti murtumispistettä, jota suvun taustalla aiheuttama paine ei yhtään helpota.</p><p><i>Terraferma</i> ja <i>Kultainen portti</i> -elokuvien ohjauksistaan tunnettu <b>Emanuele Crialese</b> on Rakas äitini<br>elokuvassa tarttunut osittain omaelämänkerralliseen aiheeseen. Sen autenttinen 1970-lukulainen värimaailma on värikylläinen ja näyttävä. Elokuva toimii monessa tasossa ja sen perheidylliä rikkovat ongelmat ovat hyvin samaistuttavia myös nykyaikana.<br> <br>Ensi-ilta 22.9.2023<br>Kesto 99 min<br>Ikäraja 12</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_", "en": "http://www.malmitalo.fi/en/events/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_" }, "short_description": { "fi": "1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61047/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }