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 ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
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&page=1146
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1147", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1145" }, "data": [ { "id": "kulke:60611", "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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/", "sv": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/", "en": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/" }, "description": null, "price": { "fi": "19,50 €", "sv": "19,50 €", "en": "19,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4594, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:21.625907Z", "last_modified_time": "2023-09-07T14:27:21.625928Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731919.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4594/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:20.659068Z", "last_modified_time": "2023-11-14T06:13:44.553751Z", "date_published": null, "start_time": "2023-11-25T13: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F00EDE214D29825EB383D82C0B25CE78/Camille_Auer_Ruff_Knowledge", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F00EDE214D29825EB383D82C0B25CE78/Camille_Auer_Ruff_Knowledge", "en": "http://www.kanneltalo.fi/en/events/event/F00EDE214D29825EB383D82C0B25CE78/Camille_Auer_Ruff_Knowledge" }, "description": { "fi": "<p>Ruff Knowledge on esitys suokukoista sekä sukupuolen ja seksuaalisuuden moninaisuudesta luonnossa.</p><p>Homoseksuaalinen käytös ja sukupuolen moninaisuus ovat luonnossa yleisiä ilmiöitä, jotka eivät saa lainkaan näkyvyyttä luontomedioissa. Suokukko (Calidris Pugnax, engl. Ruff) on lajina kenties moninaisin luonnonvarainen selkärankainen. Soidinaikaan koiraspukuiset linnut ovat kaikki keskenään eri näköisiä. Sen lisäksi osa niin kutsutuista koiraista näyttää niin kutsutuilta naarailta. Kaikki erilaiset suokukot harrastavat seksiä keskenään. Siitä huolimatta linnut yleisesti jaetaan kahteen sukupuoleen, ja niiden käyttäytymisen motiiviksi oletetaan heteroseksuaalinen lisääntyminen.</p><p>Ihmisillä on luontoa havainnoidessa taipumus tehdä kehäpäätelmä: luontohavaintoja tulkitaan oman arvomaailman kautta, ja tätä arvolatautunutta versiota luonnosta taas käytetään omien arvojen perustelemiseen \"luonnollisina\".</p><p>Ruff Knowledge kysyy, miten tiedämme linnuista? Voimmeko tietää jotain siitä, millaista on olla lintu? Muuttaisiko se tieto suhdettamme lintuihin ja maailmaan? Mitä ihmisessä tapahtuu lintuja tarkkaillessa? Entä linnuissa?</p><p>Teksti, video, ääni, esiintyminen: Camille Auer<br>Dramaturgi: Emil Santtu Uuttu<br>Esiintymisasu: Johanna Porola<br>Kuvausassistentti: Nea Alasaari<br>Taiteellinen dialogi: Teo Ala-Ruona<br>Lintudialogi: Elliot Lundegård ja Helinä Ääri<br>Rahoitus: Suomen kulttuurirahasto, Taiteen edistämiskeskus<br>Tuotanto: Baltic Circle, Kanneltalo ja Camille Auer<br>Residenssit: Mad House, Pro Artibus, Ars Bioarctica<br>Kiitos: Turun museokeskus, Minna ja Seppo</p><p>Kesto: 80 min, ei väliaikaa<br>Kieli: englanti</p>", "sv": "<p>Ruff Knowledge är en föreställning om brushanar och om könsmångfalden och den sexuella mångfalden i naturen.</p><p>Homosexuellt beteende och en mångfald av kön är vanliga fenomen i naturen som inte får någon synlighet alls i naturmedia. Brushanen (Calidris Pugnax, eng. Ruff) är den kanske mest mångsidiga arten bland vilda ryggradsdjur. Under parningstiden ser alla hanar i praktdräkt olika ut. Dessutom ser en del av de så kallade hanarna ut som så kallade honor. Alla de olika brushanarna har sex med varandra. Trots det delas fåglarna vanligtvis in i två kön och man utgår från antagandet om att motivet bakom deras beteende är heterosexuell fortplantning.</p><p>När människan observerar naturen är vi benägna att använda cirkelresonemang: vi tolkar naturobservationer genom våra egna värderingar och använder sedan denna värdeladdade version av naturen för att motivera de egna värderingarna som ”naturliga”.</p><p>Ruff Knowledge frågar vad vi vet om fåglar. Kan vi veta något om hur det är att vara fågel? Skulle kunskaper om detta på något sätt ändra vår relation till fåglar och världen? Vad sker hos människan när vi studerar fåglar? Eller hos fåglarna?</p>", "en": "<p>‘Ruff Knowledge’ is a presentation about ruffs and the diversity of gender and sexuality in nature.</p><p>Homosexual behaviour and gender diversity are common phenomena in nature that receive little or no coverage in the natural media. Ruff (Calidris pugnax) is perhaps the most diverse species of wild vertebrate. At mating time, birds in male plumage all look different from each other. In addition, some so-called males look like so-called females. All different kinds of ruffs mate with each other. Despite this, birds are generally divided into two sexes, and their behaviour is thought to be motivated by heterosexual reproduction.</p><p>When observing nature, people tend to make a circular reasoning: they interpret observations of nature through their own value system, and this value-laden version of nature is used to justify their own values as “natural”.</p><p>‘Ruff Knowledge’ poses the question: “What do we know about birds?” Is it possible for us to know something about what it is like to be a bird? Could this knowledge change our relationship with birds and the world? What happens to humans when they observe birds? And what happens to birds?</p>" }, "name": { "fi": "Camille Auer – Ruff Knowledge – Baltic Circle -festivaali", "sv": "Camille Auer – Ruff Knowledge – Festivalen Baltic Circle", "en": "Camille Auer – Ruff Knowledge – Baltic Circle festival" }, "short_description": { "fi": "Ruff Knowledge on esitys suokukoista sekä sukupuolen ja seksuaalisuuden moninaisuudesta luonnossa.", "sv": "Ruff Knowledge är en föreställning om brushanar och om könsmångfalden och den sexuella mångfalden i naturen.", "en": "‘Ruff Knowledge’ is a presentation about ruffs and the diversity of gender and sexuality in nature." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60611/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60212", "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:105/?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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-03T14:13:32.737553Z", "last_modified_time": "2023-11-03T14:13:32.737571Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734217.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5853/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-03T14:13:32.725353Z", "last_modified_time": "2023-11-14T06:13:44.482829Z", "date_published": null, "start_time": "2023-11-25T12: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/64ECA55966E11CA851D95533BA82DEFC/Tulevaisuuskoulu_Telin_kanssa_tutkimusmatkalle_tulevaisuuksiin_" }, "description": { "fi": "<p>Tulevaisuutta ei voi ennustaa, mutta sitä voi tutkia. Mutta miten?</p><p>Lapsille suunnatun Telin tutkimusmatka tulevaisuuksiin -kirjan kirjoittaja, tulevaisuudentutkija ja Tulevaisuuskoulun perustaja Otto Tähkäpää vie osallistujat yhteiselle tutkimusmatkalle tulevaisuusajattelun ja vaihtoehtoisten tulevaisuuksien maailmaan. Keskustelevassa ja vuorovaikutteisessa tilaisuudessa lapset ja aikuiset pääsevät jakamaan omia ajatuksiaan ja kysymyksiään mahdollisista ja toivottavista tulevaisuuksista. <br> <br>Tutkimusmatkaa on mahdollista jatkaa tilaisuuden jälkeen Tulevaisuuskoulun walk in -työpajassa, jossa pääset kuvittelemaan ja kuvittamaan lisää vaihtoehtoisia tulevaisuuksia. <br> <br>Tulevaisuus ei tule, se tehdään. Millaista tulevaisuutta sinä haluat tehdä?</p><p>Tapahtuma on osa Stoan Tulevaisuuksiin! -perhepäivää.</p>" }, "name": { "fi": "Tulevaisuuskoulu: Telin kanssa tutkimusmatkalle tulevaisuuksiin – Tulevaisuuksiin!-perhepäivä" }, "short_description": { "fi": "Tulevaisuutta ei voi ennustaa, mutta sitä voi tutkia. Mutta miten?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60212/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60211", "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:105/?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:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4592, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:19.887194Z", "last_modified_time": "2023-09-07T14:27:19.887214Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734215.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4592/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:27:19.710198Z", "last_modified_time": "2023-11-14T06:13:44.408531Z", "date_published": null, "start_time": "2023-11-25T11:00:00Z", "end_time": "2023-11-25T14: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CE83CC009C716CBF3303F1FD5F5FF340/Tulevaisuuksiin_", "sv": "http://www.stoa.fi/sv/evenemang/event/CE83CC009C716CBF3303F1FD5F5FF340/Tulevaisuuksiin_", "en": "http://www.stoa.fi/en/events/event/CE83CC009C716CBF3303F1FD5F5FF340/To_the_Futures_" }, "description": { "fi": "<p>Lapsilla on oikeus mahdollisuuteen lumoutua maailmasta, sillä maailmahan on ihmeellinen.</p><p>Meidän ja meitä ympäröivän maailman hyvinvointi on toisistaan riippuvainen näkymättömien seittien kudelma, jossa pienelläkin ihmisellä ja pienellä teolla voi olla suuri merkitys. Stoassa pääset tänä lauantaina liikkumaan avaruudesta merten syvyyksiin ja matkustamaan tästä hetkestä mahdollisiin ja mahdottomiin tulevaisuuksiin. Työpajoissa tankataan vetyautoja, valmistetaan muovista uudenlaista kangasta ja pohditaan mitä omassa repussa kulkee mukana.</p><p>Mukana päivän ohjelmassa <b>Ilmatila</b>, <b>Tulevaisuuskoulu</b> , <b>Aalto-yliopisto Junior</b> , <b>Muoviamo</b> ja <b>Spektaakkeliakatemia</b>.<br> <br>Liput Ilmatilan Atlas-esitykseen 6 €, muuhun ohjelmaan vapaa pääsy.</p><p><b>klo 13 Ilmatila: Atlas (ikäsuositus 4+, kesto 30 min) </b> Liput 6 €. Lisätietoja: <u><a href=\"https://stoa.fi/fi/tapahtumat/event/BEC04365A03E6604CFAAC4DC1D57A420/Ilmatila__Atlas\">tästä linkistä</a></u></p><p><b>klo 14 Tulevaisuuskoulu: Telin kanssa tutkimusmatkalle tulevaisuuksiin</b><br> <br>Tulevaisuutta ei voi ennustaa, mutta sitä voi tutkia. Mutta miten? <br> <br>Lapsille suunnatun <i>Telin tutkimusmatka tulevaisuuksiin</i> -kirjan kirjoittaja, tulevaisuudentutkija ja Tulevaisuuskoulun perustaja <b>Otto Tähkäpää</b> vie osallistujat yhteiselle tutkimusmatkalle tulevaisuusajattelun ja vaihtoehtoisten tulevaisuuksien maailmaan.</p><p>Keskustelevassa ja vuorovaikutteisessa tilaisuudessa lapset ja aikuiset pääsevät jakamaan omia ajatuksiaan ja kysymyksiään mahdollisista ja toivottavista tulevaisuuksista. <br> <br>Tutkimusmatkaa on mahdollista jatkaa tilaisuuden jälkeen Tulevaisuuskoulun walk in -työpajassa, jossa pääset kuvittelemaan ja kuvittamaan lisää vaihtoehtoisia tulevaisuuksia. <br> <br>Tulevaisuus ei tule, se tehdään. Millaista tulevaisuutta sinä haluat tehdä?</p><p><b>klo 13-16 Anna mä sanon -ääniteos</b></p><p>Itähelsinkiläisten lasten ja nuorten yhdessä sanataideohjaaja Jenni Hurmerinnan kanssa luoma ääniteos on kuunneltavissa Stoassa päivän aikana. Lapsen oikeuksien viikkoa ja lapsen oikeutta hyvinvointiin juhlistava ääniteos on toteutettu yhteistyössä Nuorisotalo Kipinässä toimivan Signaalimedian kanssa.</p><p><b>klo 13–16 työpajoja, vapaa pääsy</b></p><p><b>Tulevaisuuden autot -työpaja</b></p><p>Miten autoilla voi liikkua tulevaisuudessa puhtaalla energialla? Tule mukaan Aalto-yliopisto Juniorin työpajaan, jossa tutustutaan vetyautoteknologiaan. Päästöinä syntyy vain vettä. Tämän meille mahdollistaa turvalliset polttokennot. Työpajassa pääset itse tankkaamaan pienoisauton vedellä (!) ja kokeilemaan miten se liikkuu. Ratkaisut ilmastomuutokseen ovat uusia innovaatioita, joita tutkijat kehittävät Suomessa ja maailmalla tälläkin hetkellä. Ohjaajina toimivat <b>Aalto-yliopiston opiskelijat</b>.</p><p><b>Näkymätön reppu -työpaja </b></p><p><b>Maria Viljan</b> ohjaamassa <i>Näkymätön reppu</i> -työpajassa tehdään omia minireppuja paperipussista, ja mietitään mitä repussa mahtaisi olla tänään ja tulevaisuudessa. Työpaja perustuu herkkyyttä käsittelevään <i>Näkymätön reppu</i> -lastenkirjaan (Maria Vilja, Karisto 2022).</p><p><b>Muovin muodonmuutos -työpaja </b></p><p>Haluatko oppia, kuinka tavallisesta muovipussista voi syntyä kestävä ja hauska uusiokangas? Tule mukaan <b>Muoviamon</b> työpajaan! Opit valmistamaan muovipusseista uudenlaista materiaalia, joka toimii pohjana monenlaisille luomuksille. Voit valmistaa pienen lompakon, taulun tai pöytätabletin, tai antaa mielikuvituksesi lentää ja luoda oman persoonallisen taideteoksen. Saat oman mestariteoksesi mukaasi pajan jälkeen. HUOM! Voit tuoda itse mukanasi erilaisia muovipusseja.</p>", "sv": "<p>Barn har rätt att må bra och hitta möjligheter att fascineras av världen, världen är ju en fascinerande plats.</p><p>Vårt eget välmående och den omgivande världens välfärd är beroende av varandra, en väv av osynliga trådar där även den lilla människan och en liten handling kan ha stor betydelse. Under lördagen i Stoa får du röra dig från rymden till havets djup och resa från nuet till möjliga och omöjliga framtider.</p>", "en": "<p>Children have the right to well-being and the right to be enchanted by the world, which is a wonderful place.</p><p>Our well-being and that of the world around us is an interdependent tangle of invisible threads in which even a small person and a small act can make a big difference. This Saturday at Stoa, you can move from space to the depths of the sea and travel from the present to possible and impossible futures.</p>" }, "name": { "fi": "Tulevaisuuksiin! – Lapsen oikeuksien viikon perhepäivä", "sv": "Tulevaisuuksiin! – Barnrättsveckans familjedag", "en": "To the Futures! – Family Day of Children’s Rights Week" }, "short_description": { "fi": "Lapsilla on oikeus mahdollisuuteen lumoutua maailmasta, sillä maailmahan on ihmeellinen.", "sv": "Barn har rätt att må bra och hitta möjligheter att fascineras av världen, världen är ju en fascinerande plats.", "en": "Children have the right to well-being and the right to be enchanted by the world, which is a wonderful place." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60211/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61197", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5852, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-03T14:13:32.540236Z", "last_modified_time": "2023-11-03T14:13:32.540252Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738806.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5852/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-03T14:13:32.528830Z", "last_modified_time": "2023-11-14T06:13:44.264304Z", "date_published": null, "start_time": "2023-11-25T11: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1DAC9EC7EEE5FC2D3B3BE2B3DBBC7C37/Nakymaton_reppu" }, "description": { "fi": "<p>Maria Viljan ohjaamassa Näkymätön reppu -työpajassa tehdään omia minireppuja paperipussista, ja mietitään mitä repussa mahtaisi olla tänään ja tulevaisuudessa.</p><p>Työpaja perustuu herkkyyttä käsittelevään Näkymätön reppu -lastenkirjaan (Maria Vilja, Karisto 2022).</p><p>Työpaja on osa Stoan Tulevaisuuksiin! -perhepäivää.</p>" }, "name": { "fi": "Näkymätön reppu – Tulevaisuuksiin!-perhepäivä" }, "short_description": { "fi": "Maria Viljan ohjaamassa Näkymätön reppu -työpajassa tehdään omia minireppuja paperipussista, ja mietitään mitä repussa mahtaisi olla tänään ja tulevaisuudessa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61197/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61195", "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:105/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5851, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-03T14:13:32.458334Z", "last_modified_time": "2023-11-03T14:13:32.458352Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738804.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5851/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-03T14:13:32.446564Z", "last_modified_time": "2023-11-14T06:13:44.193639Z", "date_published": null, "start_time": "2023-11-25T11: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/878BD0E072A8C8361C44FAC386419F1F/Muovin_muodonmuutos" }, "description": { "fi": "<p>Haluatko oppia, kuinka tavallisesta muovipussista voi syntyä kestävä ja hauska uusiokangas? Tule mukaan Muoviamon työpajaan!</p><p>Opit valmistamaan muovipusseista uudenlaista materiaalia, joka toimii pohjana monenlaisille luomuksille. Voit valmistaa pienen lompakon, taulun tai pöytätabletin, tai antaa mielikuvituksesi lentää ja luoda oman persoonallisen taideteoksen. Saat oman mestariteoksesi mukaasi pajan jälkeen. HUOM! Voit tuoda itse mukanasi erilaisia muovipusseja. <br> <br>Työpaja on osa Stoan Tulevaisuuksiin! -perhepäivää.</p>" }, "name": { "fi": "Muovin muodonmuutos – Tulevaisuuksiin!-perhepäivä" }, "short_description": { "fi": "Haluatko oppia, kuinka tavallisesta muovipussista voi syntyä kestävä ja hauska uusiokangas? Tule mukaan Muoviamon työpajaan!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61195/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61154", "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:105/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5850, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-03T14:13:32.337679Z", "last_modified_time": "2023-11-03T14:13:32.337699Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738132.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5850/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-03T14:13:32.315477Z", "last_modified_time": "2023-11-14T06:13:44.117824Z", "date_published": null, "start_time": "2023-11-25T11:00:00Z", "end_time": "2023-11-25T14: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/EE46103C8FC9C9C4D43EB71DE44A0F80/Tulevaisuuden_autot" }, "description": { "fi": "<p>Miten autoilla voi liikkua tulevaisuudessa puhtaalla energialla? Tule mukaan Aalto-yliopisto Juniorin työpajaan, jossa tutustutaan vetyautoteknologiaan.</p><p>Päästöinä syntyy vain vettä. Tämän meille mahdollistaa turvalliset polttokennot. Työpajassa pääset itse tankkaamaan pienoisauton vedellä (!) ja kokeilemaan miten se liikkuu. Ratkaisut ilmastomuutokseen ovat uusia innovaatioita, joita tutkijat kehittävät Suomessa ja maailmalla tälläkin hetkellä. Ohjaajina toimivat Aalto-yliopiston opiskelijat.</p><p>Työpaja on osa Stoan Tulevaisuuksiin! -perhepäivää.</p>" }, "name": { "fi": "Tulevaisuuden autot – Tulevaisuuksiin!-perhepäivä" }, "short_description": { "fi": "Miten autoilla voi liikkua tulevaisuudessa puhtaalla energialla? Tule mukaan Aalto-yliopisto Juniorin työpajaan, jossa tutustutaan vetyautoteknologiaan." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61154/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61148", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3510051" }, "description": null, "price": { "fi": "48,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5521, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-18T11:26:46.024595Z", "last_modified_time": "2023-10-18T11:26:46.024618Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737553.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5521/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-18T11:26:45.864462Z", "last_modified_time": "2023-11-14T06:13:43.823287Z", "date_published": null, "start_time": "2023-11-24T17: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, "provider": { "fi": "Fullsteam Agency Oy" }, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3132D02108423E357687175DB17417DE/VESTA_-_Just_niin_klassista_Vestaa_" }, "description": { "fi": "<p>Vestan syksyn ainoa konsertti Savoy-teatterissa marraskuussa</p><p>Kotimaisen popin suunnannäyttäjänä paikkansa asemoinut Vesta esiintyy Helsingin Savoy-teatterissa perjantaina 24. marraskuuta. ”Just niin klassista Vestaa” -nimeä kantavassa konsertti on valovoimaisen artistin syksyn ainoa konsertti. Ainutlaatuisen tapahtuman lipunmyynti käynnistyy Lippu.fissa torstaina 19. lokakuuta klo 9.<br> <br>Ajatus Savoyn keikasta on elänyt Vestan mielessä jo pitkään: ”Tämä ilta kulkee tekstit, sävellys ja tunne edellä. Uudet sovitukset upeiden soittajien kanssa lupaa riisuttua ja herkkää, Just niin klassista Vestaa”.</p><p>Lahjakkaan musiikintekijän debyytin ”Lohtulauseita” (2018) suosion siivittämänä modernin suomipopin ykköskaartiin kohonnut Vesta tunnetaan valovoimaisena ja vangitsevana esiintyjänä, joka ei pelkää tarttua musiikissaan vaikeisiinkaan aiheisiin ja ottaa kantaa. Vuonna 2019 Emma-gaalassa Vuoden tulokas -palkinnon ansainneen artistin viimeisin julkaisu on vuonna 2022 ilmestynyt ”Uskon tulevaan”, joka otti vahvasti kantaa muun muassa ilmastokriisiin ja luontokatoon suuria tunteita unohtamatta.</p><p>Kesto n. 75 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>" }, "name": { "fi": "VESTA - ”Just niin klassista Vestaa”" }, "short_description": { "fi": "Vestan syksyn ainoa konsertti Savoy-teatterissa marraskuussa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61148/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61232", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5873, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-06T13:14:04.954561Z", "last_modified_time": "2023-11-06T13:14:04.954577Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739376.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5873/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-06T13:14:04.933787Z", "last_modified_time": "2023-11-14T06:13:43.754008Z", "date_published": null, "start_time": "2023-11-24T16: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/23B0BA5A28C682148507AFCFA8BF74BF/Napoleon" }, "description": { "fi": "<p>Napoleon on näyttävä toimintaeepos, joka kertoo yksityiskohtaisesti Ranskan ikonisen keisarin Napoleon Bonaparten (Oscar®-voittaja Joaquin Phoenix) nousun ja tuhon.</p><p>Tässä elämää suuremmassa elokuvassa legendaarinen ohjaaja <b>Ridley Scott</b> kuvaa Bonaparten hellittämätöntä matkaa valtaan ja hänen pakkomielteistä suhdettaan elämänsä rakkauteen Josephineen.</p><p>Elokuva esittelee vauhdikkaiden taistelukohtausten ohella myös Napoleonin uraauurtavia sotilaallisia ja poliittisia manööverejä.</p><p>Ikäraja ei tiedossa<br>Kesto 159 min<br>Ensi-ilta 22.11.2023</p>" }, "name": { "fi": "Napoleon – Kino Helios" }, "short_description": { "fi": "Napoleon on näyttävä toimintaeepos, joka kertoo yksityiskohtaisesti Ranskan ikonisen keisarin Napoleon Bonaparten (Oscar®-voittaja Joaquin Phoenix) nousun ja tuhon." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61232/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60610", "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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/", "sv": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/", "en": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/" }, "description": null, "price": { "fi": "19,50 €", "sv": "19,50 €", "en": "19,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4590, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:17.730803Z", "last_modified_time": "2023-09-07T14:27:17.730825Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731918.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4590/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:16.864842Z", "last_modified_time": "2023-11-14T06:13:43.673440Z", "date_published": null, "start_time": "2023-11-24T16: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3BAA6300F34B126A700F5523F842C11F/Camille_Auer_Ruff_Knowledge", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3BAA6300F34B126A700F5523F842C11F/Camille_Auer_Ruff_Knowledge", "en": "http://www.kanneltalo.fi/en/events/event/3BAA6300F34B126A700F5523F842C11F/Camille_Auer_Ruff_Knowledge" }, "description": { "fi": "<p>Ruff Knowledge on esitys suokukoista sekä sukupuolen ja seksuaalisuuden moninaisuudesta luonnossa.</p><p>Homoseksuaalinen käytös ja sukupuolen moninaisuus ovat luonnossa yleisiä ilmiöitä, jotka eivät saa lainkaan näkyvyyttä luontomedioissa. Suokukko (Calidris Pugnax, engl. Ruff) on lajina kenties moninaisin luonnonvarainen selkärankainen. Soidinaikaan koiraspukuiset linnut ovat kaikki keskenään eri näköisiä. Sen lisäksi osa niin kutsutuista koiraista näyttää niin kutsutuilta naarailta. Kaikki erilaiset suokukot harrastavat seksiä keskenään. Siitä huolimatta linnut yleisesti jaetaan kahteen sukupuoleen, ja niiden käyttäytymisen motiiviksi oletetaan heteroseksuaalinen lisääntyminen.</p><p>Ihmisillä on luontoa havainnoidessa taipumus tehdä kehäpäätelmä: luontohavaintoja tulkitaan oman arvomaailman kautta, ja tätä arvolatautunutta versiota luonnosta taas käytetään omien arvojen perustelemiseen \"luonnollisina\".</p><p>Ruff Knowledge kysyy, miten tiedämme linnuista? Voimmeko tietää jotain siitä, millaista on olla lintu? Muuttaisiko se tieto suhdettamme lintuihin ja maailmaan? Mitä ihmisessä tapahtuu lintuja tarkkaillessa? Entä linnuissa?</p><p>Teksti, video, ääni, esiintyminen: Camille Auer<br>Dramaturgi: Emil Santtu Uuttu<br>Esiintymisasu: Johanna Porola<br>Kuvausassistentti: Nea Alasaari<br>Taiteellinen dialogi: Teo Ala-Ruona<br>Lintudialogi: Elliot Lundegård ja Helinä Ääri<br>Rahoitus: Suomen kulttuurirahasto, Taiteen edistämiskeskus<br>Tuotanto: Baltic Circle, Kanneltalo ja Camille Auer<br>Residenssit: Mad House, Pro Artibus, Ars Bioarctica<br>Kiitos: Turun museokeskus, Minna ja Seppo</p><p>Kesto: 80 min, ei väliaikaa<br>Kieli: englanti</p>", "sv": "<p>Ruff Knowledge är en föreställning om brushanar och om könsmångfalden och den sexuella mångfalden i naturen.</p><p>Homosexuellt beteende och en mångfald av kön är vanliga fenomen i naturen som inte får någon synlighet alls i naturmedia. Brushanen (Calidris Pugnax, eng. Ruff) är den kanske mest mångsidiga arten bland vilda ryggradsdjur. Under parningstiden ser alla hanar i praktdräkt olika ut. Dessutom ser en del av de så kallade hanarna ut som så kallade honor. Alla de olika brushanarna har sex med varandra. Trots det delas fåglarna vanligtvis in i två kön och man utgår från antagandet om att motivet bakom deras beteende är heterosexuell fortplantning.</p><p>När människan observerar naturen är vi benägna att använda cirkelresonemang: vi tolkar naturobservationer genom våra egna värderingar och använder sedan denna värdeladdade version av naturen för att motivera de egna värderingarna som ”naturliga”.</p><p>Ruff Knowledge frågar vad vi vet om fåglar. Kan vi veta något om hur det är att vara fågel? Skulle kunskaper om detta på något sätt ändra vår relation till fåglar och världen? Vad sker hos människan när vi studerar fåglar? Eller hos fåglarna?</p>", "en": "<p>‘Ruff Knowledge’ is a presentation about ruffs and the diversity of gender and sexuality in nature.</p><p>Homosexual behaviour and gender diversity are common phenomena in nature that receive little or no coverage in the natural media. Ruff (Calidris pugnax) is perhaps the most diverse species of wild vertebrate. At mating time, birds in male plumage all look different from each other. In addition, some so-called males look like so-called females. All different kinds of ruffs mate with each other. Despite this, birds are generally divided into two sexes, and their behaviour is thought to be motivated by heterosexual reproduction.</p><p>When observing nature, people tend to make a circular reasoning: they interpret observations of nature through their own value system, and this value-laden version of nature is used to justify their own values as “natural”.</p><p>‘Ruff Knowledge’ poses the question: “What do we know about birds?” Is it possible for us to know something about what it is like to be a bird? Could this knowledge change our relationship with birds and the world? What happens to humans when they observe birds? And what happens to birds?</p>" }, "name": { "fi": "Camille Auer – Ruff Knowledge – Baltic Circle -festivaali", "sv": "Camille Auer – Ruff Knowledge – Festivalen Baltic Circle", "en": "Camille Auer – Ruff Knowledge – Baltic Circle festival" }, "short_description": { "fi": "Ruff Knowledge on esitys suokukoista sekä sukupuolen ja seksuaalisuuden moninaisuudesta luonnossa.", "sv": "Ruff Knowledge är en föreställning om brushanar och om könsmångfalden och den sexuella mångfalden i naturen.", "en": "‘Ruff Knowledge’ is a presentation about ruffs and the diversity of gender and sexuality in nature." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60610/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60622", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4589, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:16.036799Z", "last_modified_time": "2023-09-07T14:27:16.036825Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731293.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4589/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:15.578967Z", "last_modified_time": "2023-11-14T06:13:43.526864Z", "date_published": null, "start_time": "2023-11-23T16: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D2C3AFFA206F32965AB4B9621DD523FF/Kuukauden_klassikko_Vadelmavenepakolainen_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D2C3AFFA206F32965AB4B9621DD523FF/Manadens_filmklassiker_Hallonbatsflyktingen_7_", "en": "http://www.malmitalo.fi/en/events/event/D2C3AFFA206F32965AB4B9621DD523FF/Classic_film_of_the_month_Raspberry_Boat_Refugee_7_" }, "description": { "fi": "<p>Mikko Virtanen, 37, tuntee itsensä ruotsalaiseksi mieheksi, joka on pakotettu suomalaisen miehen ruumiiseen.</p><p>Kuin vastauksensa rukouksiinsa Mikko kohtaa ruotsalaisen Mikael Anderssonin, joka on valmis luovuttamaan henkilöllisyytensä Mikolle.</p><p>Mikko matkustaa kohti paratiisinomaista Tukholmaa uuden, unelmiensa identiteetin turvin. Hänestä on tullut ruotsalainen psykologi Mikael Andersson, joka on viettänyt huolettomia lapsuuspäiviä idyllisellä Käringöllä ja jonka äitiä Gretaa hoidetaan tukholmalaisessa vanhainkodissa. Mutkia matkaan aiheuttaa ainoastaan Mikaelin sisko Maria, 33, josta Mikko ei tiennyt mitään.</p><p>Ikäraja: 7<br>Kesto: 93 min<br>Vapaa pääsy!</p>", "sv": "<p>Mikko Virtanen, 37, känner sig som en svensk man som har tvingats att leva sitt liv i en finsk mans kropp.</p><p>Som ett svar på sina böner träffar Mikko svenska Mikael Andersson som är redo att överlåta sin identitet till Mikko.</p><p>Åldersgräns: 7<br>Längd: 93 min</p><p>Fritt inträde!</p>", "en": "<p>Mikko Virtanen, 37, feels like a Swedish man forced into the body of a Finnish man.</p><p>As an answer to his prayers, Mikko meets Mikael Andersson, a Swedish man who is willing to give up his identity to Mikko.</p><p>Age limit: 7<br>Duration: 93 min</p><p>Free entry!</p>" }, "name": { "fi": "Kuukauden klassikko: Vadelmavenepakolainen (7) – Kino Helios", "sv": "Månadens filmklassiker: Hallonbåtsflyktingen (7) – Kino Helios", "en": "Classic film of the month: Raspberry Boat Refugee (7) – Kino Helios" }, "short_description": { "fi": "Mikko Virtanen, 37, tuntee itsensä ruotsalaiseksi mieheksi, joka on pakotettu suomalaisen miehen ruumiiseen.", "sv": "Mikko Virtanen, 37, känner sig som en svensk man som har tvingats att leva sitt liv i en finsk mans kropp.", "en": "Mikko Virtanen, 37, feels like a Swedish man forced into the body of a Finnish man." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60622/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60476", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4588, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:15.342149Z", "last_modified_time": "2023-09-07T14:27:15.342176Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725263.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4588/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:27:15.167802Z", "last_modified_time": "2023-11-14T06:13:43.455230Z", "date_published": null, "start_time": "2023-11-23T08:00:00Z", "end_time": "2023-11-23T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/56283FB8F02CF9E233DEF389BC1C671F/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/56283FB8F02CF9E233DEF389BC1C671F/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/56283FB8F02CF9E233DEF389BC1C671F/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60476/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60621", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/", "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/", "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4587, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:14.926537Z", "last_modified_time": "2023-09-07T14:27:14.926565Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_720854.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4587/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:14.763611Z", "last_modified_time": "2023-11-14T06:13:43.384203Z", "date_published": null, "start_time": "2023-11-22T17: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D95084CB07303BC6B3DD686A286EFD2B/The_Great_Helsinki_Swing_Big_Band_Shiny_Stockings", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D95084CB07303BC6B3DD686A286EFD2B/The_Great_Helsinki_Swing_Big_Band_Shiny_Stockings", "en": "http://www.malmitalo.fi/en/events/event/D95084CB07303BC6B3DD686A286EFD2B/The_Great_Helsinki_Swing_Big_Band_Shiny_Stockings" }, "description": { "fi": "<p>Konsertissa solistina Minna Lasanen.</p><p>Minna Lasanen on Suomen jazz- ja kevyen musiikin legendan, Pentti Lasasen tytär. Ilta vietetään Julie Londonin ja Rosemary Cloneyn esittämien swing-hittien parissa.</p><p>Kapellimestarina Antti Rissanen.</p>", "sv": "<p>På konserten får vi lyssna på solist Minna Lasanen.</p><p>Hon är dotter till legenden inom finsk jazz- och underhållningsmusik Pentti Lasanen – när hon framför swingmusikens hitlåtar som Julie London och Rosemary Cloney gjort kända.</p><p>Dirigent: Antti Rissanen</p>", "en": "<p>Soloist Minna Lasanen</p><p>She is the daughter of Finnish jazz and light music legend Pentti Lasanen – performs swing hits by Julie London and Rosemary Cloney.</p><p>Conductor: Antti Rissanen</p>" }, "name": { "fi": "The Great Helsinki Swing Big Band: Shiny Stockings", "sv": "The Great Helsinki Swing Big Band: Shiny Stockings", "en": "The Great Helsinki Swing Big Band: Shiny Stockings" }, "short_description": { "fi": "Konsertissa solistina Minna Lasanen.", "sv": "På konserten får vi lyssna på solist Minna Lasanen.", "en": "Soloist Minna Lasanen" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60621/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61159", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-18T09:27:30.718980Z", "last_modified_time": "2023-10-18T09:27:30.719001Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738098.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-18T09:27:30.582278Z", "last_modified_time": "2023-11-14T06:13:43.313602Z", "date_published": null, "start_time": "2023-11-22T16: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5BE7FEA45379A977B2EF2AC11AC2C05E/Mummola_7_" }, "description": { "fi": "<p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona.</p><p>Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista, lapset ovat kyllästyneitä ja sisarukset lankeavat vanhoihin riitoihinsa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen. Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Kesto 115 min<br>Ikäraja 7<br>Ensi-ilta 10.11.2023<br>Tekstitetty suomeksi</p>" }, "name": { "fi": "Mummola (7) – Kino Helios" }, "short_description": { "fi": "Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61159/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60125", "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:31/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4586, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:14.344750Z", "last_modified_time": "2023-09-07T14:27:14.344780Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733073.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4586/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:13.165286Z", "last_modified_time": "2023-11-14T06:13:43.169335Z", "date_published": null, "start_time": "2023-11-22T16: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/92A4EEB4B7F83BD348822A7052F54D80/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/92A4EEB4B7F83BD348822A7052F54D80/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/92A4EEB4B7F83BD348822A7052F54D80/Stoa_Choir_" }, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea! Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18-19.30.</p><p>Lämpimästi tervetuloa!</p><p>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p><p>Kuorokerrat: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel. <br>Varmt välkommen!</p><p>På onsdagar kl. 18-19.30.<br>Datum: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish?</p><p>If so, please join us! <br>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.<br>Rehearsals on Wednesdays 6-7.30pm at Stoa music hall.</p><p>Autumn season: <br>6 Sept <br>13 Sept<br>20 Sept<br>27 Sept<br>11 Oct<br>25 Oct<br>1 Nov<br>15 Nov<br>22 Nov<br>29 Nov</p>" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60125/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60609", "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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/", "sv": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/", "en": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/" }, "description": null, "price": { "fi": "19,50 €", "sv": "19,50 €", "en": "19,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4584, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:11.136818Z", "last_modified_time": "2023-09-07T14:27:11.136839Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731917.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4584/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:10.989827Z", "last_modified_time": "2023-11-14T06:13:43.094714Z", "date_published": null, "start_time": "2023-11-22T16: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5241F19912A39D296F36ED2ED8A44FAA/Camille_Auer_Ruff_Knowledge_ENSI-ILTA", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5241F19912A39D296F36ED2ED8A44FAA/Camille_Auer_Ruff_Knowledge_PREMIAR", "en": "http://www.kanneltalo.fi/en/events/event/5241F19912A39D296F36ED2ED8A44FAA/Camille_Auer_Ruff_Knowledge_PREMIER" }, "description": { "fi": "<p>Ruff Knowledge on esitys suokukoista sekä sukupuolen ja seksuaalisuuden moninaisuudesta luonnossa.</p><p>Homoseksuaalinen käytös ja sukupuolen moninaisuus ovat luonnossa yleisiä ilmiöitä, jotka eivät saa lainkaan näkyvyyttä luontomedioissa. Suokukko (Calidris Pugnax, engl. Ruff) on lajina kenties moninaisin luonnonvarainen selkärankainen. Soidinaikaan koiraspukuiset linnut ovat kaikki keskenään eri näköisiä. Sen lisäksi osa niin kutsutuista koiraista näyttää niin kutsutuilta naarailta. Kaikki erilaiset suokukot harrastavat seksiä keskenään. Siitä huolimatta linnut yleisesti jaetaan kahteen sukupuoleen, ja niiden käyttäytymisen motiiviksi oletetaan heteroseksuaalinen lisääntyminen.</p><p>Ihmisillä on luontoa havainnoidessa taipumus tehdä kehäpäätelmä: luontohavaintoja tulkitaan oman arvomaailman kautta, ja tätä arvolatautunutta versiota luonnosta taas käytetään omien arvojen perustelemiseen \"luonnollisina\".</p><p>Ruff Knowledge kysyy, miten tiedämme linnuista? Voimmeko tietää jotain siitä, millaista on olla lintu? Muuttaisiko se tieto suhdettamme lintuihin ja maailmaan? Mitä ihmisessä tapahtuu lintuja tarkkaillessa? Entä linnuissa?</p><p>Teksti, video, ääni, esiintyminen: Camille Auer<br>Dramaturgi: Emil Santtu Uuttu<br>Esiintymisasu: Johanna Porola<br>Kuvausassistentti: Nea Alasaari<br>Taiteellinen dialogi: Teo Ala-Ruona<br>Lintudialogi: Elliot Lundegård ja Helinä Ääri<br>Rahoitus: Suomen kulttuurirahasto, Taiteen edistämiskeskus<br>Tuotanto: Baltic Circle, Kanneltalo ja Camille Auer<br>Residenssit: Mad House, Pro Artibus, Ars Bioarctica<br>Kiitos: Turun museokeskus, Minna ja Seppo</p><p>Kesto: 80 min, ei väliaikaa<br>Kieli: englanti</p>", "sv": "<p>Ruff Knowledge är en föreställning om brushanar och om könsmångfalden och den sexuella mångfalden i naturen.</p><p>Homosexuellt beteende och en mångfald av kön är vanliga fenomen i naturen som inte får någon synlighet alls i naturmedia. Brushanen (Calidris Pugnax, eng. Ruff) är den kanske mest mångsidiga arten bland vilda ryggradsdjur. Under parningstiden ser alla hanar i praktdräkt olika ut. Dessutom ser en del av de så kallade hanarna ut som så kallade honor. Alla de olika brushanarna har sex med varandra. Trots det delas fåglarna vanligtvis in i två kön och man utgår från antagandet om att motivet bakom deras beteende är heterosexuell fortplantning.</p><p>När människan observerar naturen är vi benägna att använda cirkelresonemang: vi tolkar naturobservationer genom våra egna värderingar och använder sedan denna värdeladdade version av naturen för att motivera de egna värderingarna som ”naturliga”.</p><p>Ruff Knowledge frågar vad vi vet om fåglar. Kan vi veta något om hur det är att vara fågel? Skulle kunskaper om detta på något sätt ändra vår relation till fåglar och världen? Vad sker hos människan när vi studerar fåglar? Eller hos fåglarna?</p>", "en": "<p>‘Ruff Knowledge’ is a presentation about ruffs and the diversity of gender and sexuality in nature.</p><p>Homosexual behaviour and gender diversity are common phenomena in nature that receive little or no coverage in the natural media. Ruff (Calidris pugnax) is perhaps the most diverse species of wild vertebrate. At mating time, birds in male plumage all look different from each other. In addition, some so-called males look like so-called females. All different kinds of ruffs mate with each other. Despite this, birds are generally divided into two sexes, and their behaviour is thought to be motivated by heterosexual reproduction.</p><p>When observing nature, people tend to make a circular reasoning: they interpret observations of nature through their own value system, and this value-laden version of nature is used to justify their own values as “natural”.</p><p>‘Ruff Knowledge’ poses the question: “What do we know about birds?” Is it possible for us to know something about what it is like to be a bird? Could this knowledge change our relationship with birds and the world? What happens to humans when they observe birds? And what happens to birds?</p>" }, "name": { "fi": "Camille Auer – Ruff Knowledge | ENSI-ILTA – Baltic Circle -festivaali", "sv": "Camille Auer – Ruff Knowledge | PREMIÄR – Festivalen Baltic Circle", "en": "Camille Auer – Ruff Knowledge | PREMIER – Baltic Circle festival" }, "short_description": { "fi": "Ruff Knowledge on esitys suokukoista sekä sukupuolen ja seksuaalisuuden moninaisuudesta luonnossa.", "sv": "Ruff Knowledge är en föreställning om brushanar och om könsmångfalden och den sexuella mångfalden i naturen.", "en": "‘Ruff Knowledge’ is a presentation about ruffs and the diversity of gender and sexuality in nature." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60609/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60682", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4583, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:10.763970Z", "last_modified_time": "2023-09-07T14:27:10.764003Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735270.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4583/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:27:10.618175Z", "last_modified_time": "2023-11-14T06:13:43.015764Z", "date_published": null, "start_time": "2023-11-22T15:00:00Z", "end_time": "2023-11-22T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A9B24CC9B72DDE4E556AD459A5825B94/Sanapaja_Wordshop_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A9B24CC9B72DDE4E556AD459A5825B94/Sanapaja_Wordshop_", "en": "http://www.vuotalo.fi/en/events/event/A9B24CC9B72DDE4E556AD459A5825B94/Sanapaja_Wordshop_" }, "description": { "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br> <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii. <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br> <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>", "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig. <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>", "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br> <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>" }, "name": { "fi": "Sanapaja / Wordshop", "sv": "Sanapaja / Wordshop", "en": "Sanapaja / Wordshop" }, "short_description": { "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?", "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?", "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60682/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61055", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5232, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:32:27.184146Z", "last_modified_time": "2023-10-09T13:32:27.184166Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737115.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5232/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:32:25.811360Z", "last_modified_time": "2023-11-14T06:13:42.939603Z", "date_published": null, "start_time": "2023-11-22T10:00:00Z", "end_time": "2023-11-22T11: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9D90F6739C4043B17DA3AEACBD7ED8DC/Emil_i_Lonneberga_7_Skolbio", "sv": "http://www.vuotalo.fi/sv/evenemang/event/9D90F6739C4043B17DA3AEACBD7ED8DC/Emil_i_Lonneberga_F7_Skolbio", "en": "http://www.vuotalo.fi/en/events/event/9D90F6739C4043B17DA3AEACBD7ED8DC/Skolbio_Emil_i_LonneEmil_i_Lonneberga_7_Skolbioberga" }, "description": { "fi": "<p>Eemeli on 5-vuotias poika, jonka kekseliäisyyttä aikuiset eivät aina arvosta.</p><p>Kun pikkusisko päätyy roikkumaan lipputankoon, Vaahteramäki raikaa taas isän vihaisesta huudosta: ”Eeeemeeliii!” Suuren suosion saaneista Eemeli-elokuvista tuli menestys sekä Ruotsissa että ulkomailla. Myös Lindgren itse oli sovituksiin tyytyväinen ja vieraili usein niiden kuvauspaikoilla.</p><p>Astrid Lindgrenin lastenkirjoihin perustuva elokuva.<br>Ohjaus: Olle Hellbom<br>Kesto 95 min<br>Ruotsinkielinen puhe, ruotsinkielinen tekstitys. <br>Ikäraja: K7<br>Vapaa pääsy, mutta ryhmille pakollinen paikanvaraus: Kultus.fi<br>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Hujedamej sånt barn, suckar pigan Lina allt som oftast. Och Emils pappa Anton, han ropar så det skallar över hela Katthult: “EEEEEMIIIIIIIIL!!!”.</p><p>Då vet alla att Emil är på väg in i snickerboa igen, men för vilken gång i ordningen är det omöjligt att räkna ut. Det är nämligen i snickerboa Emil låser in sig när han gjort något hyss, och det händer ganska ofta.</p><p>Sommar som höst och vår som vinter är det fullt ståhej i Lönneberga. På sommaren går det väldigt bra att hissa upp lillasyster Ida i flaggstången så att hon ska kunna se ända till Mariannelund. Och på vintern – när mamma och pappa är på julkalas – kan man själv ordna fest för hjonen från fattigstugan. Och fånga den snåla och elaka Kommandoran i egenhändigt gjord vargfälla…</p><p>Baserad på Astrid Lindgrens böcker.<br>Regi: Olle Hellbom<br>Längd 93 min<br>Svenskt tal, svensk text<br>Åldersgräns: F7<br>Fritt deltagande men obligatorisk platsbokning för grupper via Kultus.fi<br>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>", "en": "<p>Emil is a 5-year-old boy whose imagination is not always appreciated by adults.</p><p>The Emil films became a huge success both in Sweden and abroad. Lindgren herself was also pleased with the adaptations and often visited the filming locations.</p><p>Based on Astrid Lindgren's books. <br>Director: Olle Hellbom <br>Duration: 93 min <br>Language: Swedish<br>Subtitles: Swedish<br>Age limit: 7<br>Free entry, but for groups mandatory reservation at kultus.fi <br>Co-operation Finlandssvenskt filmcentrum and Vuotalo.</p>" }, "name": { "fi": "Emil i Lönneberga (7) | Skolbio", "sv": "Emil i Lönneberga (F7) | Skolbio", "en": "Skolbio: Emil i LönneEmil i Lönneberga (7) | Skolbioberga" }, "short_description": { "fi": "Eemeli on 5-vuotias poika, jonka kekseliäisyyttä aikuiset eivät aina arvosta.", "sv": "Hujedamej sånt barn, suckar pigan Lina allt som oftast. Och Emils pappa Anton, han ropar så det skallar över hela Katthult: “EEEEEMIIIIIIIIL!!!”.", "en": "Emil is a 5-year-old boy whose imagination is not always appreciated by adults." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61055/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60942", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5231, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:32:25.471775Z", "last_modified_time": "2023-10-09T13:32:25.471793Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737178.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5231/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:32:25.335909Z", "last_modified_time": "2023-11-14T06:13:42.865097Z", "date_published": null, "start_time": "2023-11-22T08:00:00Z", "end_time": "2023-11-22T10: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F9D970E4A184EC67EE20B79927C87268/Naperokino_Huolenpito_ja_rakkaus", "sv": "http://www.annantalo.fi/sv/evenemang/event/F9D970E4A184EC67EE20B79927C87268/Knattebion_omsorg_och_karlek", "en": "http://www.annantalo.fi/en/events/event/F9D970E4A184EC67EE20B79927C87268/Naperokino_toddler_cinema_care_and_love_" }, "description": { "fi": "<p>Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>0–3-vuotiaiden Naperokino palaa ohjelmistoon syksyllä 2023! Rento, mukava esityspaikka ja -tilanne mahdollistavat vaipanvaihdon, syöttämisen/imettämisen tai vaikkapa pienet päiväunet lyhäreiden lomassa.</p><p>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen ottamaan vastaan ja katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas painottuu pienimmillekin sopiviin sanattomiin animaatioihin, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja.</p><p>Naperokino on suunnattu kotiäideille ja –isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ke 11.10., 22.11. ja 13.12. pääset myös paikan päällä tapaamaan ja halaamaan Naperokinossa vierailevaa Myyrää, jonka seikkailuita voit seurata tänä syksynä Annantalon somessa!</p><p>Näytöksillä on joka viikko vaihtuva teema.</p><p>Kieli: suomi<br>Ikäsuositus: 0-3-vuotiaille vanhempiensa kanssa<br>Tila: 1. kerroksen oleskelutila</p>", "sv": "<p>Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!</p><p>De minsta barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se även för en liten stund i taget. En avslappnad, bekväm plats för filmvisningen gör det möjligt att byta blöjor, mata/amma barnet eller t.ex. ta en liten tupplur under de korta filmerna.</p><p>Syftet är att visa barnet filmer av hög kvalitet och gradvis vänja hen vid att ta emot och titta på långa barnfilmer på biografer. Under den första halvan av visningen som varar två timmar ligger fokusen på animerade filmer utan tal och på den andra halvan visas det favoriter med tal.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Ons 11.10, 22.11. och 13.12 på plats kan du också möta och krama Mullvaden som besöker Knattebion. Mullvadens äventyr kan du följa under hösten också i Annegårdens sociala medier!</p><p>Föreställningarna har ett varierande tema varje vecka. För att fira barnrättsveckan är temat denna vecka omsorg och kärlek!</p><p>Mer information från kultural producent, tel. +358 40 188 3416</p>", "en": "<p>Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!</p><p>The cinema for toddlers, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while. The relaxed, comfortable venue and setting allow nappy changes, feeding/breastfeeding, or even little naps between short films.</p><p>The goal is to show children high-quality films and gradually get them used to engaging with and watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on wordless animations suitable for even the smallest children, and the second hour will feature favourites with spoken dialogue.</p><p>Naperokino is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>On Wed Oct 11, Nov 22 and Dec 13 you also get to meet and hug Naperokino’s guest Mole, whose adventures you can also follow this autumn on Annantalo’s social media!</p><p>The screenings have a different theme each week. To celebrate Children’s Rights Week, the theme this week is care and love!</p><p>For more information please contact cultural produces +358 40 188 3416</p>" }, "name": { "fi": "Naperokino: Huolenpito ja rakkaus", "sv": "Knattebion: omsorg och kärlek", "en": "Naperokino (toddler cinema): care and love!" }, "short_description": { "fi": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!", "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60942/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61002", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5230, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:32:25.128862Z", "last_modified_time": "2023-10-09T13:32:25.128880Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736376.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5230/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:32:24.981429Z", "last_modified_time": "2023-11-14T06:13:42.789457Z", "date_published": null, "start_time": "2023-11-22T07:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1C64EFCC35323054D93433EFB22C4B6A/Paw_Patrol_The_Movie_in_English_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1C64EFCC35323054D93433EFB22C4B6A/Paw_Patrol_The_Movie_in_English_", "en": "http://www.vuotalo.fi/en/events/event/1C64EFCC35323054D93433EFB22C4B6A/Paw_Patrol_The_Movie_in_English_" }, "description": { "fi": "<p>Ryhmä Hau on vauhdissa!</p><p>Joukon suurimmasta vastustajasta, pormestari Hanttisesta tulee läheisen Jännälän kaupunginjohtaja, ja hän ryhtyy heti aiheuttamaan ikävyyksiä. Rikun ja sankaripentujen on matkustettava Jännälahdesta kaupunkiin uusiin haasteisiin.</p><p>Yksi pennuista joutuu kohtamaan menneisyytensä, ja koko tiimi saa uuden apurin etevästä mäyräkoira Lillistä. Pennut varustautuvat uusilla huikeilla laitteilla ja vekottimilla ja lähtevät pelastamaan Jännälän kaupungin asukkaat!</p><p>Huom: elokuva näytetään englanninkielisellä ääniversiolla. Tekstitys suomeksi ja ruotsiksi.</p><p>Ryhmä Hau -elokuvan ikäraja on 7. Ikärajasta voidaan joustaa kolme vuotta huoltajan vastuulla, jolloin 4–6-vuotiaat pääsevät katsomaan elokuvan täysi-ikäisen seurassa.</p><p>Ryhmille pakollinen ennakkoilmoittautuminen sivustolla kultus.fi</p><p>Ensi-ilta: 17.09.2021<br>Kesto: 86 min<br>Kieli: englanti<br>Tekstitys: suomi ja ruotsi<br>Ohjaus: Cal Brunker</p><p>Vapaa pääsy</p>", "sv": "<p>PAW Patrol är på gång!</p><p>När deras största rival, Överdängare, blir borgmästare i närliggande Äventyrsstaden och börjar härja i stan, lägger Ryder och allas favorithjältevalpar in högsta växeln för att ta sig an utmaningen.</p><p>Medan en av valparna måste möta sitt förflutna i Äventyrsstaden får teamet hjälp från en ny allierad hund, den smarta taxen Liberty. Tillsammans, och beväpnade med spännande nya prylar och utrustning, kämpar PAW Patrol för att rädda medborgarna i Äventyrsstaden!</p><p>Åldersgränsen för Paw Patrol: Filmen i finska biografer är 7. I sällskap av en vuxen är filmen tillåten för barn som fyllt 4 år.<br>Språk: Engelska med finsk och svensk text</p><p>Fritt inträde</p>", "en": "<p>The PAW Patrol is on a roll!</p><p>When their biggest rival, Humdinger, becomes Mayor of nearby Adventure City and starts wreaking havoc, Ryder and everyone’s favorite heroic pups kick into high gear to face the challenge head on. While one pup must face his past in Adventure City, the team finds help from a new ally, the savvy dachshund Liberty.</p><p>Together, armed with exciting new gadgets and gear, the PAW Patrol fights to save the citizens of Adventure City!</p><p>Joining the PAW Patrol in their thrilling first big screen adventure are members from the original series’ cast along with Iain Armitage, Marsai Martin, Yara Shahidi, Kim Kardashian West, Randall Park, Dax Shepard, with Tyler Perry and Jimmy Kimmel and introducing Will Brisbin.</p><p>Please note, that the rating for Paw Patrol the Movie is 7. Children of 4 years old are allowed with adult supervision.</p><p>Free entry</p>" }, "name": { "fi": "Paw Patrol: The Movie (in English) – Lapsen oikeuksien viikko", "sv": "Paw Patrol: The Movie (in English) – Barnrättsveckan", "en": "Paw Patrol: The Movie (in English) – Children’s Rights Week" }, "short_description": { "fi": "Ryhmä Hau on vauhdissa!", "sv": "PAW Patrol är på gång!", "en": "The PAW Patrol is on a roll!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60463", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-2/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4578, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:06.312481Z", "last_modified_time": "2023-09-07T14:27:06.312503Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725188.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4578/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:27:06.160351Z", "last_modified_time": "2023-11-14T06:13:42.541159Z", "date_published": null, "start_time": "2023-11-21T11:30:00Z", "end_time": "2023-11-21T13: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, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/1D1DB29F94C726A1A7831224C0935F51/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/1D1DB29F94C726A1A7831224C0935F51/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/1D1DB29F94C726A1A7831224C0935F51/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Open Art Studio for Toddlers-verkstäder", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60463/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27027, "next": "