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&max_duration=3d&page=1035
{ "meta": { "count": 27577, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=1036", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=1034" }, "data": [ { "id": "helmet:271361", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2582, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:56.013746Z", "last_modified_time": "2024-02-06T13:38:19.975977Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-23T15:21:28.977841Z", "last_modified_time": "2023-12-01T09:21:20.259462Z", "date_published": "2023-06-09T07:01:00Z", "start_time": "2023-12-01T15:00:00Z", "end_time": "2023-12-01T17:45: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, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><ul> <li>1.12.2023</li> <li>5.1.2024</li> <li>2.2.2024</li> <li>1.3.2024</li> <li>5.4.2024</li> <li>3.5.2024</li> <li>7.6.2024</li> </ul>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Lasten perjantaileffa" }, "location_extra_info": { "fi": "Nuortentila" }, "short_description": { "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271361/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271372", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2582, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:56.013746Z", "last_modified_time": "2024-02-06T13:38:19.975977Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-23T15:21:12.061485Z", "last_modified_time": "2023-12-01T09:21:04.108917Z", "date_published": "2023-06-09T07:01:00Z", "start_time": "2023-11-24T15:00:00Z", "end_time": "2023-11-24T17:45: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, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><ul> <li>1.12.2023</li> <li>5.1.2024</li> <li>2.2.2024</li> <li>1.3.2024</li> <li>5.4.2024</li> <li>3.5.2024</li> <li>7.6.2024</li> </ul>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Lasten perjantaileffa" }, "location_extra_info": { "fi": "Nuortentila" }, "short_description": { "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271372/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262076", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8350/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2721, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:29.388917Z", "last_modified_time": "2024-02-06T13:38:57.868460Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6CDD1465-4D0E-4D6C-9B83-0697FFBC02DE}/74710", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2721/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T16:15:38.285784Z", "last_modified_time": "2023-12-01T08:22:21.430763Z", "date_published": "2023-06-21T16:06:00Z", "start_time": "2023-12-21T16:00:00Z", "end_time": "2023-12-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, "description": { "fi": "<p>Dekkarilukupiiri kokoontuu kerran kuukaudessa Maunulan kirjastossa. Jos olet intohimoinen dekkareiden lukija, tervetuloa mukaan!</p><p>Syksyn tapaamiskerrat:</p><p>To 24.8. Mick Herron: Luupäät<br> To 21.9. Tove Alsterdal: Juurakko<br> To 26.10. Fredrik Backman: Ahdistunutta porukkaa<br> To 23.11. Cara Hunter: Jäljettömiin<br> To 21.12. William Burroughs ja Jack Kerouac: Ja virtahevot kiehuivat altaissaan</p><p>Seuraavaksi tapaamiskerraksi luettavan kirjan voi lainata Maunulan kirjaston asiakaspalvelupisteestä kuukautta ennen lukupiiriä. Lukupiiriin mahtuu 12 osallistujaa.</p><p>Lisätiedot ja ilmoittautumiset: antti.lehtovirta(at)hel.fi.</p><p>Lämpimästi tervetuloa!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maunulan dekkarilukupiiri" }, "location_extra_info": { "fi": "Akvaario-monitoimitila" }, "short_description": { "fi": "Dekkarilukupiirissä luetaan jännityskirjallisuutta ja keskustellaan siitä kahvikupin äärellä." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262076/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270317", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10655/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10794/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5849, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-03T13:23:37.086426Z", "last_modified_time": "2023-11-03T13:23:37.086441Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C015B0ED-9AC9-4139-B44A-EF1A950B12AD}/107252", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5849/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-03T13:23:37.067746Z", "last_modified_time": "2023-12-01T08:22:14.564855Z", "date_published": "2023-11-03T10:53:00Z", "start_time": "2023-12-16T11:00:00Z", "end_time": "2023-12-16T13: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, "description": { "fi": "<p>Tervetuloa teippityöpajaan taiteilemaan kuusenkoristeita! Pajan vetää lastenkirjailija Vuokko Hurme, ja se sopii kaikille yli 3-vuotiaille.</p><p>Paja pidetään ryhmätila Otsossa kirjaston ensimmäisessä kerroksessa, ja sinne mahtuu mukaan 50 ensimmäistä.</p><p>Vapaa pääsy!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Jouluinen teippityöpaja" }, "location_extra_info": { "fi": "Ryhmätila Otso, 1. krs" }, "short_description": { "fi": "Tervetuloa teippityöpajaan taiteilemaan kuusenkoristeita! Pajan vetää lastenkirjailija Vuokko Hurme." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270317/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262078", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8350/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2721, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:29.388917Z", "last_modified_time": "2024-02-06T13:38:57.868460Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6CDD1465-4D0E-4D6C-9B83-0697FFBC02DE}/74710", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2721/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T16:04:06.642760Z", "last_modified_time": "2023-12-01T08:21:25.303721Z", "date_published": "2023-06-21T16:06:00Z", "start_time": "2023-11-23T16:00:00Z", "end_time": "2023-11-23T17: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, "description": { "fi": "<p>Dekkarilukupiiri kokoontuu kerran kuukaudessa Maunulan kirjastossa. Jos olet intohimoinen dekkareiden lukija, tervetuloa mukaan!</p><p>Syksyn tapaamiskerrat:</p><p>To 24.8. Mick Herron: Luupäät<br> To 21.9. Tove Alsterdal: Juurakko<br> To 26.10. Fredrik Backman: Ahdistunutta porukkaa<br> To 23.11. Cara Hunter: Jäljettömiin<br> To 21.12. William Burroughs ja Jack Kerouac: Ja virtahevot kiehuivat altaissaan</p><p>Seuraavaksi tapaamiskerraksi luettavan kirjan voi lainata Maunulan kirjaston asiakaspalvelupisteestä kuukautta ennen lukupiiriä. Lukupiiriin mahtuu 12 osallistujaa.</p><p>Lisätiedot ja ilmoittautumiset: antti.lehtovirta(at)hel.fi.</p><p>Lämpimästi tervetuloa!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maunulan dekkarilukupiiri" }, "location_extra_info": { "fi": "Akvaario-monitoimitila" }, "short_description": { "fi": "Dekkarilukupiirissä luetaan jännityskirjallisuutta ja keskustellaan siitä kahvikupin äärellä." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262078/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270675", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10791/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5987, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-13T14:24:34.017390Z", "last_modified_time": "2024-02-06T13:41:30.839509Z", "name": "", "url": "https://www.helmet.fi/download/noname/{866FA3B7-7EC2-4832-B91B-1F29FA999D20}/106052", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5987/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-11-13T14:24:33.991674Z", "last_modified_time": "2023-12-01T07:21:45.148393Z", "date_published": "2023-11-13T12:38:00Z", "start_time": "2023-12-07T11:00:00Z", "end_time": "2023-12-07T14: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, "description": { "fi": "<p>Etsitkö töitä? Haluatko perustaa yrityksen?</p><p>Startup Refugees on täällä sinua varten! Tuemme pakolaisia,<br> turvapaikanhakijoita ja maahanmuuttajia löytämään töitä ja<br> perustamaan yrityksen Suomessa. Palvelumme ovat vapaaehtoisia ja ilmaisia.</p><p>Tule tekemään kanssamme CV ja profiili työnhakua varten, etsimme sinulle sopivia työmahdollisuuksia! Nähdään to 7.12.2023 13-16:00 Itäkeskuksen kirjaston Kanerva-tilassa (Turunlinnantie 1, 00900 Helsinki).</p><p>OTA YHTEYTTÄ:<br> Mustafa<br> mustafa.aal-sahek@startuprefugees.com<br> +358 41 314 4654 (arabia, englanti & suomi)</p>", "en": "<p>Looking for a job? Want to start a business?</p><p>Startup Refugees is here for you! We support refugees, asylum seekers and immigrants to find work and start their own businesses in Finland. All our services are free of charge.</p><p>Come create a CV and a work profile with us and we can find you<br> suitable job opportunities. See you on Thursday 7.12. 2023 13-16.00 at the Itäkeskus library Kanerva Hall (Turunlinnantie 1, 00900 Helsinki).</p><p>CONTACT US FOR MORE INFORMATION:</p><p>Mustafa: mustafa.aal-sahek@startuprefugees.com<br> +358 41 314 4654 (Arabic, English & Finnish)</p><p>Oleksandr: oleksandr@startuprefugees.com<br> +358 44 240 8261 (Ukrainian, English & Russian)</p><p>Sara: sara@startuprefugees.com<br> +358 50 303 6788 (Dari/Farsi)</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Startup Refugeesin Match-klinikka", "en": "Match Clinic by Startup Refugees" }, "location_extra_info": null, "short_description": { "fi": "Etsitkö töitä? Haluatko perustaa yrityksen? Startup Refugees on täällä sinua varten!", "en": "Looking for a job? Want to start a business? Startup Refugees is here for you!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270675/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270406", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5893, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-07T15:22:25.897062Z", "last_modified_time": "2023-11-07T15:22:25.897079Z", "name": "", "url": "https://www.helmet.fi/download/noname/{69B0D683-BE37-4D25-B168-A05CC2BFA9CF}/107305", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5893/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-07T15:22:25.883488Z", "last_modified_time": "2023-11-30T16:21:12.245126Z", "date_published": "2023-11-07T08:18:00Z", "start_time": "2023-12-02T12:00:00Z", "end_time": "2023-12-02T12: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, "description": { "fi": "<p>Tapahtuma on valitettavasti jouduttu perumaan sairastapauksen vuoksi.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "TAPAHTUMA PERUTTU: Lastenmusiikkiyhtye Leimu" }, "location_extra_info": null, "short_description": { "fi": "Railakasta lastenmusiikkia kirjastossa - tule kuuntelemaan!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270406/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60632", "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: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:669/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4625, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:53.629902Z", "last_modified_time": "2023-09-07T14:27:53.629925Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730659.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4625/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:53.317745Z", "last_modified_time": "2023-11-30T15:13:31.841570Z", "date_published": null, "start_time": "2023-12-06T11:30:00Z", "end_time": "2023-12-06T15: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, "description": { "fi": "<p>Meistä on moneksi! Tule juhlistamaan Suomen itsenäisyyttä ja samalla meitä kaikkia yhteiseen juhlaan. Juhla-aterian ääressä nautitaan juhlaohjelmasta ja yhdessäolosta.</p><p>Voit tulla yksin tai ottaa mukaan kaverin, naapurin, tuttavan, serkun, perheen tai suvun – tilaisuus on maksuton ja kaikille avoin.</p><p>Lämminhenkinen tapahtuma järjestetään Kanneltalossa jo viidettä kertaa. Itsenäisyyspäivän ohjelman tuottaa Kanneltalo ja Pand – taiteilijat rauhan puolesta. Mukana tapahtumassa ovat myös D-asema Kannelmäki, Lännen aikuissosiaalityö, Kannelmäen kirjasto ja Kannelmäen nuorisotalo sekä Kaarela-Seura.</p><p><b><i>Ohjelma:</i><br>13.30–16.30 | Kaikille avoin juhlabuffet</b><br>• KARJALANPAISTI<br>sika, nauta, hirvi, porkkana, sipuli – m, g<br>• TOFUINEN PATA<br>tofu, porkkana, sipuli, tomaatti – v, g<br>• Keitinperunat – m, g <br>• Vihersalaatti – m,g<br>• Mustikkapiirakka – L<br>• Kahvi tai tee</p><p>Tarjoilun toteuttaa Pöytäliina Catering.</p><p><b>Klo 13.30–17 | Klovni Martan juhlavastaanottopiste</b><br>Klovni Martta (Taina Mäki-Iso) pistää pystyyn jälleen oman juhlavastaanottopisteensä itsenäisyyspäivän kunniaksi. Tällä kertaa hän lupaa käyttäytyä hyvin asiallisen pellemäisesti. Luvassa on myös sekä itsenäisyys- että itsepäisyysvinkkejä kaikille halukkaille. Juhlavastaanottopisteeseen ovat kaikki ikäluokat tervetulleita ja siellä voi piipahtaa yksin, kaverin tai perheen kanssa. Juhlaväen seassa Martta saattaa tarkistaa juhlamielesi. <br> <br><b>Klo 14–15 | Varjoteatteriesitys: YMMYRKÄISENÄ! ja varjoteatterityöpaja</b><br>Koko perheelle suunnattu esitys sukeltaa syvälle varjoteatterin maailmaan. Esityksen aikana päästään tutustumaan Kummalan perheeseen, joka rakastaa sirkusta ja yhdessä tarinointia. Esityksen jälkeen päästään koko perheen voimin kokeilemaan varjonukkien tekemistä ja elävöittämistä. Ohjaajana Elviira Davidow. Kanneltalon auditoriossa.</p><p><b>Klo 16.30–17.30 |Konserttisalin juhlaohjelma</b><br>Kaarela-seuran puheenjohtaja Jauri Varvikon juhlapuhe, vuoden kaarelalaisen palkitseminen, Snadin Juhlaorkesterin konsertti.</p><p>Snadin Juhlaorkesteri panostaa erityisesti perinteikkääseen, akustiseen sointiin. Orkesterin ohjelmisto pohjautuu vanhaan swingiin, latinalaisiin rytmeihin ja tyylikkään nostalgiseen rytmimusiikkiin. Tunnelmia luodaan kaihoisasta suomiromantiikasta aina hilpeämpiin ralleihin.<br> <br>Kim Rantala – haitari/kosketinsoittimet<br>Topi Karvonen – basso/kontrabasso<br>Esteban Ferro – rummut/lyömäsoittimet/laulu<br>Juki Välipakka – laulu/perkussiot<br>Juhani Tuulivaara – kitara<br>Aki Hauru – kapellimestari, perkussiot</p><p><i><b>Kahvilan stagen ohjelma:</i><br><b>Klo 13.30–14 | Iryna Gorkun-Silen (huilu) ja Marina Kramarenko (piano)</b><br>Ukrainalaisia sävelmiä sekä klassista ja kevyttä musiikkia.<br><b>Klo 14.20–15 | Mehrnoosh Zolfaghari and Sara Majidinejad</b><br>Iranilaisten naisten duo.<br><b>Klo 15.30–16 | Aakusti</b><br>Elektronista musiikkia afrikkalaisilla rytmeillä.</p><p><b><i>Työpajat:</i><br>Klo 14–17 | Käpykolon väkeä: Syysvieras</b><br>Kanneltalon gallerian työpajassa Käpykolon väkeä -kirjan tekijät kuvataiteilija Zagros Manuchar ja kirjailija Leena Parkkinen opastavat lapsia ja lapsenmielisiä miniatyyriesineiden tekoon. Kielet: suomi, englanti, kurdi.</p><p><b>Klo 14–17 | Kassi omakuvana</b><br>Kirjaston työpajassa pohditaan, voisiko kangaskassilla kertoa jotain itsestään? Tule suunnittelemaan, painamaan kangasväreillä ja muutoinkin koristamaan itsellesi kangaskassi, joka on vähän kuin omakuvasi. Kannetaan kaikki kassiamme ylpeänä! Ohjaajina Anne Rossi-Horto ja Chloé Mahy-Hulkko.<br> <br><b>Klo 14–17 | Unelmointityöpaja</b><br>Kutsumme kaikkia unelmoimaan kanssamme. Miltä sinun unelmasi näyttävät? Unelmista koostamme teoksen, joka ripustetaan D-asema Kannelmäen yhteisötilaa koristamaan. Ohjaamassa D-asema Kannelmäki.</p><p>Tapahtuman kesto: 3 t<br>Vapaa pääsy<br>Kahvila, aula, galleria ja auditorio</p>", "sv": "<p>Vi är ett mångsidigt folk! Kom och fira Finland och oss alla på vår gemensamma fest. Under festmåltiden njuts av festprogram och samvaro.</p><p>Du kan komma ensam eller ta med en vän, granne, bekant, kusin, familj eller släkt – evenemanget är gratis och öppet för alla.</p>", "en": "<p>We are many for all intents and purposes! Come and celebrate Finland and all of us in a joint festive event featuring an enjoyable programme and togetherness at a festive buffet table.</p><p>Come on your own or bring a friend, a neighbour, an acquaintance, a cousin, your family or extended family – the event is free of charge and open to everyone.</p><p>This warm-spirited event is being held at Kanneltalo for the fifth time now. The Independence Day programme is produced by Kanneltalo and PAND – Artists for Peace. The D-asema (D-station) Kannelmäki, Western Adult Social Work, Kannelmäki Library, Kannelmäki Youth Centre and Kaarela-Seura are also involved in the event.</p><p>Programme:<br>13:30–16:30 | Buffet open to all<br>• KARELIAN HOT POT<br>pork, beef, elk, carrot, onion – m, g (dairy-free, gluten-free)<br>• TOFU STEW<br>tofu, carrot, onion, tomato – v, g (vegetarian, gluten-free)<br>• Boiled potatoes – m, g (dairy-free, gluten-free)<br>• Green salad – m, g (dairy-free, gluten-free)<br>• Blueberry pie – L (lactose-free)<br>• Coffee or tea</p><p>The catering will be provided by Pöytäliina Catering.</p><p>13:30–17:00 | Clown Martta’s celebration reception area<br>Clown Martha (Taina Mäki-Iso) will set up her reception area again to celebrate Independence Day. This time, she promises to be very properly clownish. There will also be tips on being independent and stubborn for everyone interested. All ages are welcome! Feel free to stop by the reception area on your own, with friends or with your family. Martta might just check on your party spirit in the crowd.</p><p>14:00–15:00 | Shadow theatre performance: YMMYRKÄISENÄ! and a shadow theatre workshop<br>This performance for the whole family dives deep into the world of shadow theatre. During the performance, we will be introduced to the Kummala family, who love the circus and telling stories together. After the performance, your whole family can try making shadow puppets and bringing them to life. Directed by Elviira Davidow. In the Kanneltalo auditorium.</p><p>16:30–17:30 | Concert hall celebration programme<br>Keynote speech by Jauri Varvikko, Chair of the Kaarela Society, Kaarela resident of the year award ceremony, and a concert by Snadin Juhlaorkesteri (a professional orchestra).</p><p>Snadin Juhlaorkesteri focuses particularly on a traditional acoustic sound. The orchestra’s repertoire is based on old swing, Latin rhythms and music with elegant, nostalgic rhythms. The atmosphere will range from wistful Finnish romanticism to more light-hearted tunes.</p><p>Kim Rantala – accordion/keyboard<br>Topi Karvonen – bass/double bass<br>Esteban Ferro – drums/percussion/vocals<br>Juki Välipakka – vocals/percussion<br>Juhani Tuulivaara – guitar<br>Aki Hauru – conductor, percussion</p><p>Café stage programme:<br>13:30–14:00 | Iryna Gorkun-Silen (flute) and Marina Kramarenko (piano)<br>Ukrainian melodies and classical and light music.<br>14:20–15:00 | Mehrnoosh Zolfaghari and Sara Majidinejad<br>A duo of Iranian women.<br>15:30–16:00 | Aakusti<br>Electronic music with African rhythms.</p><p>Workshops:<br>14:00–17:00 | Käpykolon väkeä: Syysvieras (autumn guest)<br>In the Kanneltalo gallery workshop, the authors of the book Käpykolon väkeä, visual artist Zagros Manuchar and author Leena Parkkinen, will teach children and anyone else interested how to make miniatures. Languages: Finnish, English, and Kurdish.</p><p>14:00–17:00 | A bag as a self-portrait<br>The library workshop will hold a workshop where we consider whether a canvas bag can say something about its owner. Join us to design, print with fabric dyes and otherwise decorate your own canvas bag, which will be a bit like your self-portrait. Let’s all carry our bags with pride! Directed by Anne Rossi-Horto and Chloé Mahy-Hulkko.</p><p>14:00–17:00 | Daydreaming workshop<br>We invite everyone to daydream with us. What do your daydreams look like? We will compile a work of art from these daydreams, which will be displayed in the Kannelmäki community space in D-asema (D-station). Directed by Taru Tuomola and D-asema.</p><p>Duration of the event: 3 hours<br>Free admission<br>Café, lobby, gallery and auditorium</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/76CBFF19920FCDFF1B29B84AAC09AF4F/Kanneltalon_itsenaisyyspaivan_juhla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/76CBFF19920FCDFF1B29B84AAC09AF4F/Gamlasgardens_sjalvstandighetsdagsfest", "en": "http://www.kanneltalo.fi/en/events/event/76CBFF19920FCDFF1B29B84AAC09AF4F/Kanneltalo_s_Independence_Day_celebration" }, "name": { "fi": "Kanneltalon itsenäisyyspäivän juhla", "sv": "Gamlasgårdens självständighetsdagsfest", "en": "Kanneltalo’s Independence Day celebration" }, "location_extra_info": null, "short_description": { "fi": "Meistä on moneksi! Tule juhlistamaan Suomen itsenäisyyttä ja samalla meitä kaikkia yhteiseen juhlaan. Juhla-aterian ääressä nautitaan juhlaohjelmasta ja yhdessäolosta.", "sv": "Vi är ett mångsidigt folk! Kom och fira Finland och oss alla på vår gemensamma fest. Under festmåltiden njuts av festprogram och samvaro.", "en": "We are many for all intents and purposes! Come and celebrate Finland and all of us in a joint festive event featuring an enjoyable programme and togetherness at a festive buffet table." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60632/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:257263", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6390, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-30T14:20:27.400184Z", "last_modified_time": "2024-02-06T13:40:05.485224Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BE98324E-4536-47BE-A19E-CBE629D107D1}/107812", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6390/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T16:15:00.694310Z", "last_modified_time": "2023-11-30T14:22:01.465593Z", "date_published": "2023-03-21T11:25:00Z", "start_time": "2023-12-19T15:30:00Z", "end_time": "2023-12-19T17:45: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, "description": { "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>", "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Toastmasters - become a better speaker", "en": "Toastmasters - become a better speaker" }, "location_extra_info": { "fi": "Akseli-sali", "en": "Akseli-sali" }, "short_description": { "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.", "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257263/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:257260", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6390, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-30T14:20:27.400184Z", "last_modified_time": "2024-02-06T13:40:05.485224Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BE98324E-4536-47BE-A19E-CBE629D107D1}/107812", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6390/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T16:09:09.593591Z", "last_modified_time": "2023-11-30T14:21:33.117853Z", "date_published": "2023-03-21T11:25:00Z", "start_time": "2023-12-05T15:30:00Z", "end_time": "2023-12-05T17:45: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, "description": { "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>", "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Toastmasters - become a better speaker", "en": "Toastmasters - become a better speaker" }, "location_extra_info": { "fi": "Akseli-sali", "en": "Akseli-sali" }, "short_description": { "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.", "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257260/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271777", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2810, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:27.565448Z", "last_modified_time": "2024-02-06T13:38:05.274541Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D8BFE00A-0ED9-41F1-851D-4B02769C00AD}/102067", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2810/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-11-30T14:21:29.710923Z", "last_modified_time": "2023-11-30T14:21:29.846988Z", "date_published": "2023-04-24T16:30:00Z", "start_time": "2023-12-04T16:00:00Z", "end_time": "2023-12-04T17: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, "description": { "fi": "<p>Kiinnostaako 3D-tulostus, mutta et ole saanut tartuttua toimeen? Tervetuloa tutustumaan Tapanilan kirjaston 3D-tulostimeen ja tulostamisen alkeisiin yhdessä. Et tarvitse mitään ennakkotietoja aiheesta, utelias mieli riittää. Avoin opastus kirjaston 3D-tulostimen käyttöön joka kuun ensimmäisenä maanantaina klo 18-19.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Avoin 3D-opastus" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa tutustumaan Tapanilan kirjaston 3D-tulostimeen ja tulostamisen alkeisiin yhdessä joka kuun ensimmäisenä maanantaina." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271777/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271374", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6309, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-28T17:21:29.601495Z", "last_modified_time": "2023-11-28T17:21:29.601518Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E61B4C48-3D8A-4642-9059-74142598A72B}/107664", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6309/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-11-23T15:21:30.110195Z", "last_modified_time": "2023-11-30T14:21:27.346525Z", "date_published": "2023-11-23T13:14:00Z", "start_time": "2023-12-02T10:30:00Z", "end_time": "2023-12-02T14: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, "description": { "fi": "<p> Mitä teette lauantaina 2.12? Tule mukaan suomenruotsalaisen viittomakielen festivaaliin! </p><p> Missä? Kirjasto Oodi, Helsinki. Aika? 12:30-16.00 </p><p> Kenelle? Kaikille! Tarjoamme kaikenlaisia hauskoja ja opettavaisia ohjelmia kaikenikäisille, päiväkoti-ikäisistä senioreihin! Voit tulla yksin, kavereiden kanssa tai perheen kanssa. </p><p> <b>1. kerros</b> </p><p>12.30 Esittelypöydät</p><p> <strong> 3. kerros, Saarikoski-matto</strong> </p><p>13.00 Luentoja</p><p>14.15 Tauko</p><p>14.30 Elämäntarinoita</p><p>15.15 Tauko</p><p>15.25 Lavaesitykset</p><p>15.50 Festivaalin päätös</p><p> <strong> 3. kerros, lasten tapahtumatila ja parvi</strong> </p><p>Lasten ohjelma</p><p>12:30 Satutuokio</p><p>13:00 Lauluja Sandran kanssa</p><p>13.30 Askartelutuokio, kasvomaalausta, leikkipisteitä</p><p>14:30 Satutuokio</p><p>15.00 Leikkituokio</p><p>15:30 Lauluja Sandran kanssa</p><p> <strong>2. kerros, OP3</strong> </p><p>Viittomakielen tunti</p><p>12:30-13.00 Viikonpäivät, kuukaudet, sää</p><p>14.00-14.30 Värit, numerot ja arkipäivän viittomat</p><p> Tapahtuman tarkoitus on levittää ja lisätä tietoisuutta suomenruotsalaisesta viittomakielestä. Paikan päällä on mahdollisuus kysellä, oppia ja tutustua suomenruotsalaiseen viittomakieleen. </p><p> Tapahtuman kielet: suomenruotsalainen viittomakieli, suomalainen viittomakieli ja suomi. Lasten ohjelmassa myös ruotsi. </p><p> Sydämellisesti tervetuloa mukaan! </p><p>Tapahtuman järjestää Finlandssvenska teckenspråkiga r.f.</p>", "sv": "<p> Vad gör du lördag 2.12? Kom på Finlandssvensk teckenspråksfestival! </p><p> Var? Biblioteket Ode, i Helsingfors. Tid? 12:30-16 </p><p> För vem? Vem som helst! Det erbjuds olika roliga och lärorika program för alla åldrar, från daghemsålder till äldre personer! Du kan komma ensam, med kompisar, eller hela familjen. </p><p> <b>Första våningen</b> </p><p>12.30 Presentationsbord</p><p> <strong>3. våningen, Saarikoski-mattan</strong> </p><p>13.00 Föreläsningar</p><p>14.15 Paus</p><p>14.30 Livsberättelser</p><p>15.15 Paus</p><p>15.25 Scenföreställningar</p><p>15.50 Festivalsavslutning</p><p> <strong>3. våningen, evenemangsrummet och loftet</strong> </p><p>Barnprogram</p><p>12:30 Sagostund</p><p>13:00 Sång med Sandra</p><p>13.30 Pysselstund, ansiktsmålning, lekstationer</p><p>14:30 Sagostund</p><p>15.00 Lekstund</p><p>15:30 Sång med Sandra</p><p> <strong>2. våningen, OP3</strong> </p><p>Teckenspråkslektion</p><p>12:30-13.00 veckodagar, månader, väder</p><p>14.00-14.30 färger, nummer och vardagstecken</p><p> Evenemangets syfte är att sprid kunskap och öka medvetenhet om finlandssvenskt teckenspråk. På plats har du möjlighet att fråga, lära och ta del av finlandssvenskt teckenspråk. </p><p> Evenemangens språk: Finlandssvenskt teckenspråk, finskt teckenspråk och finska. Barnprogrammet är också på svenska </p><p> Hjärtligt välkomna med! </p><p>Festivalen arrangeras av föreningen Finlandssvenska teckenspråkiga r.f.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Suomenruotsalaisen viittomakielen festivaali", "sv": "Finlandssvensk teckenspråksfestival" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa suomenruotsalaisen viittomakielen festivaaliin 2.12.2023!", "sv": "Kom på Finlandssvensk teckenspråksfestival!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271374/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271130", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2670, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:29:10.752405Z", "last_modified_time": "2024-02-06T13:38:15.787865Z", "name": "", "url": "https://www.helmet.fi/download/noname/{4E6C9897-A323-46DF-9B7D-272403F91B1F}/98143", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2670/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-11-22T15:19:56.292688Z", "last_modified_time": "2023-11-30T14:21:22.048320Z", "date_published": "2023-11-22T13:40:00Z", "start_time": "2023-11-30T10:00:00Z", "end_time": "2023-11-30T13: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, "description": { "fi": "<h3>Torstaina 30.11. klo 12-15 aulassa</h3><p>Työnantajatreffeillä Sellon kirjastossa Leppävaarassa on työnantajana New Hairstore, joka etsii partureita, kampaajia ja kauneusalan ammattilaisia. Lisäksi yritys hakee uusia koulutettavia edellä mainittuihin työtehtäviin. Lisää aiheesta täältä: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fnewhairstore.fi%2Ftule-toihin%2F&data=05%7C01%7C%7C9639505c28b8487ecdf908dbeb528cc6%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638362512014959038%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=KjuuEgrvULkPuoh1YkaQlpfEX3ehGvdOSFm%2BhY%2FdCAc%3D&reserved=0\">https://newhairstore.fi/tule-toihin/</a></p><p>Lisää tapahtumasta myös Espoo kaupungin sivulta: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.espoo.fi%2Ffi%2Ftapahtumat%2Fespooevents%3Aagfufwf7cu&data=05%7C01%7C%7C9639505c28b8487ecdf908dbeb528cc6%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638362512014968451%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=DvZhVvNDQ8rXcsmisdvZf6FQEPgZeV8IVDNCIGlmn4k%3D&reserved=0\">https://www.espoo.fi/fi/tapahtumat/espooevents:agfufwf7cu</a></p><p>Tervetuloa!</p><p> <br> </p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU Työnantajatreffit" }, "location_extra_info": { "fi": "Lava" }, "short_description": { "fi": "Tule kuulemaan avoimista työpaikoista!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271130/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:257257", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6390, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-30T14:20:27.400184Z", "last_modified_time": "2024-02-06T13:40:05.485224Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BE98324E-4536-47BE-A19E-CBE629D107D1}/107812", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6390/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T16:02:29.502054Z", "last_modified_time": "2023-11-30T14:21:00.236300Z", "date_published": "2023-03-21T11:25:00Z", "start_time": "2023-11-21T15:30:00Z", "end_time": "2023-11-21T17:45: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, "description": { "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>", "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Toastmasters - become a better speaker", "en": "Toastmasters - become a better speaker" }, "location_extra_info": { "fi": "Akseli-sali", "en": "Akseli-sali" }, "short_description": { "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.", "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257257/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:257258", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6390, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-30T14:20:27.400184Z", "last_modified_time": "2024-02-06T13:40:05.485224Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BE98324E-4536-47BE-A19E-CBE629D107D1}/107812", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6390/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:55:57.979471Z", "last_modified_time": "2023-11-30T14:20:27.448843Z", "date_published": "2023-03-21T11:25:00Z", "start_time": "2023-11-07T15:30:00Z", "end_time": "2023-11-07T17:45: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, "description": { "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>", "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Toastmasters - become a better speaker", "en": "Toastmasters - become a better speaker" }, "location_extra_info": { "fi": "Akseli-sali", "en": "Akseli-sali" }, "short_description": { "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.", "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257258/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59938", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/", "sv": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/", "en": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/" }, "price": { "fi": "17,50 € / 33,50 €", "sv": "17,50 € / 33,50 €", "en": "17,50 € / 33,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4619, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:48.176631Z", "last_modified_time": "2023-09-07T14:27:48.176653Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731715.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4619/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:48.009425Z", "last_modified_time": "2023-11-30T13:13:52.206917Z", "date_published": null, "start_time": "2023-12-02T17: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, "description": { "fi": "<p>Koreografi Sonya Lindforsin ja työryhmän teos camouflage tarkastelee katsomista ja katsomisen politiikkaa.</p><p><i>Camouflage (eng): The use of any combination of materials, coloration or illumination for concealment, disguise, mimesis, simulation or falsification</i><br> <br>Teoksessa useasta päällekkäisestä kerroksesta rakentuu maasto, jossa asiat vuoroin paljastuvat ja peittyvät. Kirjavan pinnan alta hahmottuu spekulatiivinen (auto)fiktio, jossa Taiteilija paljastaa temppunsa. Kaikki ei kuitenkaan ole sitä, miltä se näyttää.<br> <br>Näyttämöllä on potentiaali paljastaa ja peittää, tehdä asioista näkyviä tai ylinäkyviä. Mutta miten tunnistaa se, mitä näemme? Mitä tapahtuu tunnistamisen hetkellä, jolloin kategorisoimme jonkin asian luokkaan ”nyky”, tai ”taide” tai ”Musta”?<br> <br>Teos scattailee esi-isien kanssa, sujauttaa sisään merkityksiä ja unelmoi oikeudesta läpinäkymättömyyteen.<br> <br><b>Sonya Lindfors</b> on helsinkiläinen koreografi ja <b>UrbanApa</b>-yhteisön taiteellinen johtaja. Töillään Lindfors pyrkii ravistelemaan alistavia valtarakenteita ja fasilitoimaan tiloja kollektiiviselle unelmoinnille.<br> <br>Kuuntele Sonya Lindforsin haastattelu Zodiak Presents podcastissa <u><a href=\"https://open.spotify.com/episode/6znzIHbzHkZepJqlNXqGjA?si=OlLjt2dTRfSuDltAtW-53w&nd=1\">täältä</a></u>.</p><p><b>Koreografia ja konsepti</b>: Sonya Lindfors<br> <br><b>Työryhmä</b>: Selma Kauppinen, Esete Sutinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Riikka Lakea, Tony Sikström, Erno Aaltonen, Jussi Matikainen, Sanna Levo, Sonya Lindfors<br> <br><b>Esiintyjät Stoassa</b>: Selma Kauppinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Sonya Lindfors<br><b>Prosessia ruokkineet</b>: Elisa Tuovila, Lydia Östberg Diakité, Pauliina Sjöberg, Zen Jefferson<br><b>Tuotantoassistentit</b>: Tuure Kaukua, Riikka Lakea<br><b>Residenssit</b>: Reykjavik Dance Festival / NREP ; MDT, Stockholm; Koneen Säätiö<br><b>Yhteistuotanto</b>: MDT, Stockholm<br><b>Tukijat</b>: Uudet Klassikot – rahasto, Taiteen edistämiskeskus, Svenska Kulturfonden, Pohjoismainen kulttuuripiste<br><b>Kuvat</b>: Tuukka Ervasti<br><b>Tuotanto: Zodiak</b>, Stoa, Sonya Lindfors, UrbanApa</p>", "sv": "<p>Koreograf Sonya Lindfors och arbetsgruppens verk camouflage studerar tittandet och tittandets politik.</p><p><b>Sonya Lindfors</b> är en koreograf från Helsingfors och konstnärliga ledare för kollektivet UrbanApa. Med sina verk försöker Lindfors skaka om undertryckande maktstrukturer och facilitera utrymmen för kollektivt drömmande.</p>", "en": "<p>camouflage, by choreographer Sonya Lindfors and working group, examines the act of looking and the politics of the gaze.</p><p><i>Camouflage (eng): The use of any combination of materials, coloration or illumination for concealment, disguise, mimesis, simulation or falsification</i></p><p>camouflage is a multilayered landscape where things are both revealed and covered. Under the variegated surface is a speculative (auto)fiction, where the artist reveals their trick. But not everything is what it looks like.<br> <br>The stage has the potentiality to reveal and obscure, make things invisible or hypervisible. But how do we recognize what we see. What happens in that moment of recognition when you categorize something as “contemporary”, as “art” or as “Black”?</p><p>The work scats with ancestors, slips in meanings and dreams of the right to opacity. <br> <br><b>Sonya Lindfors</b> is a Cameroonian-Finnish choreographer, artistic director, facilitator and educator. She received a MA in choreography from the University of the Arts Helsinki in 2013. In the core of her work is the practice of shaking and challenging existing power structures and empowering communities.<br> <br><b>Choreography and concept</b>: Sonya Lindfors\u2028<br> <br><b>Working group</b>: Selma Kauppinen, Selma Kauppinen, Maele Sabuni, Johanna Karlberg, Elisa Tuovila, Riikka Lakea, Tony Sikström, Erno Aaltonen, Jussi Matikainen, Sanna Levo, Sonya Lindfors<br> <br><b>Performers in Stoa</b>: Selma Kauppinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Sonya Lindfors<br> <br><b>Contributors to the process</b>: Lydia Östberg Diakité, Pauliina Sjöberg, Zen Jefferson<br><b>Production assistants</b>: Tuure Kaukua, Riikka Lakea<br><b>Residencies</b>: Reykjavik Dance Festival / NREP; MDT, Stockholm; Kone Foundation, Coproduction: MDT, Stockholm<br><b>Supported by</b>: Uudet Klassikot – rahasto, Arts Promotion Center, Finland, Svenska Kulturfonden, Nordic Culture Point<br><b>Pictures</b>: Tuukka Ervasti<br><b>Production</b>: Zodiak – Center for New Dance, Sonya Lindfors, UrbanApa</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6406191A052F458654EAD515FDEC6D18/Sonya_Lindfors_camouflage", "sv": "http://www.stoa.fi/sv/evenemang/event/6406191A052F458654EAD515FDEC6D18/Sonya_Lindfors_camouflage", "en": "http://www.stoa.fi/en/events/event/6406191A052F458654EAD515FDEC6D18/Sonya_Lindfors_camouflage" }, "name": { "fi": "Sonya Lindfors: camouflage", "sv": "Sonya Lindfors: camouflage", "en": "Sonya Lindfors: camouflage" }, "location_extra_info": null, "short_description": { "fi": "Koreografi Sonya Lindforsin ja työryhmän teos camouflage tarkastelee katsomista ja katsomisen politiikkaa.", "sv": "Koreograf Sonya Lindfors och arbetsgruppens verk camouflage studerar tittandet och tittandets politik.", "en": "camouflage, by choreographer Sonya Lindfors and working group, examines the act of looking and the politics of the gaze." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59938/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59937", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/", "sv": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/", "en": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/" }, "price": { "fi": "17,50 € / 33,50 €", "sv": "17,50 € / 33,50 €", "en": "17,50 € / 33,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4614, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:43.130033Z", "last_modified_time": "2023-09-07T14:27:43.130054Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731713.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4614/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:42.948415Z", "last_modified_time": "2023-11-30T13:13:51.682521Z", "date_published": null, "start_time": "2023-12-01T17: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, "description": { "fi": "<p>Koreografi Sonya Lindforsin ja työryhmän teos camouflage tarkastelee katsomista ja katsomisen politiikkaa.</p><p>pe 1.12. esityksen jälkeen taiteilijatapaaminen.</p><p><i>Camouflage (eng): The use of any combination of materials, coloration or illumination for concealment, disguise, mimesis, simulation or falsification</i><br> <br>Teoksessa useasta päällekkäisestä kerroksesta rakentuu maasto, jossa asiat vuoroin paljastuvat ja peittyvät. Kirjavan pinnan alta hahmottuu spekulatiivinen (auto)fiktio, jossa Taiteilija paljastaa temppunsa. Kaikki ei kuitenkaan ole sitä, miltä se näyttää.<br> <br>Näyttämöllä on potentiaali paljastaa ja peittää, tehdä asioista näkyviä tai ylinäkyviä. Mutta miten tunnistaa se, mitä näemme? Mitä tapahtuu tunnistamisen hetkellä, jolloin kategorisoimme jonkin asian luokkaan ”nyky”, tai ”taide” tai ”Musta”?<br> <br>Teos scattailee esi-isien kanssa, sujauttaa sisään merkityksiä ja unelmoi oikeudesta läpinäkymättömyyteen.<br> <br><b>Sonya Lindfors</b> on helsinkiläinen koreografi ja <b>UrbanApa</b>-yhteisön taiteellinen johtaja. Töillään Lindfors pyrkii ravistelemaan alistavia valtarakenteita ja fasilitoimaan tiloja kollektiiviselle unelmoinnille.<br> <br>Kuuntele Sonya Lindforsin haastattelu Zodiak Presents podcastissa <u><a href=\"https://open.spotify.com/episode/6znzIHbzHkZepJqlNXqGjA?si=OlLjt2dTRfSuDltAtW-53w&nd=1\">täältä</a></u>.</p><p><b>Koreografia ja konsepti</b>: Sonya Lindfors<br> <br><b>Työryhmä</b>: Selma Kauppinen, Esete Sutinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Riikka Lakea, Tony Sikström, Erno Aaltonen, Jussi Matikainen, Sanna Levo, Sonya Lindfors<br> <br><b>Esiintyjät Stoassa</b>: Selma Kauppinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Sonya Lindfors<br><b>Prosessia ruokkineet</b>: Elisa Tuovila, Lydia Östberg Diakité, Pauliina Sjöberg, Zen Jefferson<br><b>Tuotantoassistentit</b>: Tuure Kaukua, Riikka Lakea<br><b>Residenssit</b>: Reykjavik Dance Festival / NREP ; MDT, Stockholm; Koneen Säätiö<br><b>Yhteistuotanto</b>: MDT, Stockholm<br><b>Tukijat</b>: Uudet Klassikot – rahasto, Taiteen edistämiskeskus, Svenska Kulturfonden, Pohjoismainen kulttuuripiste<br><b>Kuvat</b>: Tuukka Ervasti<br><b>Tuotanto: Zodiak</b>, Stoa, Sonya Lindfors, UrbanApa</p>", "sv": "<p>Koreograf Sonya Lindfors och arbetsgruppens verk camouflage studerar tittandet och tittandets politik.</p><p><b>Sonya Lindfors</b> är en koreograf från Helsingfors och konstnärliga ledare för kollektivet UrbanApa. Med sina verk försöker Lindfors skaka om undertryckande maktstrukturer och facilitera utrymmen för kollektivt drömmande.</p>", "en": "<p>camouflage, by choreographer Sonya Lindfors and working group, examines the act of looking and the politics of the gaze.</p><p><i>Camouflage (eng): The use of any combination of materials, coloration or illumination for concealment, disguise, mimesis, simulation or falsification</i></p><p>camouflage is a multilayered landscape where things are both revealed and covered. Under the variegated surface is a speculative (auto)fiction, where the artist reveals their trick. But not everything is what it looks like.<br> <br>The stage has the potentiality to reveal and obscure, make things invisible or hypervisible. But how do we recognize what we see. What happens in that moment of recognition when you categorize something as “contemporary”, as “art” or as “Black”?</p><p>The work scats with ancestors, slips in meanings and dreams of the right to opacity. <br> <br><b>Sonya Lindfors</b> is a Cameroonian-Finnish choreographer, artistic director, facilitator and educator. She received a MA in choreography from the University of the Arts Helsinki in 2013. In the core of her work is the practice of shaking and challenging existing power structures and empowering communities.<br> <br><b>Choreography and concept</b>: Sonya Lindfors\u2028<br> <br><b>Working group</b>: Selma Kauppinen, Selma Kauppinen, Maele Sabuni, Johanna Karlberg, Elisa Tuovila, Riikka Lakea, Tony Sikström, Erno Aaltonen, Jussi Matikainen, Sanna Levo, Sonya Lindfors<br> <br><b>Performers in Stoa</b>: Selma Kauppinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Sonya Lindfors<br> <br><b>Contributors to the process</b>: Lydia Östberg Diakité, Pauliina Sjöberg, Zen Jefferson<br><b>Production assistants</b>: Tuure Kaukua, Riikka Lakea<br><b>Residencies</b>: Reykjavik Dance Festival / NREP; MDT, Stockholm; Kone Foundation, Coproduction: MDT, Stockholm<br><b>Supported by</b>: Uudet Klassikot – rahasto, Arts Promotion Center, Finland, Svenska Kulturfonden, Nordic Culture Point<br><b>Pictures</b>: Tuukka Ervasti<br><b>Production</b>: Zodiak – Center for New Dance, Sonya Lindfors, UrbanApa</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5A2ACAA3783BE07F05EE6BC1D227606D/Sonya_Lindfors_camouflage", "sv": "http://www.stoa.fi/sv/evenemang/event/5A2ACAA3783BE07F05EE6BC1D227606D/Sonya_Lindfors_camouflage", "en": "http://www.stoa.fi/en/events/event/5A2ACAA3783BE07F05EE6BC1D227606D/Sonya_Lindfors_camouflage" }, "name": { "fi": "Sonya Lindfors: camouflage", "sv": "Sonya Lindfors: camouflage", "en": "Sonya Lindfors: camouflage" }, "location_extra_info": null, "short_description": { "fi": "Koreografi Sonya Lindforsin ja työryhmän teos camouflage tarkastelee katsomista ja katsomisen politiikkaa.", "sv": "Koreograf Sonya Lindfors och arbetsgruppens verk camouflage studerar tittandet och tittandets politik.", "en": "camouflage, by choreographer Sonya Lindfors and working group, examines the act of looking and the politics of the gaze." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59937/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59936", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/", "sv": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/", "en": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/" }, "price": { "fi": "17,50 € / 33,50 €", "sv": "17,50 € / 33,50 €", "en": "17,50 € / 33,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4610, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:38.529864Z", "last_modified_time": "2023-09-07T14:27:38.529882Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731712.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4610/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:38.369001Z", "last_modified_time": "2023-11-30T13:13:51.259652Z", "date_published": null, "start_time": "2023-11-30T17: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, "description": { "fi": "<p>Koreografi Sonya Lindforsin ja työryhmän teos camouflage tarkastelee katsomista ja katsomisen politiikkaa.</p><p><i>Camouflage (eng): The use of any combination of materials, coloration or illumination for concealment, disguise, mimesis, simulation or falsification</i><br> <br>Teoksessa useasta päällekkäisestä kerroksesta rakentuu maasto, jossa asiat vuoroin paljastuvat ja peittyvät. Kirjavan pinnan alta hahmottuu spekulatiivinen (auto)fiktio, jossa Taiteilija paljastaa temppunsa. Kaikki ei kuitenkaan ole sitä, miltä se näyttää.<br> <br>Näyttämöllä on potentiaali paljastaa ja peittää, tehdä asioista näkyviä tai ylinäkyviä. Mutta miten tunnistaa se, mitä näemme? Mitä tapahtuu tunnistamisen hetkellä, jolloin kategorisoimme jonkin asian luokkaan ”nyky”, tai ”taide” tai ”Musta”?<br> <br>Teos scattailee esi-isien kanssa, sujauttaa sisään merkityksiä ja unelmoi oikeudesta läpinäkymättömyyteen.<br> <br><b>Sonya Lindfors</b> on helsinkiläinen koreografi ja <b>UrbanApa</b>-yhteisön taiteellinen johtaja. Töillään Lindfors pyrkii ravistelemaan alistavia valtarakenteita ja fasilitoimaan tiloja kollektiiviselle unelmoinnille.<br> <br>Kuuntele Sonya Lindforsin haastattelu Zodiak Presents podcastissa <u><a href=\"https://open.spotify.com/episode/6znzIHbzHkZepJqlNXqGjA?si=OlLjt2dTRfSuDltAtW-53w&nd=1\">täältä</a></u>.</p><p><b>Koreografia ja konsepti</b>: Sonya Lindfors<br> <br><b>Työryhmä</b>: Selma Kauppinen, Esete Sutinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Riikka Lakea, Tony Sikström, Erno Aaltonen, Jussi Matikainen, Sanna Levo, Sonya Lindfors<br> <br><b>Esiintyjät Stoassa</b>: Selma Kauppinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Sonya Lindfors<br><b>Prosessia ruokkineet</b>: Elisa Tuovila, Lydia Östberg Diakité, Pauliina Sjöberg, Zen Jefferson<br><b>Tuotantoassistentit</b>: Tuure Kaukua, Riikka Lakea<br><b>Residenssit</b>: Reykjavik Dance Festival / NREP ; MDT, Stockholm; Koneen Säätiö<br><b>Yhteistuotanto</b>: MDT, Stockholm<br><b>Tukijat</b>: Uudet Klassikot – rahasto, Taiteen edistämiskeskus, Svenska Kulturfonden, Pohjoismainen kulttuuripiste<br><b>Kuvat</b>: Tuukka Ervasti<br><b>Tuotanto: Zodiak</b>, Stoa, Sonya Lindfors, UrbanApa</p>", "sv": "<p>Koreograf Sonya Lindfors och arbetsgruppens verk camouflage studerar tittandet och tittandets politik.</p><p><b>Sonya Lindfors</b> är en koreograf från Helsingfors och konstnärliga ledare för kollektivet UrbanApa. Med sina verk försöker Lindfors skaka om undertryckande maktstrukturer och facilitera utrymmen för kollektivt drömmande.</p>", "en": "<p>camouflage, by choreographer Sonya Lindfors and working group, examines the act of looking and the politics of the gaze.</p><p><i>Camouflage (eng): The use of any combination of materials, coloration or illumination for concealment, disguise, mimesis, simulation or falsification</i></p><p>camouflage is a multilayered landscape where things are both revealed and covered. Under the variegated surface is a speculative (auto)fiction, where the artist reveals their trick. But not everything is what it looks like.<br> <br>The stage has the potentiality to reveal and obscure, make things invisible or hypervisible. But how do we recognize what we see. What happens in that moment of recognition when you categorize something as “contemporary”, as “art” or as “Black”?</p><p>The work scats with ancestors, slips in meanings and dreams of the right to opacity. <br> <br><b>Sonya Lindfors</b> is a Cameroonian-Finnish choreographer, artistic director, facilitator and educator. She received a MA in choreography from the University of the Arts Helsinki in 2013. In the core of her work is the practice of shaking and challenging existing power structures and empowering communities.<br> <br><b>Choreography and concept</b>: Sonya Lindfors\u2028<br> <br><b>Working group</b>: Selma Kauppinen, Selma Kauppinen, Maele Sabuni, Johanna Karlberg, Elisa Tuovila, Riikka Lakea, Tony Sikström, Erno Aaltonen, Jussi Matikainen, Sanna Levo, Sonya Lindfors<br> <br><b>Performers in Stoa</b>: Selma Kauppinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Sonya Lindfors<br> <br><b>Contributors to the process</b>: Lydia Östberg Diakité, Pauliina Sjöberg, Zen Jefferson<br><b>Production assistants</b>: Tuure Kaukua, Riikka Lakea<br><b>Residencies</b>: Reykjavik Dance Festival / NREP; MDT, Stockholm; Kone Foundation, Coproduction: MDT, Stockholm<br><b>Supported by</b>: Uudet Klassikot – rahasto, Arts Promotion Center, Finland, Svenska Kulturfonden, Nordic Culture Point<br><b>Pictures</b>: Tuukka Ervasti<br><b>Production</b>: Zodiak – Center for New Dance, Sonya Lindfors, UrbanApa</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/0F42035C9BF765438E51304E40C1C155/Sonya_Lindfors_camouflage", "sv": "http://www.stoa.fi/sv/evenemang/event/0F42035C9BF765438E51304E40C1C155/Sonya_Lindfors_camouflage", "en": "http://www.stoa.fi/en/events/event/0F42035C9BF765438E51304E40C1C155/Sonya_Lindfors_camouflage" }, "name": { "fi": "Sonya Lindfors: camouflage", "sv": "Sonya Lindfors: camouflage", "en": "Sonya Lindfors: camouflage" }, "location_extra_info": null, "short_description": { "fi": "Koreografi Sonya Lindforsin ja työryhmän teos camouflage tarkastelee katsomista ja katsomisen politiikkaa.", "sv": "Koreograf Sonya Lindfors och arbetsgruppens verk camouflage studerar tittandet och tittandets politik.", "en": "camouflage, by choreographer Sonya Lindfors and working group, examines the act of looking and the politics of the gaze." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59936/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59935", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/", "sv": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/", "en": "https://www.lippu.fi/artist/sonya-lindfors/sonya-lindfors-tyoeryhmae-camouflage-2657759/" }, "price": { "fi": "17,50 € / 33,50 €", "sv": "17,50 € / 33,50 €", "en": "17,50 € / 33,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4606, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:34.034602Z", "last_modified_time": "2023-09-07T14:27:34.034624Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731708.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4606/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:33.880451Z", "last_modified_time": "2023-11-30T13:13:50.995885Z", "date_published": null, "start_time": "2023-11-29T17: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, "description": { "fi": "<p>Koreografi Sonya Lindforsin ja työryhmän teos camouflage tarkastelee katsomista ja katsomisen politiikkaa.</p><p><i>Camouflage (eng): The use of any combination of materials, coloration or illumination for concealment, disguise, mimesis, simulation or falsification</i><br> <br>Teoksessa useasta päällekkäisestä kerroksesta rakentuu maasto, jossa asiat vuoroin paljastuvat ja peittyvät. Kirjavan pinnan alta hahmottuu spekulatiivinen (auto)fiktio, jossa Taiteilija paljastaa temppunsa. Kaikki ei kuitenkaan ole sitä, miltä se näyttää.<br> <br>Näyttämöllä on potentiaali paljastaa ja peittää, tehdä asioista näkyviä tai ylinäkyviä. Mutta miten tunnistaa se, mitä näemme? Mitä tapahtuu tunnistamisen hetkellä, jolloin kategorisoimme jonkin asian luokkaan ”nyky”, tai ”taide” tai ”Musta”?<br> <br>Teos scattailee esi-isien kanssa, sujauttaa sisään merkityksiä ja unelmoi oikeudesta läpinäkymättömyyteen.<br> <br><b>Sonya Lindfors</b> on helsinkiläinen koreografi ja <b>UrbanApa</b>-yhteisön taiteellinen johtaja. Töillään Lindfors pyrkii ravistelemaan alistavia valtarakenteita ja fasilitoimaan tiloja kollektiiviselle unelmoinnille.<br> <br>Kuuntele Sonya Lindforsin haastattelu Zodiak Presents podcastissa <u><a href=\"https://open.spotify.com/episode/6znzIHbzHkZepJqlNXqGjA?si=OlLjt2dTRfSuDltAtW-53w&nd=1\">täältä</a></u>.</p><p><b>Koreografia ja konsepti</b>: Sonya Lindfors<br> <br><b>Työryhmä</b>: Selma Kauppinen, Esete Sutinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Riikka Lakea, Tony Sikström, Erno Aaltonen, Jussi Matikainen, Sanna Levo, Sonya Lindfors<br> <br><b>Esiintyjät Stoassa</b>: Selma Kauppinen, Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Sonya Lindfors<br><b>Prosessia ruokkineet</b>: Elisa Tuovila, Lydia Östberg Diakité, Pauliina Sjöberg, Zen Jefferson<br><b>Tuotantoassistentit</b>: Tuure Kaukua, Riikka Lakea<br><b>Residenssit</b>: Reykjavik Dance Festival / NREP ; MDT, Stockholm; Koneen Säätiö<br><b>Yhteistuotanto</b>: MDT, Stockholm<br><b>Tukijat</b>: Uudet Klassikot – rahasto, Taiteen edistämiskeskus, Svenska Kulturfonden, Pohjoismainen kulttuuripiste<br><b>Kuvat</b>: Tuukka Ervasti<br><b>Tuotanto: Zodiak</b>, Stoa, Sonya Lindfors, UrbanApa</p>", "sv": "<p>Koreograf Sonya Lindfors och arbetsgruppens verk camouflage studerar tittandet och tittandets politik.</p><p><b>Sonya Lindfors</b> är en koreograf från Helsingfors och konstnärliga ledare för kollektivet UrbanApa. Med sina verk försöker Lindfors skaka om undertryckande maktstrukturer och facilitera utrymmen för kollektivt drömmande.</p>", "en": "<p>camouflage, by choreographer Sonya Lindfors and working group, examines the act of looking and the politics of the gaze.</p><p><i>Camouflage (eng): The use of any combination of materials, coloration or illumination for concealment, disguise, mimesis, simulation or falsification</i></p><p>camouflage is a multilayered landscape where things are both revealed and covered. Under the variegated surface is a speculative (auto)fiction, where the artist reveals their trick. But not everything is what it looks like.<br> <br>The stage has the potentiality to reveal and obscure, make things invisible or hypervisible. But how do we recognize what we see. What happens in that moment of recognition when you categorize something as “contemporary”, as “art” or as “Black”?</p><p>The work scats with ancestors, slips in meanings and dreams of the right to opacity. <br> <br><b>Sonya Lindfors</b> is a Cameroonian-Finnish choreographer, artistic director, facilitator and educator. She received a MA in choreography from the University of the Arts Helsinki in 2013. In the core of her work is the practice of shaking and challenging existing power structures and empowering communities.<br> <br><b>Choreography and concept</b>: Sonya Lindfors\u2028<br> <br><b>Working group</b>: Selma Kauppinen, Maele Sabuni, Johanna Karlberg, Elisa Tuovila, Riikka Lakea, Tony Sikström, Erno Aaltonen, Jussi Matikainen, Sanna Levo, Sonya Lindfors<br> <br><b>Performers in Stoa</b>: Selma Kauppinen,Maele Sabuni, Elisa Tuovila, Johanna Karlberg, Sonya Lindfors<br> <br><b>Contributors to the process</b>: Lydia Östberg Diakité, Pauliina Sjöberg, Zen Jefferson<br><b>Production assistants</b>: Tuure Kaukua, Riikka Lakea<br><b>Residencies</b>: Reykjavik Dance Festival / NREP; MDT, Stockholm; Kone Foundation, Coproduction: MDT, Stockholm<br><b>Supported by</b>: Uudet Klassikot – rahasto, Arts Promotion Center, Finland, Svenska Kulturfonden, Nordic Culture Point<br><b>Pictures</b>: Tuukka Ervasti<br><b>Production</b>: Zodiak – Center for New Dance, Sonya Lindfors, UrbanApa</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/59261175963A70645627D35A8CE3ACDB/Sonya_Lindfors_camouflage", "sv": "http://www.stoa.fi/sv/evenemang/event/59261175963A70645627D35A8CE3ACDB/Sonya_Lindfors_camouflage", "en": "http://www.stoa.fi/en/events/event/59261175963A70645627D35A8CE3ACDB/Sonya_Lindfors_camouflage" }, "name": { "fi": "Sonya Lindfors: camouflage", "sv": "Sonya Lindfors: camouflage", "en": "Sonya Lindfors: camouflage" }, "location_extra_info": null, "short_description": { "fi": "Koreografi Sonya Lindforsin ja työryhmän teos camouflage tarkastelee katsomista ja katsomisen politiikkaa.", "sv": "Koreograf Sonya Lindfors och arbetsgruppens verk camouflage studerar tittandet och tittandets politik.", "en": "camouflage, by choreographer Sonya Lindfors and working group, examines the act of looking and the politics of the gaze." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59935/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271756", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6378, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-30T12:21:50.099454Z", "last_modified_time": "2023-11-30T12:21:50.099478Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D36E9FA1-2195-4BA2-8B91-EC26585B5C78}/107806", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6378/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-30T12:21:50.073887Z", "last_modified_time": "2023-11-30T12:21:50.181654Z", "date_published": "2023-11-30T10:30:00Z", "start_time": "2023-12-18T08:00:00Z", "end_time": "2023-12-18T08: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, "description": { "fi": "<p>Tervetuloa kuuntelemaan jouluista satua kaikille avoimeen joulusatutuokioon Hakunilan kirjastoon maanantaina 18.12. klo 10-10.30.</p><p>Ei ennakkoilmoittautumista.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Joulusatutuokio" }, "location_extra_info": null, "short_description": { "fi": "Tule kuuntelemaan jouluista satua Hakunilan kirjaston avoimeen joulusatutuokioon maanantaina 18.12. klo 10-10.30." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271756/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }