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
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&is_free=true&page=246
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=247", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=245" }, "data": [ { "id": "kulke:64572", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T10:15:00.302535Z", "last_modified_time": "2024-09-23T10:15:00.302548Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756003.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T10:15:00.258794Z", "last_modified_time": "2024-12-20T01:13:53.665245Z", "date_published": null, "start_time": "2024-10-24", "end_time": "2024-11-02", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vuosi 1984 toi itähelsinkiläisille oman kulttuuritalon. Nyt on aika juhlistaa Stoan 40-vuotissynttäreitä!", "sv": "År 1984 fick östra Helsingfors ett eget kulturhus. Nu är det dags att fira Stoas 40-årsdag!", "en": "The people of East Helsinki received their Cultural Centre in 1984. It's time to celebrate Stoa's 40th anniversary!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_", "sv": "http://www.stoa.fi/sv/evenemang/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_", "en": "http://www.stoa.fi/en/events/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_" }, "name": { "fi": "Stoa 40!", "sv": "Stoa 40!", "en": "Stoa 40!" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Vuosi 1984 toi itähelsinkiläisille oman kulttuuritalon. Nyt on aika juhlistaa Stoan 40-vuotissynttäreitä!</p><p>Tule mukaan vaikka joka päivä juhlaviikon ajan: luvassa on tanssia ja brunssia, ensi-iltaa ja avajaisia, luentokimaraa ja open-mic-stagea, viulumusiikkia vauvaperheille ja kauhua kakaroille. <br> <br>Kanssamme pääset muistelemaan menneitä ja tarttumaan tähän hetkeen, ihastelemaan vesi- ja valotaidetta, nauramaan Itäkuskukseen ja sukeltamaan syvällisiinkin pohdintoihin elämästä ja kuolevaisuudesta. <br> <br>Stoan juhlapöytä on katettu herkullisella ohjelmalla, kutsumme juuri sinut mukaan!</p><p><b>Stoa 40! –juhlaviikon ohjelmaa</b></p><p><b>to 24.10.</b><br>klo 14–15 Askartelutuokio kirjastossa<br>klo 15–18 Ars Moriendi 2024 – Lainaa filosofi, Stoan galleria<br>klo 16–18 Mitä kuuluu Stoa? -teoksen avajaiset + synttärijuhla<br>200 ensimmäiselle kaupunkilaiselle tarjolla kakkua ja kahvia Stoan aulassa, tervetuloa!<br>klo 17 Stoan kansainvälinen kuoro esiintyy Stoan aulassa</p><p><b>pe 25.10.</b><br>klo 16–19 Taivu kuin taikina (Kirjastossa)<br>klo 19 Itäkuskus stand up -klubi & Yalla Collective (Stoan aula, vapaa pääsy)</p><p><b>la 26.10.</b><br>klo 10–16 Arkkitehtuuria laatikon ulkopuolella –penkkipaja Musiikkisalissa<br>klo 10–13 Tiitiäisjuhlat (kirjasto)<br>klo 12–15 Brunssi Stoan katon alla <br>klo 14–21 Halloween-leffoja nuorille nuorten toimintatalo Kipinän takatilassa<br>klo 19 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>su 27.10.</b><br>klo 12–18 Arkkitehtuuria laatikon ulkopuolella -penkkipaja Stoan aukiolla<br>klo 15 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>ma 28.10.</b><br>klo 11–12 Tutustu espanjan kieleen Stoan aulassa<br>klo 14–15 Stoan lausujat tervehtivät kävijöitä ikuisin lausein Stoan aulassa<br>klo 14.15–14.30 LadyAfro-esitys Stoan aulassa<br>klo 15–17 Runonselittäjän vastaanotto Stoan aulassa<br>klo 15.30–15.45, 16–16.15 ja 16.30–16.45 / 3 x hengähdyshetki Musiikkisalissa<br>klo 17–18 Itä-Helsingin historiaa: Aikamatka 1700-luvun Mellunkylään Stoan aulassa<br>klo 17–20 Origami-työpaja Stoan aulassa<br>klo 18.30–19.30 Futista ja kulttuurihistoriaa Saksassa Stoan aulassa</p><p><b>ti 29.10.</b><br>klo 10–11 Pienten aamut (kirjasto)<br>klo 13–15 Päivädisko +50 (Stoan aula)<br>klo 19 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>ke 30.10.</b><br>klo 10–11 Metridisco Stoan aulassa <br>klo 13, 14.30 ja 16<br>Viulumusiikkia vauvaperheiden tahtiin <br>klo 14–17 Lainaa filosofi <br>klo 17–19 Iltateellä Stoassa: Taidetauko-työpaja<br>klo 17.30–19.30 Kuolema-keskiviikon keskustelut - Filocafé <br>klo 19 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>to 31.10.</b><br>klo 9 Kirjailijavieraana Arttu Unkari (kirjasto)<br>klo 13–14 Askartelutuokio (kirjasto)<br>klo 15–18 Lainaa filosofi<br>klo 18–20 IT IS OPEN STAGE</p><p><b>pe 1.11.</b><br>klo 13–15 Kohtaamiskahvila (Kirjastossa)<br>klo 14 Kaamea HalloweenKahoot<br>klo 18–20 Kipinä x Stoa goes Nuorten uuden musiikin ilta (vol. 4)</p><p><b>la 2.11.</b><br>klo 16–19 Kauhua kakaroille<br>Klo 16-19 Opus Company: Lightsphere-valoteos Stoan aukiolla<br>Klo 16.30 ja klo 18 Mutaveijarit ja Töölö Brass Band teatterisalissa<br>Klo 16–19 Tip Top Walkersin kuolleiden päivän hahmot<br>Klo 16.30–17.30 ja klo 18-18.45 Disco Stoan aulassa, DJ Blurred Boy ja DJ Pyry Aalto <br>Työpajat klo 16–18.30<br>•Hämärän hiipijät<br>•Valomaalaus<br>•Kosmista hiekkaa<br>•Glittertatuoinnit<br>Kirjastossa:<br>klo 16–18.30 Kammokuja (kirjasto)<br>klo 16–19 Kauhua kiireestä kynnenpäähän!<br>Työväenopistolla:<br>klo 16–19 Hurjan hauskat naamiot- ja Tupsumonsteri -työpajat (Työväenopisto)<br>klo 16–19 Espanjaa hauskasti Halloween-hengessä (Työväenopisto)</p><p>Lisäksi Itäkeskuksen kirjastossa esillä 40-vuotiskirja-/levynäyttely ja runo-olohuone.</p><p><u><a href=\"https://www.stoa.fi/fi/tapahtumat/?q=stoa%2040&st=2024-10-15&et=2025-07-15&el=44&show=40” >Katso juhlaviikon ohjelmien tarkemmat tiedot tapahtumakalenterista</a></u></p>", "sv": "<p>År 1984 fick östra Helsingfors ett eget kulturhus. Nu är det dags att fira Stoas 40-årsdag!</p><p>Du är välkommen att besöka oss alla dagar under hela veckan: vi utlovar dans och brunch, premiärer och vernissager, föreläsningscocktail och open-mic-stage, violinmusik för familjer med bebisar och skräck för rackarungar. <br> <br>Hos oss får du minnas det förflutna och ta vara på nuet, beundra vatten- och ljuskonst, skratta åt Itäkuskus och dyka ner i djupa reflektioner om livet och dödligheten. <br> <br>Stoas festbord är dukat med ett utsökt program, vi bjuder in just dig!</p><p><b>Program för jubileumsveckan Stoa 40!</b></p><p><b>to 24.10.</b><br>kl. 14–15 Pysselstund på biblioteket<br>kl. 15–18 Ars Moriendi 2024 – Låna en filosof, Stoas galleri<br>kl. 16–18 Vernissage + födelsedagsfest för verket Mitä kuuluu Stoa? (Hur går det Stoa?)<br>Vernissage för stadsbor i Stoas lobby: Tårta och kaffe till de 200 första.<br>kl. 17 Stoas internationella kör uppträder i Stoas lobby</p><p><b>fre 25.10.</b><br>kl. 16–19 Smidig som en deg (i biblioteket)<br>kl. 19 Itäkuskus stand up-klubb (Stoas lobby, fritt inträde)</p><p><b>lö 26.10.</b><br>kl. 10–16 Arkitektur utanför boxen – bänkworkshop i Musiksalen<br>kl. 10–13 Tiitiäinenfest (biblioteket)<br>kl. 12–15 Brunch under Stoas tak<br>kl. 14–21 Halloweenfilmer för unga i bakre rummet till de ungas aktivitetshus Kipinä<br>kl. 19 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>sö 27.10.</b><br>kl. 12–18 Arkitektur utanför boxen – bänkworkshop på Stoaplatsen<br>kl. 15 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>må 28.10.</b><br>kl. 11–12 Upptäck det spanska språket Stoas lobby<br>kl. 14–15 Stoas recitatörer hälsar besökare välkomna med eviga fraser i Stoas lobby<br>kl. 14.15–14.30 LadyAfro-uppträdande i Stoas lobby<br>kl. 15–17 Diktförklararens mottagning<br>kl. 15.30–15.45, 16–16.15 och 16.30–16.45 / 3 x andrum Musiksalen<br>kl. 17–18 Östra Helsingfors historia: Tidsresa till 1700-talets Mellungsby Stoas lobby<br>kl. 17–20 Origami-workshop i Stoas lobby<br>kl. 18.30–19.30 Fotboll och kulturhistoria i Tyskland Stoas lobby</p><p><b>ti 29.10.</b><br>kl. 10–11 Morgon för barn (biblioteket)<br>kl. 13–15 Dagsdisko +50 (Stoas lobby)<br>kl. 19 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>ons 30.10.</b><br>kl. 10–11 Meterdisko i Stoas lobby<br>kl. 13, 14.30 och 16<br>Violinmusik i takt med babyfamiljer<br>kl. 14–17 Låna en filosof<br>kl. 17–19 Kvällste på Stoa: Konstpaus-workshop<br>kl. 17.30–19.30 Diskussioner på dödsonsdagen – Filocafé<br>kl. 19 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>to 31.10.</b><br>kl. 9 Arttu Unkari som författargäst (biblioteket)<br>kl. 13–14 Pysselstund (biblioteket)<br>kl. 15–18 Låna en filosof<br>kl. 18–20 IT IS OPEN STAGE</p><p><b>fre 1.11.</b><br>kl. 13–15 Mötescafé (i biblioteket)<br>kl. 14 Kuslig HalloweenKahoot<br>klo 18–20 Kipinä x Stoa goes Nya musikens kväll för unga (vol. 4)</p><p><b>lö 2.11.</b><br>kl. 16–19 Skräck för rackarungar<br>Kl. 16-19 Opus Company: Ljusverket Lightsphere på Stoaplatsen<br>Kl. 16.30 och kl. 18 Mutaveijarit och Tölö Brass Band i teatersalen<br>Kl. 16–19 Tip Top Walkers de dödas dag-figurer<br>Kl. 16.30–17.30 och kl. 18–18.45 Disko i Stoas lobby, DJ Blurred Boy och DJ Pyry Aalto<br>Workshoppar kl. 16–18.30<br>•Skymningssmygare<br>•Ljusmålning<br>•Kosmisk sand<br>•Glittertatueringar<br>I biblioteket<br>kl. 16–18.30 Skräckgränden (biblioteket)<br>kl. 16–19 Skräck från topp till tå!<br>kl. 16–19 Workshopparna Vilt roliga masker och Tofsmonster (Finska arbetarinstitutet)<br>kl. 16–19 Spanska i skojig Halloween-anda (Finska arbetarinstitutet)</p><p>Dessutom finns på Östra Centrums bibliotek en 40-årsboks-/skivutställning och ett diktvardagsrum.</p>", "en": "<p>The people of East Helsinki received their Cultural Centre in 1984. It's time to celebrate Stoa's 40th anniversary!</p><p>Join us every day during the festive week: dance and brunch, premieres and opening ceremonies, lecture clubs and open-mic stages, violin music for baby families and horror for the kids. <br> <br>With us, reminisce about the past and seize the moment, admire the water and light art, laugh at Itäkuskus and dive into deep reflections on life and mortality. <br> <br>The banquet table at Stoa is set with a delicious programme, we invite you to join us!</p><p><b>Stoa 40! Anniversary Week Programme</b></p><p><b>Tuesday, 24 October</b><br>14:00–15:00 Crafting session at the library<br>15:00–18:00 Ars Moriendi 2024 – Borrow a Philosopher, Stoa gallery<br>16:00–18:00 Opening of the ‘How’s it Going, Stoa?’ artwork and birthday party<br>Opening ceremony for city residents in the Stoa lobby: Cake and coffee for the first 200 guests.<br>17:00 Stoa’s international choir performs in Stoa’s lobby</p><p><b>Friday, 25 October</b><br>16:00–19:00 Bend Like Dough (at the library)<br>19:00 Itäkuskus Stand Up Club (Stoa lobby, free entry)</p><p><b>Saturday, 26 October</b><br>10:00–16:00 Architecture Outside the Box bench-making workshop in the Music Hall<br>10:00–13:00 Tiitiäisjuhlat poetry event (library)<br>12:00–15:00 Brunch under Stoa’s roof<br>14:00–21:00 Halloween movies for young people in the back room of the Kipinä Youth Activity House<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Sunday, 27 October</b><br>12:00–18:00 Architecture Outside the Box bench-making workshop at the Stoa square<br>15:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Monday, 28 October</b><br>11:00–12:00 Introduction to Spanish, Stoa lobby<br>14:00–15:00 Stoa’s reciters greet visitors with timeless lines, Stoa lobby<br>14:15–14:30 LadyAfro performance, Stoa lobby<br>15:00 - 17:00 Poetry interpreter’s reception<br>15:30–15:45, 16:00–16:15 and 16:30–16:45 / 3 x break in the Music Hall<br>17:00–18:00 History of East Helsinki: Time travel to 18th-century Mellunkylä, Stoa lobby<br>17:00–20:00 Origami Workshop, Stoa lobby<br>18:30–19:30 Football and Cultural History in Germany, Stoa Lobby</p><p><b>Tuesday, 29 October</b><br>10:00–11:00 Mornings for little kids (library)<br>13:00–15:00 Daytime disco, 50+ (Stoa lobby)<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Wednesday, 30 October</b><br>10:00–11:00 Metridisco in the Stoa lobby<br>13:00, 14:30 and 16:00<br>Violin music for families with babies<br>14:00–17:00 Borrow a Philosopher<br>17:00–19:00 Evening Tea at Stoa: Art Break workshop<br>17:30–19:30 Death Wednesday discussions – Filocafé<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Thursday, 31 October</b><br>9:00 Guest author Arttu Unkari (library)<br>13:00–14:00 Crafting session (library)<br>15:00–18:00 Borrow a Philosopher<br>18:00–20:00 IT IS OPEN STAGE</p><p><b>Friday, 1 November</b><br>13:00–15:00 Meeting Café (at the library)<br>14:00 Spooky HalloweenKahoot<br>18:00–20:00 Kipinä x Stoa evening of new music for young people (vol. 4)</p><p><b>Saturday, 2 November</b><br>16:00–19:00 Kauhua kakaroille kids’ Halloween event<br>16:00–19:00 Opus Company: Lightsphere light artwork at Stoa square<br>16:30 and 18:00 Mutaveijarit and Töölö Brass Band in the theatre hall<br>16:00–19:00 Tip Top Walkers’ Day of the Dead characters<br>16:30–17:30 and 18:00–18:45 in the Disco Stoa lobby, DJ Blurred Boy and DJ Pyry Aalto<br>Workshops from 16:00 to 18:30<br>• Twilight Creepers<br>• Light painting<br>• Cosmic sand<br>• Glitter tattoos<br>In the library<br>16:00–18:30 Kammokuja Fright Alley (library)<br>16:00–19:00 Horror from head to fingernail!<br>16:00–19:00 Frightfully Fun Masks and Tassel Monster workshops (Adult Education Centre)<br>16:00–19:00 Have fun learning Spanish with a Halloween twist (Adult Education Centre)</p><p>In addition, the Itäkeskus Library will feature a 40th anniversary book/album exhibition and a poetry lounge.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64572/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64259", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151825, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T15:13:19.627214Z", "last_modified_time": "2024-07-24T15:13:19.627230Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755073.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151825/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T15:13:19.584260Z", "last_modified_time": "2024-12-20T01:13:53.192048Z", "date_published": null, "start_time": "2024-10-23T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Alma – Life Must Be Beautiful -dokumenttielokuva kertoo 28-vuotiaan artistin Alma-Sofia Miettisen tarinan.", "sv": "Alma – Life Must Be Beautiful berättar historien om den 28-åriga artisten Alma-Sofia Miettinen.", "en": "Alma – Life Must Be Beautiful tells the story of 28-year-old artist Alma-Sofia Miettinen." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A9C564C15D684627E8E27C90BEDEE146/Alma_Life_must_be_Beautiful_7_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A9C564C15D684627E8E27C90BEDEE146/Alma_Life_must_be_Beautiful_7_", "en": "http://www.vuotalo.fi/en/events/event/A9C564C15D684627E8E27C90BEDEE146/Alma_Life_must_be_Beautiful_7_" }, "name": { "fi": "Alma: Life must be Beautiful (7)", "sv": "Alma: Life must be Beautiful (7)", "en": "Alma: Life must be Beautiful (7)" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Alma – Life Must Be Beautiful -dokumenttielokuva kertoo 28-vuotiaan artistin Alma-Sofia Miettisen tarinan.</p><p>Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa. Se tuo päivänvaloon sen Alman, joka löytyy julkisuudessa esitellyn persoonan takaa. Lapsuudesta saakka kuvattu arkistomateriaali ja lukuisat keikkakiertueilla kuvatut tallenteet valottavat Alman tarinaa alusta alkaen, päästäen katsojan sisälle Alman, tämän perheen ja ystäväporukan intiimeihin hetkiin – unohtamatta menestyksen monia puolia.</p><p>Kesto: 99 min<br>K-7<br>Kieli: suomi, tekstitys: ruotsi<br>Ohjaaja: Pamela Tola<br>Vapaa sisäänpääsy.</p>", "sv": "<p>Alma – Life Must Be Beautiful berättar historien om den 28-åriga artisten Alma-Sofia Miettinen.</p><p>Dokumentären följer Almas extraordinära liv, karriär och personlighet. Den hämtar fram den Alma som finns bakom personen vi ser i offentligheten. Arkivmaterial som spelats in allt sedan hennes barndom och flera inspelningar från hennes turnéer belyser Almas historia från början, och låter tittaren ta del av Almas, familjens och vännernas intima stunder – utan att glömma framgångens olika aspekter.</p><p>Längd: 99 min.<br>F-7<br>Språk: finska, textning: svenska<br>Regi: Pamela Tola<br>Fri entré.</p>", "en": "<p>Alma – Life Must Be Beautiful tells the story of 28-year-old artist Alma-Sofia Miettinen.</p><p>The documentary follows Alma's extraordinary life, career and personality. It brings to light the Alma that lies behind the public persona. The archive footage, shot since childhood, and the numerous tour recordings shed light on Alma's story from the beginning and allow the viewer to enter the intimate moments of Alma, her family and her group of friends – not forgetting the many facets of success.</p><p>Duration: 99 mins.<br>Age recommendation: 7+<br>Language: Finnish with subtitles in Swedish<br>Director: Pamela Tola<br>Free entry.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64259/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64307", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151941, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-29T12:15:25.350185Z", "last_modified_time": "2024-07-29T12:15:25.350202Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753050.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151941/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-29T12:15:25.321454Z", "last_modified_time": "2024-12-20T01:13:53.044134Z", "date_published": null, "start_time": "2024-10-23T12:00:00Z", "end_time": "2024-10-23T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Globe Art Pointia edustavan Alexandr Foyn kanssa käydään kovaa keskustelua musiikkiteollisuuden nykytilanteesta sekä kulttuurisen yhdenvertaisuuden, monimuotoisuuden ja osallisuuden kysymyksistä, joihin meidän olisi kiinnitettävä huomioita Suomen taide- ja kulttuurikentällä.", "sv": "Alexandr Foy från Globe Art Point i en hetlevrad diskussion om var vi befinner oss i musikbranschen idag och vad vi bör vara medvetna om när det gäller kulturell rättvisa, mångfald och inkludering inom konst- och kultursektorn i Finland.", "en": "Alexandr Foy of Globe Art Point, in a heated discussion about where we are in the music industry today and what we should be aware of in terms of cultural equity, diversity and inclusion in the arts and cultural sector in Finland." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C1B7354E07D959D7D214ACD1111B8332/HOW_radio_Global_Club_Nights_", "sv": "http://www.caisa.fi/sv/evenemang/event/C1B7354E07D959D7D214ACD1111B8332/HOW_radio_Global_Club_Nights_", "en": "http://www.caisa.fi/en/events/event/C1B7354E07D959D7D214ACD1111B8332/HOW_radio_Global_Club_Nights_" }, "name": { "fi": "HOW radio: Global Club Nights – Alexandr Foy – Globe Art Point", "sv": "HOW radio: Global Club Nights – Alexandr Foy – Globe Art Point", "en": "HOW radio: Global Club Nights – Alexandr Foy – Globe Art Point" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Globe Art Pointia edustavan Alexandr Foyn kanssa käydään kovaa keskustelua musiikkiteollisuuden nykytilanteesta sekä kulttuurisen yhdenvertaisuuden, monimuotoisuuden ja osallisuuden kysymyksistä, joihin meidän olisi kiinnitettävä huomioita Suomen taide- ja kulttuurikentällä.</p><p>Tarkastelemme yhdessä musiikkialaa ja pohdimme tukijärjestelmien ja verkostojen merkitystä alalla.</p><p>Alexandr Foy on sosioekonomisen integraation, kolmannen sektorin hallinnon, media- ja tapahtumatuotannon sekä osallistavan koulutuksen parissa työskentelevä ammattilainen. Hänelle tärkeimpiä arvoja ovat ihmisoikeudet, tasa-arvo ja sosiaalinen osallisuus. Hän on Suomeen ruotsin kielellä kotoutuvien ulkomaalaisten Svenska.fi-yhdistyksen perustaja ja nykyinen puheenjohtaja. Hän toimii ruotsinkielisen kulttuurijärjestön Tigern rf:n hallituksen jäsenenä ja Ny Tid -lehden kustantajana. Foys on myös muun muassa venäjänkielisen, lifestyle-mediaan ja tapahtumiin keskittyvän Tochka.fi-toimiston perustaja, hallituksen jäsen ja päätuottaja.</p><p><b>Globe Art Point</b><br>Globe Art Pointin (G.A.P.) päätehtävänä on edistää kulttuurista tasa-arvoa, monimuotoisuutta ja osallisuutta Suomen taide- ja kulttuurialalla. G.A.P. toimii myös tiedotuskeskuksena ja kohtaamispaikkana Suomessa toimiville taiteilijoille, kulttuurityöntekijöille sekä taide- ja kulttuurilaitoksille. G.A.P. tekee töitä sen eteen, että Suomessa toimivat, eri taustoista tulevat ammattitaiteilijat ja kulttuurialan työntekijät ja yrittäjät saavat tunnustusta ja että heidän mahdollisuuksiaan hyödynnetään täysimääräisesti. G.A.P. pyrkii yhdessä sidosryhmiensä ja yhteistyökumppaneidensa kanssa parantamaan nykyisiä rakenteita ja rakentamaan yhteiskuntaa, jossa ei ole kulttuurista syrjintää tai muunlaista sortoa. Tavoitteena on luoda rakentavaa ja toimintapainotteista vuoropuhelua koko yhteiskunnan kanssa paikalliselta ruohonjuuritasolta kansalliselle tasolle.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "sv": "<p>Alexandr Foy från Globe Art Point i en hetlevrad diskussion om var vi befinner oss i musikbranschen idag och vad vi bör vara medvetna om när det gäller kulturell rättvisa, mångfald och inkludering inom konst- och kultursektorn i Finland.</p><p>Vi navigerar musikscenen tillsammans och utforskar vikten av stödsystem och nätverk i branschen.</p><p>Alexandr Foy är proffs inom socioekonomisk integration, styrning av ideella organisationer, media- och evenemangsproduktion samt inkluderande utbildning. Hans främsta värden är mänskliga rättigheter, jämställdhet och social inkludering. Han är medgrundare av och nuvarande ordförande i organisationen Svenska.fi för invandrare som integreras på svenska i Finland. Han är styrelsemedlem i Tigern rf – en svenskspråkig kulturförening som publicerar tidningen Ny Tid. Foy är också medgrundare, styrelsemedlem och huvudproducent av Tochka.fi – en ryskspråkig livsstils-, media- och evenemangsorganisation i Helsingfors, och mycket mer.</p><p><b>Globe Art Point</b><br>Globe Art Points främsta syfte är att arbeta för kulturell jämställdhet, mångfald och inkludering i konst- och kulturbranschen i Finland. G.A.P fungerar också som ett informationscentrum och en mötesplats för konstnärer, kulturarbetare och konst- och kulturorganisationer i Finland. G.A.P fokuserar på att Finlandsbaserade professionella konstnärer, kulturarbetare och kulturentreprenörer med olika bakgrunder ska erkännas och deras outnyttjade potential till fullo utnyttjas. G.A.P arbetar tillsammans med sina intressenter och partner för att förbättra befintliga strukturer och bygga ett samhälle fritt från kulturell diskriminering och all annan form av förtryck. Deras mål är att skapa konstruktiva och handlingsdrivna dialoger med hela samhället, från lokal gräsrotsnivå till nationell nivå.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "en": "<p>Alexandr Foy of Globe Art Point, in a heated discussion about where we are in the music industry today and what we should be aware of in terms of cultural equity, diversity and inclusion in the arts and cultural sector in Finland.</p><p>We navigate the music scene together and we explore the importance of support systems and networks in the field.</p><p>Alexandr Foy is professional on socio-economic integration, governing in non-profit sector, media & event production and inclusive education. His main values are human rights, equality and social inclusion. He is co-founder and current chairman of Svenska.fi association of foreigners who integrate in Swedish language in Finland. He is a board member of Tigern rf – a Swedish speaking cultural association, publisher of Ny Tid magazine. Foys is also co-founder, board member and main producer of Tochka.fi – russian-speaking lifestlyle media and event-agency based in Helsinki, and lot more.</p><p><b>Globe Art Point</b><br>The core mission of Globe Art Point is advocating cultural equity, diversity and inclusion in the arts and cultural sector in Finland. G.A.P also serves as an information centre and meeting point for artists, cultural workers and arts and cultural institutions in Finland. G.A.P.’s focus is on Finland-based professional artists, cultural workers and cultural entrepreneurs with diverse backgrounds being acknowledged and their untapped potential fully utilised. G.A.P, together with their stakeholders and collaborators, is dedicated to improving the existing structures and building a society free from cultural discrimination or any other form of oppression. Their goal is to create constructive and action-driven dialogues with the entire society, from local grassroots to the national level.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64307/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64582", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152439, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-17T10:14:03.646764Z", "last_modified_time": "2024-09-17T10:14:03.646779Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758078.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-17T10:14:03.634289Z", "last_modified_time": "2024-12-20T01:13:52.900464Z", "date_published": null, "start_time": "2024-10-23T08:00:00Z", "end_time": "2024-10-23T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.", "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.", "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4026993517E4ABE50F0D92A5AE72D582/Keskiviikon_lounasjamit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4026993517E4ABE50F0D92A5AE72D582/Jams_till_onsdagslunchen", "en": "http://www.kanneltalo.fi/en/events/event/4026993517E4ABE50F0D92A5AE72D582/Wednesday_lunch_jams" }, "name": { "fi": "Keskiviikon lounasjamit", "sv": "Jams till onsdagslunchen", "en": "Wednesday lunch jams" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>", "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>", "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64518", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152301, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-05T11:13:56.810854Z", "last_modified_time": "2024-09-05T11:13:56.810866Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749835.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152301/?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": "2024-09-05T11:13:56.793951Z", "last_modified_time": "2024-12-20T01:13:52.801325Z", "date_published": null, "start_time": "2024-10-23T07:00:00Z", "end_time": "2024-10-23T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8D97A3B58BEF250F840F405FBBF1EBCA/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/8D97A3B58BEF250F840F405FBBF1EBCA/Knattebion", "en": "http://www.annantalo.fi/en/events/event/8D97A3B58BEF250F840F405FBBF1EBCA/Toddler_cinema" }, "name": { "fi": "Naperokino", "sv": "Knattebion", "en": "Toddler cinema" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>", "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>", "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64696", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-23T09:14:46.013880Z", "last_modified_time": "2024-10-23T09:14:46.013898Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759296.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152858/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-23T09:14:45.962841Z", "last_modified_time": "2024-12-20T01:13:52.645971Z", "date_published": null, "start_time": "2024-10-23", "end_time": "2024-12-01", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Valon Aallot -teos juhlistaa Stoan 40-vuotista matkaa. Aallot kelluvat kevyesti ja kiertävät ilmassa vangiten muuttuvaa aikaa.", "sv": "Verket Valon aallot firar Stoas 40-åriga resa. Vågorna flyter mjukt, cirkulerar i luften och fångar upp tidens växlingar.", "en": "‘Valon Aallot’ celebrates Stoa’s 40-year journey. The waves gently float and spiral through the air, capturing the fluidity of time." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot", "sv": "http://www.stoa.fi/sv/evenemang/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot_Vagor_av_ljus_", "en": "http://www.stoa.fi/en/events/event/4E5A4BD2DD7A9256B88C24553BCD12E8/Deepa_Panchamia_Valon_aallot_" }, "name": { "fi": "Deepa Panchamia: Valon aallot – Stoa 40! Tekstiiliteos Stoan aulassa", "sv": "Deepa Panchamia: Valon aallot (Vågor av ljus) – Stoa 40! Textilverk i lobbyn till Stoa", "en": "Deepa Panchamia: Valon aallot – Stoa 40! Textile installation at Stoa lobby" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Valon Aallot -teos juhlistaa Stoan 40-vuotista matkaa. Aallot kelluvat kevyesti ja kiertävät ilmassa vangiten muuttuvaa aikaa.</p><p>Kääntyessään aallot paljastavat tasapainon hiljaisuuden ja liikkeen, edistymisen ja heijastuksen välillä – korostaen ajan jatkuvaa, alati muuttuvaa luonnetta. Yhdessä toisiinsa kietoutuvat aallot luovat eteerisen valon ja muodon tanssin, joka symboloi Stoan jatkuvaa matkaa.</p><p><b>Deepa Panchamia</b> on Lontoossa vuonna 1981 syntynyt ja nykyään Suomessa asuva tekstiilitaiteilija. Hän luo kangasveistoksia, installaatioita ja puettavaa taidetta. Hänen työnsä sulattaa geometrian omiin kangastekniikoihin ja matematiikkaan uusien muotojen ja muotojen tutkimiseksi.</p><p>Suomeen vuonna 2012 muuttaessaan hän on omaksunut suomalaisen maiseman vaikutteita ja sisällyttänyt sen luonnon kauneutta luomuksiinsa.</p><p>Hänen töitään on ollut esillä kansainvälisesti, mukaan lukien Premio Valcellina Award Italiassa, 7th Triennaal of Contemporary Textile Art Belgiassa, 100% Design Lontoossa, Cheongju International Craft Biennale Etelä-Koreassa, Revelations: International Fine Craft and Creation Biennaali Pariisi, Contextile – Contemporary Textile Art Biennaali Portugalissa ja Fiskars Village Art & Design Biennale, Suomi.</p>", "sv": "<p>Verket Valon aallot firar Stoas 40-åriga resa. Vågorna flyter mjukt, cirkulerar i luften och fångar upp tidens växlingar.</p><p>När vågorna vänder visar de en balans mellan stillhet och rörelse, framsteg och reflektion – vilket belyser tidens konstanta, ständigt föränderliga natur. De sammanflätade vågorna skapar en eterisk dans av ljus och form, som symboliserar Stoas ständiga resa.</p><p>Deepa Panchamia är en textilkonstnär som föddes i London 1981 och som för närvarande bor i Finland. Hon skapar skulpturer, installationer och konst som man kan klä på sig. I hennes arbete förenas geometri med hennes egen tygteknik och matematik för att utforska nya former.</p><p>Sedan hon flyttade till Finland år 2012 har hon tagit intryck av det finska landskapet och införlivat dess naturliga skönhet i sina skapelser.</p><p>Hennes verk har ställts ut internationellt, bland annat på Premio Valcellina Award i Italien, 7th Triennaal of Contemporary Textile Art i Belgien, 100% Design i London, Cheongju International Craft Biennale i Sydkorea, Revelations: International Fine Craft and Creation Biennale i Paris, Contextile – Contemporary Textile Art Biennale i Portugal och Fiskars Village Art & Design Biennale, Finland.</p>", "en": "<p>‘Valon Aallot’ celebrates Stoa’s 40-year journey. The waves gently float and spiral through the air, capturing the fluidity of time.</p><p>As they twist and turn, the waves reveal the balance between stillness and movement, progress and reflection—highlighting the continuous, ever-changing nature of time. Together, the intertwining waves create an ethereal dance of light and form, symbolizing Stoa’s ongoing journey.</p><p>Deepa Panchamia is a textile artist, born in London in 1981 and now living in Finland. She creates fabric sculptures, installations, and wearable art. Her work fuses geometry with her own fabric techniques and mathematics to explore new shapes and forms.</p><p>Since moving to Finland in 2012, she has embraced the influence of the Finnish landscape, incorporating its natural beauty into her creations.</p><p>Her work has been exhibited internationally, including at the Premio Valcellina Award in Italy, the 7th Triennial of Contemporary Textile Art in Belgium, 100% Design in London, the Cheongju International Craft Biennale in South Korea, Revelations: International Fine Craft and Creation Biennial in Paris, Contextile – Contemporary Textile Art Biennial in Portugal, and the Fiskars Village Art & Design Biennale, Finland.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64696/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64293", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151879, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T15:15:02.998543Z", "last_modified_time": "2024-07-25T15:15:02.998572Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745842.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151879/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T15:15:02.961432Z", "last_modified_time": "2024-12-20T01:13:52.437872Z", "date_published": null, "start_time": "2024-10-22T15:00:00Z", "end_time": "2024-10-22T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Savusaunan pimeydessä naiset jakavat sisimpiä salaisuuksiaan ja intiimejä kokemuksiaan, huuhtelevat pois kehonsa loukkuun jääneen häpeän ja saavat voimansa takaisin yhteisöllisyyden tunteen kautta.", "sv": "I rökbastuns mörker delar kvinnor med sig av sina innersta hemligheter och intima upplevelser, sköljer bort den skam som finns instängd i kroppen och återfår sin styrka genom en känsla av gemenskap.", "en": "In the darkness of the smoke sauna, women share their innermost secrets and intimate experiences, washing away the shame trapped in their bodies and regain their strength through a sense of community." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Savusaunasisaruus_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Savusaunasisaruus_Rokbastusysterskap_12_", "en": "http://www.malmitalo.fi/en/events/event/6BCDC1FD903250D2D64954BA82C49F33/Doc_Helios_Smoke_Sauna_Sisterhood_12_" }, "name": { "fi": "Doc Helios: Savusaunasisaruus (12) – Kino Helios", "sv": "Doc Helios: Savusaunasisaruus (Rökbastusysterskap) (12) – Kino Helios", "en": "Doc Helios: Smoke Sauna Sisterhood (12) – Kino Helios" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Savusaunan pimeydessä naiset jakavat sisimpiä salaisuuksiaan ja intiimejä kokemuksiaan, huuhtelevat pois kehonsa loukkuun jääneen häpeän ja saavat voimansa takaisin yhteisöllisyyden tunteen kautta.</p><p>Ohjaaja Anna Hints palkittiin Savusaunasisaruus-elokuvastaan Sundancen elokuvajuhlilla 2023 (Directing Award: World Cinema Documentary). Savusaunasisaruus oli Viron virallinen Oscar-ehdokas ja voitti vuoden parhaan dokumenttielokuvan European Film Awards -palkinnon.</p><p>Kesto 89 min<br>Ikäraja 12<br>Ensi-ilta 8.12.2023<br>Vapaa pääsy!</p><p>Doc Helios on Kino Helioksen uusi ilmaisnäytössarja, jossa nähdään tuoreimpia ja ajankohtaisimpia dokumentteja eri aiheista.</p>", "sv": "<p>I rökbastuns mörker delar kvinnor med sig av sina innersta hemligheter och intima upplevelser, sköljer bort den skam som finns instängd i kroppen och återfår sin styrka genom en känsla av gemenskap.</p><p>Regissören Anna Hints belönades för filmen Savusaunasisaruus på Sundance-filmfestivalen 2023 (Directing Award: World Cinema Documentary). Savusaunasisaruus var Estlands officiella Oscarsnominering och vann European Film Awards-priset för årets bästa dokumentärfilm.</p><p>Längd 89 min.<br>Åldersgräns 12 år<br>Premiär 8.12.2023<br>Fritt inträde!</p><p>Doc Helios är Kino Helios nya gratisvisningsserie, där vi får se de färskaste och mest aktuella dokumentärerna om olika ämnen.</p>", "en": "<p>In the darkness of the smoke sauna, women share their innermost secrets and intimate experiences, washing away the shame trapped in their bodies and regain their strength through a sense of community.</p><p>Director Anna Hints was awarded for her film, Smoke Sauna Sisterhood, at the Sundance Film Festival in 2023 (Directing Award: World Cinema Documentary). Smoke Sauna Sisters was the official Oscar nominee for Estonia and won the European Film Award for Best Documentary.</p><p>Duration: 89 mins.<br>Age limit 12<br>Premiere: 8 December 2023</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64293/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64300", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151909, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T07:14:27.480444Z", "last_modified_time": "2024-07-26T07:14:27.480459Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753200.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151909/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T07:14:27.448997Z", "last_modified_time": "2024-12-20T01:13:52.340286Z", "date_published": null, "start_time": "2024-10-21T15:00:00Z", "end_time": "2024-10-21T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien ohjelmistossa vuorossa on laulaja-kitaristi Bryn Jones.", "sv": "Börja veckan med fullt hålligång! Sångaren och gitarristen Bryn Jones står i tur på Juurilla-klubbarnas höstprogram.", "en": "Start your week with some catchy tunes! Singer-guitarist Bryn Jones is a part of this autumn’s At the Roots Club’s repertoire." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/91A13FDF6D32754AE25FB0C1CB36B035/Juurilla_Bryn_Jones", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/91A13FDF6D32754AE25FB0C1CB36B035/Vid_rotterna_Bryn_Jones", "en": "http://www.kanneltalo.fi/en/events/event/91A13FDF6D32754AE25FB0C1CB36B035/At_the_Roots_Club_Bryn_Jones" }, "name": { "fi": "Juurilla: Bryn Jones – Maksuttomat maanantait", "sv": "Vid rötterna: Bryn Jones – Kostnadsfria måndagar", "en": "At the Roots Club: Bryn Jones – Free Mondays" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien ohjelmistossa vuorossa on laulaja-kitaristi Bryn Jones.</p><p>Lontoon rock-piireistä Suomeen rantautunut laulaja-lauluntekijä Bryn Jones tunnetaan Los Bastardos Finlandeses -bändin nokkamiehenä. Yli kolmekymmentä vuotta musisoinut Jones on kiertänyt bändeineen mm. Aerosmithin ja Motörheadin kanssa.</p><p>Jonesin trubaduuriesiintymiset ovat kuuluja intensiivisyydestään ja rouheasta kitarasoundistaan. Illan keikalla kuullaan artistin soolotuotantoa ja musiikkia pitkän uran varrelta.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Börja veckan med fullt hålligång! Sångaren och gitarristen Bryn Jones står i tur på Juurilla-klubbarnas höstprogram.</p><p>Sångaren och låtskrivaren Bryn Jones som anlänt till Finland från Londons rockkretsar är känd som frontfigur i bandet Los Bastardos Finlandeses. Jones har musicerat i över trettio år och turnerat med band såsom Aerosmith och Motörhead.</p><p>Jones trubadurframträdanden är kända för sin intensitet och sitt grova gitarrsound. På kvällens spelning får vi höra artistens soloproduktion och musik från hans långa karriär.</p>", "en": "<p>Start your week with some catchy tunes! Singer-guitarist Bryn Jones is a part of this autumn’s At the Roots Club’s repertoire.</p><p>Bryn Jones, a singer-songwriter who landed in Finland from London’s rock scene, is known as the front man of Los Bastardos Finlandeses. Jones, who has been playing music for over thirty years, and his band, have gone on tour with bands like Aerosmith and Motörhead.</p><p>Jones' troubadour performances are famous for their intensity and rugged guitar sounds. This evening's gig will feature the artist's solo works and music from a long career.</p><p>Start your week with some catchy tunes! Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64300/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64245", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151812, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T13:13:17.502289Z", "last_modified_time": "2024-07-24T13:13:17.502305Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748952.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151812/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T13:13:17.475916Z", "last_modified_time": "2024-12-20T01:13:52.035504Z", "date_published": null, "start_time": "2024-10-07", "end_time": "2024-11-01", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.", "sv": "Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.", "en": "A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F322A2E20442B061B43E0665541B04C6/Vuotalosta_Villaan_taiteilijatalo_sateilee", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F322A2E20442B061B43E0665541B04C6/Fran_Nordhuset_till_Villan_konstnarshuset_skiner", "en": "http://www.vuotalo.fi/en/events/event/F322A2E20442B061B43E0665541B04C6/From_Vuotalo_to_Villa_the_artist_house_radiates" }, "name": { "fi": "Vuotalosta Villaan – taiteilijatalo säteilee", "sv": "Från Nordhuset till Villan – konstnärshuset skiner", "en": "From Vuotalo to Villa – the artist house radiates" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Kivenheiton päässä Vuotalosta, Aurinkolahdessa, sijaitsee Vuosaaren taiteilijatalo. Näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia.</p><p>Taiteilijatalossa on 52 asuntoa ja toista sataa asukasta. Eri alojen taiteilijoista suuri joukko on kuvataiteilijoita, jotka käyttävät mitä moninaisimpia tekniikoita ja materiaaleja taideteoksissaan. Taiteilijatalon vieressä oleva vanha huvila, Villa Lill Kallvik, on osa taloa.</p><p>Vuotalosta Villaan – taiteilijatalo säteilee -näyttely esittelee talon kuvataiteilijoiden viimeaikaisia teoksia Vuotalon galleriassa ja Villa Lill Kallvikissa. Tervetuloa näkemään ja kokemaan paikallisten tekijöiden kuvataiteen laaja kirjo!</p><p>Näyttelyn taiteilijat: <br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme (performanssi)</p><p>Villa Lill Kallvikin aukioloajat: ke–pe 12–18 ja la–su 11–17</p><p><b>Tule mukaan myös näyttelykävelyille ja koe näyttelyyn liittyvä performanssi!</b></p><p>Performanssi to 10.10. klo 19, lähtö Vuotalon aulasta.</p><p>Näyttelykävelyt perjantaisin<br>18.10. / to 24.10. / pe 1.11. klo 17–18, lähtö Vuotalon galleriasta.</p><p>Tapahtumakuvan tiedot:<br>Vasemmalla: Rosalia Janovic: Monimuotoisuus, Diversity Keskellä: Tiina Heiska: Japanese room, kuvaaja Jussi Tiainen Oikealla: Pekka Sassi: Green, abstrakti värikertomus (video)</p>", "sv": "<p>Ett stenkast från Nordhuset, i Solvik, ligger Nordsjö konstnärshus. Utställningen presenterar nya verk av husets bildkonstnärer.</p><p>Konstnärshuset har 52 lägenheter och ett drygt hundratal boende. En stort del av konstnärerna som representerar olika konstarter är bildkonstnärer, som använder en mängd olika tekniker och material i sina konstverk. Den gamla villan som ligger invid konstnärshuset, Villa Lill Kallvik, är en del av huset.</p><p>Utställningen Från Nordhuset till Villan – konstnärshuset skiner presenterar nya verk av husets bildkonstnärer i Nordhusets galleri och Villa Lill Kallvik. Välkommen att se och uppleva mångsidig bildkonst av lokala konstnärer!</p><p>Konstnärerna:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik öppettider: ons–fre 12–18 och lör–sön 11–17</p>", "en": "<p>A stone's throw away from Vuotalo, in Aurinkolahti, lies the Vuosaari Artist House. This exhibition showcases recent works by the house's visual artists.</p><p>The Artist House has 52 apartments and over 100 residents. A large group of the artists, who are from different fields, are visual artists, who use diverse techniques and materials in their artworks. The old villa next to the Artist House, Villa Lill Kallvik, is a part of it.</p><p>The From Vuotalo to Villa – Artist House Radiates exhibition showcases the recent works of the house's visual artists at Vuotalo Gallery and Villa Lill Kallvik. Come and experience the vast array of visual arts by local creators!</p><p>Artists:<br>Kai Rentola<br>Anna Wilhelmus<br>Tiina Karhu<br>Gunzi Holmström<br>Pekka Sassi<br>Petri Reinikainen<br>Sari Palosaari<br>Rozalia Janovic<br>Tiina Heiska<br>Hanneriina Moisseinen<br>Aino Favén<br>Willem Wilhelmus & Mamba Assefa & Hepa Halme</p><p>Villa Lill Kallvik opening hours: Wed–Fri 12–18 and Sat–Sun 11–17</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64245/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj554qpke", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-12-19T12:43:45.926072Z", "last_modified_time": "2024-12-19T12:43:45.926093Z", "date_published": "2024-12-19T12:00:40.687000Z", "start_time": "2025-01-02T09:00:00Z", "end_time": "2025-01-02T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Piilosta kirjastossa", "sv": "Kurragömma i biblioteket", "en": "Hide and seek in the library" }, "info_url": null, "name": { "fi": "Piilosta kirjastossa", "sv": "Kurragömma i biblioteket", "en": "Hide and seek in the library" }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Lastenmaa", "en": "Lastenmaa" }, "description": { "fi": "<p>Asiakkaidemme toiveesta järjestämme ohjatun piiloleikin</p><p>joululomalla. Tervetuloa mukaan. Kokoonnumme Lastenmaassa.</p>", "sv": "<p>På begäran av våra kunder ordnar vi en guidad kurragömmalek under julhelgen. Välkommen att följa med oss. Vi träffas vid Lastenmaa.</p>", "en": "<p>At the request of our customers, we organise a guided hide-and-seek game</p><p>during the Christmas holidays. Welcome to join us. We meet at Lastenmaa,</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj554qpke/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55oorkq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T10:38:12.064654Z", "last_modified_time": "2024-12-19T10:38:12.064678Z", "date_published": "2024-12-19T10:29:00Z", "start_time": "2025-01-21T16:00:00Z", "end_time": "2025-01-21T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Elokuvaohjaaja Raimo O Niemi kertoo kirjastaan Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja" }, "info_url": null, "name": { "fi": "Elokuvaohjaaja Raimo O Niemi vieraana kirjastossa" }, "provider": { "fi": "Raimo O Niemi" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kaija" }, "description": { "fi": "<p>Tule kuuntelemaan kun elokuvaohjaaja Raimo O Niemi kertoo kirjastaan Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja. </p><p>Tilaisuuteen on vapaa pääsy!</p><p>**</p><p><a href=\"https://helmet.finna.fi/Record/helmet.2582321?sid=4887534060\"><strong>Kirjeitä Moskovasta - Miten minusta tuli elokuvaohjaaja</strong></a></p><p>”Miten ja miksi olin päättänyt tulla elokuvaohjaajaksi? Miten parikymppinen suomalaispoika sopeutui ja oppi elämään Breznevin ajan sosialistisessa Neuvostoliitossa?”</p><p>Elokuvaohjaaja Raimo O Niemi etsii vastauksia näihin kysymyksiin kirjassaan Kirjeitä Moskovasta. Hän kertoo elämästään 1970-luvun Moskovassa ja opiskelustaan maailman vanhimmassa elokuvakoulussa. Ensimmäisenä suomalaisena elokuvaohjaaja Raimo O Niemi kävi rankan koulun pitkän kaavan kautta. Päiväkirjaa hän ei pitänyt, mutta lainaukset säilyneistä kirjeistä välittävät aikalaistunnelmia.</p><p>Nuori idealisti sopeutui ja oli pian ”nas tselovek, meikäläinen”, jonka seurassa ei tarvinnut varoa ja pelätä puheitaan. Liikkumista ja kuvauslupia hallinnoivan ”1. osaston” kanssa oli silti tavalla tai toisella tultava toimeen.</p><p>Suunnitelma vuoden kahden opiskelusta vaihtui kuudeksi. Hän oppi tuntemaan ja kokemaan neuvostotodellisuuden niin hyvässä kuin pahassa, koki onnistumisia, mutta myös pettymyksiä ja takaiskuja. Ohjaajaopintojen ja henkilökohtaisten muistojen lisäksi kirjassa kerrotaan tavallisten neuvostokansalaisten arkipäivästä.</p><p>Kirjan runsas kuvitus pohjautuu pääasiassa Raimo O Niemen kuva-arkistoon ja hänen valokuvanäyttelyihinsä ”Kuljen Moskovan katuja” ja ”Dziganovtsy”.</p><p>(Kirjan kuvaus: Kustantaja Musta taide)</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55oorkq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj55oorva", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-19T10:25:42.155132Z", "last_modified_time": "2024-12-19T10:28:39.746862Z", "date_published": null, "start_time": "2025-01-11T12:00:00Z", "end_time": "2025-01-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa WeCode platforming järjestämään IT-alan verkostoitumistapahtumaan 11.1. klo 14-17", "en": "Welcome to take in the WeCode Networking Event on 11th of January at 14-17 o clock." }, "info_url": null, "name": { "fi": "WeCode platforming järjestämä IT-alan verkostoitumistapahtuma", "en": "The WeCode Networking Event" }, "provider": { "fi": "WeCode platform", "en": "WeCode platform" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "description": { "fi": "<p>WeCode platforming järjestämän IT-alan verkostoitumistapahtuman tarkoituksena on saattaa yhteen IT-alalla jo työskentelevät ja IT-työpaikkoja etsivät henkilöt. Tapahtumassa voi tavata uusia ihmisiä, jakaa kokemuksia ja oppia toisiltaan rennossa ympäristössä. Etsitpä sitten neuvoja, tutkit työmahdollisuuksia tai haluat vain luoda yhteyksiä muihin alan ammattilaisiin, tämä tapahtuma on täydellinen paikka aloittaa. Kasvatetaan IT-yhteisöä yhdessä!</p><p>Tapahtuma on englanninkielinen. Tervetuloa!</p>", "en": "<p>The WeCode Networking Event is a friendly gathering designed to bring together people who are already working in the IT sector and those looking for IT jobs. It’s a great chance to meet new people, share experiences, and learn from each other in a relaxed environment. Whether you’re looking for advice, exploring job opportunities, or just want to connect with others in the industry, this event is a perfect place to start. Let’s grow our IT community together!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj55oorva/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uozu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:13.682550Z", "last_modified_time": "2024-12-19T10:24:27.635237Z", "date_published": null, "start_time": "2025-01-17T14:00:00Z", "end_time": "2025-01-17T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uozu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uovu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:14.684035Z", "last_modified_time": "2024-12-19T10:24:27.563270Z", "date_published": null, "start_time": "2025-01-31T14:00:00Z", "end_time": "2025-01-31T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uovu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uory", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:15.472753Z", "last_modified_time": "2024-12-19T10:24:27.482407Z", "date_published": null, "start_time": "2025-02-14T14:00:00Z", "end_time": "2025-02-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uory/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uon4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:16.374230Z", "last_modified_time": "2024-12-19T10:24:27.423684Z", "date_published": null, "start_time": "2025-02-28T14:00:00Z", "end_time": "2025-02-28T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uon4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uoja", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:17.058091Z", "last_modified_time": "2024-12-19T10:24:27.359922Z", "date_published": null, "start_time": "2025-03-14T14:00:00Z", "end_time": "2025-03-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7uoea", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:17.864188Z", "last_modified_time": "2024-12-19T10:24:27.264593Z", "date_published": null, "start_time": "2025-03-28T14:00:00Z", "end_time": "2025-03-28T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uoea/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7un7q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:18.590321Z", "last_modified_time": "2024-12-19T10:24:27.104618Z", "date_published": null, "start_time": "2025-04-11T13:00:00Z", "end_time": "2025-04-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un7q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjxf7un3a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7uo6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-28T12:26:19.552856Z", "last_modified_time": "2024-12-19T10:24:26.948592Z", "date_published": null, "start_time": "2025-04-25T13:00:00Z", "end_time": "2025-04-25T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Pajan laitteisiin ja mahdollisuuksiin", "sv": "Kom och upptäck verkstadens utrustning och möjligheter", "en": "Come and discover the equipment and possibilities of the Paja" }, "info_url": null, "name": { "fi": "Paja tutuksi kaikille!", "sv": "Lär känna Paja! ", "en": "Paja for everyone! " }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "description": { "fi": "<p>Tule tutustumaan Pajan laitteisiin ja luoviin käyttömahdollisuuksiin 17.1.2025 alkaen joka toinen perjantai klo 16 - 18.</p><p>Meiltä löytyy 3D-tulostimia, vinyylileikkuri ja lämpöprässi, saumureita ja ompelukoneita. Myös Big shot kuvioleikkuri on käytössäsi.</p><p>Ota oma puhdas vaate mukaan, jos haluat painaa jonkun kuvan tai tekstin.</p><p>Ohjausta tarjotaan suomeksi, englanniksi ja arabiaksi.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäck verkstadens utrustning och möjligheter med start den 17.1.2025, varannan fredag klockan 16-18.</p><p>Vi har 3D-skrivare, en vinylskärare, sömmerskor och symaskiner.</p><p>En Big shot mönsterskärare finns också till ditt förfogande.</p><p>Ta med egna rena kläder om du vill skriva ut en bild eller text.</p><p>Vägledning ges på engelska, finska och arabiska.</p>", "en": "<p>Come and discover the equipment and creative possibilities of the Paja starting on 17.1.2025, every other Friday from 4 to 6 p.m.</p><p>We have 3D printers, a vinyl cutter, sewing machines and overlock sewing machines.</p><p>A Big shot pattern cutter will also be at your disposal.</p><p>Bring your own clean clothes if you want to print an image or text.</p><p>Guidance will be provided in English, Finnish and Arabic.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxf7un3a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24658, "next": "