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&hide_recurring_children=true&page=68
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=69", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=67" }, "data": [ { "id": "espoo_le:agmk23azki", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490357, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-02T11:55:09.060112Z", "last_modified_time": "2025-05-02T11:55:09.060124Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/8019d0df-34ae-4c4f-a585-fbf5342984b8.jpg", "cropping": "230,0,1150,921", "photographer_name": "", "alt_text": "lapsi maalaa vesiväreillä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490357/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-02T11:56:18.250540Z", "last_modified_time": "2025-05-02T11:56:18.250558Z", "date_published": "2025-05-02T11:40:00Z", "start_time": "2025-06-04T10:00:00Z", "end_time": "2025-06-04T10:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "name": { "fi": "Satutaidetuokio", "sv": "Sagomålning", "en": "Story painting session" }, "location_extra_info": { "fi": "Jaminurkka, Lastenmaa", "sv": "Jaminurkka, Lastenmaa", "en": "Jaminurkka, Lastenmaa" }, "description": { "fi": "<p>Tule kuuntelemaan satua ja taiteilemaan Sellon kirjaston Lastenmaan Jaminurkkaan. Kirjastolainen lukee ääneen tarinoita ja osallistujat maalaavat tai piirtävät. Kirjasto tarjoaa materiaalit. Alle kouluikäiset vanhemman kanssa.</p>", "sv": "<p>Kom och lyssna på en saga och gör lite konst i Jaminurkka på Sellobibliotekets Lastenmaa. En bibliotekarie läser berättelser högt och deltagarna målar eller ritar. Biblioteket tillhandahåller materialet. Barn under skolåldern med en förälder.</p>", "en": "<p>Come listen to a fairy tale and do some art at the Sello Library's Lastenmaa Jaminurkka. A librarian will read the stories aloud and participants will paint or draw. The library will provide materials. Children under school age must be accompanied by a parent.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Satuja ja taiteilua Sellon lastenmaassa", "sv": "Sagor och målning", "en": "Stories and painting" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23azki/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66139", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/", "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/", "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 667200, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-02T11:14:04.121642Z", "last_modified_time": "2025-05-02T11:14:04.121668Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769670.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/667200/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-02T11:14:04.029061Z", "last_modified_time": "2025-05-02T11:14:04.230096Z", "date_published": null, "start_time": "2025-06-14T11: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, "name": { "fi": "Kansantanssijat liikkeellä!", "sv": "Folkdansare på vift!", "en": "Folk dancers on the move!" }, "location_extra_info": null, "description": { "fi": "<p>Tule katsomaan suomenruotsalaisten kansantanssijoiden esityksiä Vuotorille, Vuotalon läheisyyteen.</p><p>Kesto: noin 60 min.<br>Vapaa pääsy</p>", "sv": "<p>Kom och se finlandssvenska folkdansare uppträda på Nortorget utanför Nordhuset.</p><p>Längd: Minst 60 min. <br>Fri entré</p>", "en": "<p>Come and see performances by Finnish-Swedish folk dancers at Vuotori, near Vuotalo.</p><p>Duration: about 60 min.<br>Free admission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule katsomaan suomenruotsalaisten kansantanssijoiden esityksiä Vuotorille, Vuotalon läheisyyteen.", "sv": "Kom och se finlandssvenska folkdansare uppträda på Nortorget utanför Nordhuset.", "en": "Come and see performances by Finnish-Swedish folk dancers at Vuotori, near Vuotalo." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F701F0E26ECA3C34CDDF97CADB4C619B/Kansantanssijat_liikkeella_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F701F0E26ECA3C34CDDF97CADB4C619B/Folkdansare_pa_vift_", "en": "http://www.vuotalo.fi/en/events/event/F701F0E26ECA3C34CDDF97CADB4C619B/Folk_dancers_on_the_move_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66139/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23a2gq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddci/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-04-28T08:41:00.215397Z", "last_modified_time": "2025-05-02T10:09:29.238183Z", "date_published": null, "start_time": "2025-05-12T05:00:00Z", "end_time": "2025-05-18T15: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, "name": { "fi": "Maaginen luontobingo Ison Omenan kirjastossa" }, "location_extra_info": null, "description": { "fi": "<p>Luontobingon voi värittää, tutut tyypit löytyy kirjastosta ja keväiset merkit luonnosta.</p><p>Luontobingo on sinua varten, joten voit havaita ja rastittaa löytämiäsi keväänmerkkejä ja tuttuja hahmoja niitä kohdattuasi.</p><p>Anna luonnon ja eläinten lumota sinut. Näe sateenkaaritaikuutta ja poutapilviä. Ja ennen kaikkea uppoudu maagisiin maailmoihin!</p><p>Nappaa luontobingo mukaasi lasten ja nuorten osastolta!</p><p><br></p><p>Uppoudu maagisiin tunnelmiin kirjaston maagisella viikolla 12.-18.5.2025!</p>", "sv": "<p>Bryt dig lös från vardagsverkligheten under bibliotekens Magiska vecka 12.-18.5.2025!</p><p>Den Magiska veckan tar besökarna med in i fantasivärldar på bibliotek på olika håll i staden.</p>", "en": "<p>Travel beyond your everyday reality during Magical Week on 12.-18.5.2025!</p><p>During Magical Week, you have the chance to immerse yourself in fantasy worlds in libraries around the city.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Luontobingo on osa Espoon kaupunginkirjastojen maagisen viikon ohjelmaa!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a2gq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23a5oi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a2xm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a3di/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a3qu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a35m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a4je/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a4vq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a5b4/?format=api" } ], "images": [ { "id": 151291, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T08:03:45.481404Z", "last_modified_time": "2024-05-23T08:03:45.481484Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Muistikerho.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Muistikerho", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151291/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-02T09:16:02.452531Z", "last_modified_time": "2025-05-02T09:16:02.452546Z", "date_published": null, "start_time": "2025-09-15T10:00:00Z", "end_time": "2025-12-08T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "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, "name": { "fi": "Leppävaaran senioreiden muistikerho" }, "location_extra_info": { "fi": "Akseli" }, "description": { "fi": "<p>Leppävaaran seniorit kokoontuvat aivojumpan merkeissä.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Leppävaaran seniorit kokoontuvat aivojumpan merkeissä." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a5oi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66136", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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/kulke:668/?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/kulke:755/?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:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 666535, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-02T09:13:59.510594Z", "last_modified_time": "2025-05-02T09:13:59.510611Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767273.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666535/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-02T09:13:59.458823Z", "last_modified_time": "2025-05-02T09:13:59.606326Z", "date_published": null, "start_time": "2025-06-13T07:00:00Z", "end_time": "2025-06-13T09: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, "name": { "fi": "Morsetus-koru – Kulttuuritila Merirasti", "sv": "Morsekodsmycke – Kulturlokalen Merirasti", "en": "Morse code bracelet – Cultural Space Merirasti" }, "location_extra_info": null, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja Kulttuuritila Merirastiin! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Merirastin taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>Morsetus-koru -taidepaja klo 10–12</b><br>Tällä kertaa teemme rannekoruja, joissa on salainen viesti. Morsetus tai sähkötys on viestintäkeino, jossa viesti koostuu morseaakkosista. Saat rannekorun mukaasi tai voit vaikka antaa sen (ja viestin) lahjaksi ystävälle.</p><p>Työpajoja ohjaa Chloé Mahy-Hulkko<br>Kielet: suomi, englanti, ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista</p>", "sv": "<p>Kom och skapa underbara konstföremål i Kulturlokalen Merirasti! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.</p><p>I Merirastis konstverkstäder skapar vi konst med olika teman och tekniker tillsammans. Om det regnar och stormar flyttar verkstaden inomhus.</p><p><b>Konstverkstaden Morsekodsmycke kl. 10–12</b><br>Den här gången gör vi armband med ett hemligt meddelande. Morsesignalering eller telegrafering är ett kommunikationssätt där meddelandet består av morsealfabetet. Du får ta med dig armbandet hem eller så kan du till exempel ge det (och meddelandet) som en gåva till en vän.</p><p>Chloé Mahy-Hulkko leder verkstäderna<br>Språk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>", "en": "<p>Come and create wonderful works of art at Cultural Space Merirasti! The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people.</p><p>In the art workshops at Merirasti, we will make art together, exploring various themes and techniques. In the event of rain or stormy weather, the workshop will take place indoors.</p><p><b>Art workshop: Morse code bracelet 10.00–12.00</b><br>This time, we will make bracelets with a hidden message. Morse code is a communication method in which the message uses codes in place of letters. You can take your bracelet with you or gift it (and the hidden message) to a friend, for example.</p><p>The workshops are led by Chloé Mahy-Hulkko<br>Languages: Finnish, English, French</p><p>Free entry, no advance registration.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja Kulttuuritila Merirastiin! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.", "sv": "Kom och skapa underbara konstföremål i Kulturlokalen Merirasti! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.", "en": "Come and create wonderful works of art at Cultural Space Merirasti! The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D53D16A5F6F702A8B831429A960FAF98/Morsetus-koru", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D53D16A5F6F702A8B831429A960FAF98/Morsekodsmycke", "en": "http://www.vuotalo.fi/en/events/event/D53D16A5F6F702A8B831429A960FAF98/Morse_code_bracelet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66136/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66134", "has_user_editable_resources": false, "location": null, "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: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/kulke:755/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 666534, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-02T09:13:59.190127Z", "last_modified_time": "2025-05-02T09:13:59.190145Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767271.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666534/?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": "2025-05-02T09:13:59.113011Z", "last_modified_time": "2025-05-02T09:13:59.289124Z", "date_published": null, "start_time": "2025-06-11T07:00:00Z", "end_time": "2025-06-11T09: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, "name": { "fi": "Makramen alkeet ja solmuhaasteet – Kulttuuritila Merirasti", "sv": "Nybörjarkurs i makramé och knututmaningar – Kulturlokalen Merirasti", "en": "Macramé for beginners and knot challenges – Cultural Space Merirasti" }, "location_extra_info": null, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja Kulttuuritila Merirastiin! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Merirastin taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy sisätiloihin.</p><p><b>Macramen alkeet ja solmuhaasteet -taidepaja<br> klo 10–12</b><br>Värikkäät matonkuteet ovat materiaalina, kun harjoittelemme erilaisia solmuja. Macrame-tekniikalla voit esimerkiksi tehdä kauniita rannekoruja tai avaimenperiä.</p><p>Työpajoja ohjaa Chloé Mahy-Hulkko<br>Kielet: suomi, englanti, ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista</p>", "sv": "<p>Kom och skapa underbara konstföremål i Kulturlokalen Merirasti! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.</p><p>I Merirastis konstverkstäder skapar vi konst med olika teman och tekniker tillsammans. Om det regnar och stormar flyttar verkstaden inomhus.</p><p><b>Konstverkstaden Nybörjarkurs i makramé och knututmaningar<br> kl. 10–12</b><br>Vi använder färglada mattrasor när vi övar olika knutar. Med tekniken makramé kan du till exempel göra vackra armband eller nyckelringar</p><p>Chloé Mahy-Hulkko leder verkstäderna<br>Språk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>", "en": "<p>Come and create wonderful works of art at Cultural Space Merirasti! The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people.</p><p>In the art workshops at Merirasti, we will make art together, exploring various themes and techniques. In the event of rain or stormy weather, the workshop will take place indoors.</p><p><b>Art workshop: Macramé for beginners and knot challenges<br> 10.00–12.00</b><br>We will use colourful rag strips as material for practising various knots. You can use the macramé technique to make pretty bracelets or key chains, for instance.</p><p>The workshops are led by Chloé Mahy-Hulkko<br>Languages: Finnish, English, French</p><p>Free entry, no advance registration.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja Kulttuuritila Merirastiin! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.", "sv": "Kom och skapa underbara konstföremål i Kulturlokalen Merirasti! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.", "en": "Come and create wonderful works of art at Cultural Space Merirasti! The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E7A569617B28A11756F523D9F1F7DE1A/Makramen_alkeet_ja_solmuhaasteet_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E7A569617B28A11756F523D9F1F7DE1A/Nyborjarkurs_i_makram_och_knututmaningar_", "en": "http://www.vuotalo.fi/en/events/event/E7A569617B28A11756F523D9F1F7DE1A/Macram_for_beginners_and_knot_challenges_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66134/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:35d13ef5-d2dc-47a6-b4b2-905fb7dd8f54", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?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:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Maksa" }, "price": { "fi": "13" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Retro_demo_25984642847" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 666533, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-02T09:02:37.141282Z", "last_modified_time": "2025-05-02T09:02:37.141297Z", "name": "Caption", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "cropping": "", "photographer_name": "Name", "alt_text": "Alt", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666533/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?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:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-05-02T07:41:13.934532Z", "last_modified_time": "2025-05-02T09:02:38.404533Z", "date_published": "2025-05-02T07:40:44Z", "start_time": "2025-05-02T07:46:00Z", "end_time": "2025-05-02T09:46:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 19, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": 1, "enrolment_start_time": "2025-05-02T08:00:00+03:00", "enrolment_end_time": "2025-05-03T08:00:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "Järjestäjä" }, "name": { "fi": "Retro demo 2.5" }, "location_extra_info": null, "description": { "fi": "<div><p>Eventin kuvaus</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "Kuvaus" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:35d13ef5-d2dc-47a6-b4b2-905fb7dd8f54/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23bcbu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a52q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a6hm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a6uq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a7ba/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a7mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23a7xy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23badm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23baqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ba34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bbiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bbvm/?format=api" } ], "images": [ { "id": 150441, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T10:39:42.517689Z", "last_modified_time": "2024-03-15T10:39:42.517717Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ToastMasters_uusikuva2024.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Toast masters osallistujia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150441/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-02T08:41:34.884301Z", "last_modified_time": "2025-05-02T08:41:34.884319Z", "date_published": null, "start_time": "2025-08-12T14:00:00Z", "end_time": "2025-12-30T17:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "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, "name": { "fi": "Toastmasters - tule paremmaksi puhujaksi", "sv": "Toastmasters – bli en bättre talare", "en": "Toastmasters - become a better speaker" }, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.</p><p>Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita!</p>", "sv": "<p>En grupp entusiaster träffas för att öva sina tal- och presentationsfärdigheter på engelska.</p>", "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.", "sv": "En grupp entusiaster träffas för att öva sina tal- och presentationsfärdigheter på engelska.", "en": "A group of enthusiasts get together to practise their speaking and presentation skills in English." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bcbu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66079", "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:33/?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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 11 €", "sv": "17 € / 11 €", "en": "17 € / 11 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/", "sv": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/", "en": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 666199, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-02T08:13:52.401473Z", "last_modified_time": "2025-05-02T08:13:52.401490Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771431.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666199/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-02T08:13:52.347292Z", "last_modified_time": "2025-05-02T08:13:52.499377Z", "date_published": null, "start_time": "2025-05-22T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "name": { "fi": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys", "sv": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys", "en": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys" }, "location_extra_info": null, "description": { "fi": "<p>Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!</p><p>Pukinmäen sirkus- ja teatterikoulun esitykset vievät sinut painottomuuden, planeettojen, tähtisumujen ja toisten ulottovuuksien maailmaan taituruuden ja mielikuvituksen siivittämänä. Luvassa on teatteria, akrobatiaa, ilma-akrobatiaa ja henkeäsalpaavia temppuja galaktisessa tunnelmassa. Älä jää maan pinnalle – tule mukaan matkalle!</p><p>Lisätietoa: <a>https://www.taidekoulut.fi</a></p><p>Kesto: 1 tunti</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C65424C0C158A37F7F131C7742547E52/Avaruus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C65424C0C158A37F7F131C7742547E52/Avaruus", "en": "http://www.malmitalo.fi/en/events/event/C65424C0C158A37F7F131C7742547E52/Avaruus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66079/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66078", "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:33/?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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 11 €", "sv": "17 € / 11 €", "en": "17 € / 11 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/", "sv": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/", "en": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 666198, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-02T08:13:52.181373Z", "last_modified_time": "2025-05-02T08:13:52.181393Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771430.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666198/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-02T08:13:52.107984Z", "last_modified_time": "2025-05-02T08:13:52.256225Z", "date_published": null, "start_time": "2025-05-22T14: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, "name": { "fi": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys", "sv": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys", "en": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys" }, "location_extra_info": null, "description": { "fi": "<p>Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!</p><p>Pukinmäen sirkus- ja teatterikoulun esitykset vievät sinut painottomuuden, planeettojen, tähtisumujen ja toisten ulottovuuksien maailmaan taituruuden ja mielikuvituksen siivittämänä. Luvassa on teatteria, akrobatiaa, ilma-akrobatiaa ja henkeäsalpaavia temppuja galaktisessa tunnelmassa. Älä jää maan pinnalle – tule mukaan matkalle!</p><p>Lisätietoa: <a>https://www.taidekoulut.fi</a></p><p>Kesto: 1 tunti</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1ADC7DFF3734F999AA28CABDB6464C2C/Avaruus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1ADC7DFF3734F999AA28CABDB6464C2C/Avaruus", "en": "http://www.malmitalo.fi/en/events/event/1ADC7DFF3734F999AA28CABDB6464C2C/Avaruus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66078/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66077", "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:33/?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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 11 €", "sv": "17 € / 11 €", "en": "17 € / 11 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/", "sv": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/", "en": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 666197, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-02T08:13:51.916392Z", "last_modified_time": "2025-05-02T08:13:51.916408Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771429.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666197/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-02T08:13:51.867255Z", "last_modified_time": "2025-05-02T08:13:51.999470Z", "date_published": null, "start_time": "2025-05-21T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "name": { "fi": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys", "sv": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys", "en": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys" }, "location_extra_info": null, "description": { "fi": "<p>Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!</p><p>Pukinmäen sirkus- ja teatterikoulun esitykset vievät sinut painottomuuden, planeettojen, tähtisumujen ja toisten ulottovuuksien maailmaan taituruuden ja mielikuvituksen siivittämänä. Luvassa on teatteria, akrobatiaa, ilma-akrobatiaa ja henkeäsalpaavia temppuja galaktisessa tunnelmassa. Älä jää maan pinnalle – tule mukaan matkalle!</p><p>Lisätietoa: <a>https://www.taidekoulut.fi</a></p><p>Kesto: 1 tunti</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/739DED39BA9F312109D382C1EDE7B7A9/Avaruus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/739DED39BA9F312109D382C1EDE7B7A9/Avaruus", "en": "http://www.malmitalo.fi/en/events/event/739DED39BA9F312109D382C1EDE7B7A9/Avaruus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66077/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66076", "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:33/?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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 11 €", "sv": "17 € / 11 €", "en": "17 € / 11 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/", "sv": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/", "en": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 666196, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-02T08:13:51.612508Z", "last_modified_time": "2025-05-02T08:13:51.612525Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771428.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666196/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-02T08:13:51.530585Z", "last_modified_time": "2025-05-02T08:13:51.714675Z", "date_published": null, "start_time": "2025-05-21T14: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, "name": { "fi": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys", "sv": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys", "en": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys" }, "location_extra_info": null, "description": { "fi": "<p>Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!</p><p>Pukinmäen sirkus- ja teatterikoulun esitykset vievät sinut painottomuuden, planeettojen, tähtisumujen ja toisten ulottovuuksien maailmaan taituruuden ja mielikuvituksen siivittämänä. Luvassa on teatteria, akrobatiaa, ilma-akrobatiaa ja henkeäsalpaavia temppuja galaktisessa tunnelmassa. Älä jää maan pinnalle – tule mukaan matkalle!</p><p>Lisätietoa: <a>https://www.taidekoulut.fi</a></p><p>Kesto: 1 tunti</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/28E2583931C28F285465246D12050A9E/Avaruus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/28E2583931C28F285465246D12050A9E/Avaruus", "en": "http://www.malmitalo.fi/en/events/event/28E2583931C28F285465246D12050A9E/Avaruus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66076/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65891", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 20 €", "sv": "17 € / 20 €", "en": "17 € / 20 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 446801, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-01T14:13:36.959803Z", "last_modified_time": "2025-04-01T14:13:36.959826Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767900.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446801/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-01T14:13:36.906425Z", "last_modified_time": "2025-05-02T08:13:49.849752Z", "date_published": null, "start_time": "2025-05-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "name": { "fi": "Teatteri Nirvana: HATKAT – ENSI-ILTA", "sv": "Teatteri Nirvana: HATKAT – PREMIÄR", "en": "Teatteri Nirvana: HATKAT – PREMIERE" }, "location_extra_info": null, "description": { "fi": "<p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754493/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754493/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754493/?affiliate=FSF\">HERE</a></u></p>" }, "provider_contact_info": null, "short_description": { "fi": "Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.", "sv": "Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.", "en": "Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C14512634CC6E4D1F26A606044334910/Teatteri_Nirvana_HATKAT_", "sv": "http://www.stoa.fi/sv/evenemang/event/C14512634CC6E4D1F26A606044334910/Teatteri_Nirvana_HATKAT_", "en": "http://www.stoa.fi/en/events/event/C14512634CC6E4D1F26A606044334910/Teatteri_Nirvana_HATKAT_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65891/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65890", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 20 €", "sv": "17 € / 20 €", "en": "17 € / 20 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 446800, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-01T14:13:36.558279Z", "last_modified_time": "2025-04-01T14:13:36.558296Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767898.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446800/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-01T14:13:36.538276Z", "last_modified_time": "2025-05-02T08:13:49.450072Z", "date_published": null, "start_time": "2025-05-09T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "name": { "fi": "PERUTTU Teatteri Nirvana: HATKAT", "sv": "INSTÄLLT Teatteri Nirvana: HATKAT", "en": "CANCELLED Teatteri Nirvana: HATKAT" }, "location_extra_info": null, "description": { "fi": "<p>Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.</p><p>Hatkat-esityksen ensi-ilta 3.5.2025 ja sitä seuraavat esitykset 7., 8. ja 9.5.2025 ovat valitettavasti peruttu. Uusi ensi-iltapäivä on lauantai 10.5.2025 klo 18.</p><p>Voit halutessasi vaihtaa lippusi toiseen esityspäivään olemalla yhteydessä lippu.fi-asiakaspalveluun: p. 030 514 214. Palvelu avoinna arkisin klo 10-16.</p><p>Vaihtoehtoisesti voit hakea lippurahojenne palautusta alla olevasta linkistä 9.5.2025 mennessä.<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Pahoittelemme aiheutunutta vaivaa!</p><p>-</p><p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.</p><p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience.</p><p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HERE</a></u></p>" }, "provider_contact_info": null, "short_description": { "fi": "Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.", "sv": "Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.", "en": "Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/11ECD297F7C6A0F84C73DCE8152AE8CD/PERUTTU_Teatteri_Nirvana_HATKAT_", "sv": "http://www.stoa.fi/sv/evenemang/event/11ECD297F7C6A0F84C73DCE8152AE8CD/INSTALLT_Teatteri_Nirvana_HATKAT_", "en": "http://www.stoa.fi/en/events/event/11ECD297F7C6A0F84C73DCE8152AE8CD/CANCELLED_Teatteri_Nirvana_HATKAT_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65890/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65889", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 20 €", "sv": "17 € / 20 €", "en": "17 € / 20 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 446799, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-01T14:13:36.349362Z", "last_modified_time": "2025-04-01T14:13:36.349420Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767896.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446799/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-01T14:13:36.333693Z", "last_modified_time": "2025-05-02T08:13:49.198710Z", "date_published": null, "start_time": "2025-05-08T15: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, "name": { "fi": "PERUTTU Teatteri Nirvana: HATKAT", "sv": "INSTÄLLT Teatteri Nirvana: HATKAT", "en": "CANCELLED Teatteri Nirvana: HATKAT" }, "location_extra_info": null, "description": { "fi": "<p>Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.</p><p>Hatkat-esityksen ensi-ilta 3.5.2025 ja sitä seuraavat esitykset 7., 8. ja 9.5.2025 ovat valitettavasti peruttu. Uusi ensi-iltapäivä on lauantai 10.5.2025 klo 18.</p><p>Voit halutessasi vaihtaa lippusi toiseen esityspäivään olemalla yhteydessä lippu.fi-asiakaspalveluun: p. 030 514 214. Palvelu avoinna arkisin klo 10-16.</p><p>Vaihtoehtoisesti voit hakea lippurahojenne palautusta alla olevasta linkistä 9.5.2025 mennessä.<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Pahoittelemme aiheutunutta vaivaa!</p><p>-</p><p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.</p><p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience.</p><p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HERE</a></u></p>" }, "provider_contact_info": null, "short_description": { "fi": "Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.", "sv": "Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.", "en": "Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/748954BDC69F26D4E625B4E579705361/PERUTTU_Teatteri_Nirvana_HATKAT_", "sv": "http://www.stoa.fi/sv/evenemang/event/748954BDC69F26D4E625B4E579705361/INSTALLT_Teatteri_Nirvana_HATKAT_", "en": "http://www.stoa.fi/en/events/event/748954BDC69F26D4E625B4E579705361/CANCELLED_Teatteri_Nirvana_HATKAT_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65889/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65897", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 20 €", "sv": "17 € / 20 €", "en": "17 € / 20 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 446798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-01T14:13:36.076008Z", "last_modified_time": "2025-04-01T14:13:36.076027Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767894.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-01T14:13:36.035555Z", "last_modified_time": "2025-05-02T08:13:48.889084Z", "date_published": null, "start_time": "2025-05-07T15: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, "name": { "fi": "PERUTTU Teatteri Nirvana: HATKAT", "sv": "INSTÄLLT Teatteri Nirvana: HATKAT", "en": "CANCELLED Teatteri Nirvana: HATKAT" }, "location_extra_info": null, "description": { "fi": "<p>Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.</p><p>Hatkat-esityksen ensi-ilta 3.5.2025 ja sitä seuraavat esitykset 7., 8. ja 9.5.2025 ovat valitettavasti peruttu. Uusi ensi-iltapäivä on lauantai 10.5.2025 klo 18.</p><p>Voit halutessasi vaihtaa lippusi toiseen esityspäivään olemalla yhteydessä lippu.fi-asiakaspalveluun: p. 030 514 214. Palvelu avoinna arkisin klo 10-16.</p><p>Vaihtoehtoisesti voit hakea lippurahojenne palautusta alla olevasta linkistä 9.5.2025 mennessä.<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Pahoittelemme aiheutunutta vaivaa!</p><p>-</p><p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.</p><p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience.</p><p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HERE</a></u></p>" }, "provider_contact_info": null, "short_description": { "fi": "Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.", "sv": "Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.", "en": "Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C3125D34A10F3ED03E721CD7B4D33D16/PERUTTU_Teatteri_Nirvana_HATKAT_", "sv": "http://www.stoa.fi/sv/evenemang/event/C3125D34A10F3ED03E721CD7B4D33D16/INSTALLT_Teatteri_Nirvana_HATKAT_", "en": "http://www.stoa.fi/en/events/event/C3125D34A10F3ED03E721CD7B4D33D16/CANCELLED_Teatteri_Nirvana_HATKAT_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65897/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65886", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "17 € / 20 €", "sv": "17 € / 20 €", "en": "17 € / 20 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 446797, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-01T14:13:35.409565Z", "last_modified_time": "2025-04-01T14:13:35.409584Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767892.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446797/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-01T14:13:35.366809Z", "last_modified_time": "2025-05-02T08:13:48.240938Z", "date_published": null, "start_time": "2025-05-03T15: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, "name": { "fi": "PERUTTU Teatteri Nirvana: HATKAT", "sv": "INSTÄLLT Teatteri Nirvana: HATKAT", "en": "CANCELLED Teatteri Nirvana: HATKAT" }, "location_extra_info": null, "description": { "fi": "<p>Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.</p><p>Hatkat-esityksen ensi-ilta 3.5.2025 ja sitä seuraavat esitykset 7., 8. ja 9.5.2025 ovat valitettavasti peruttu. Uusi ensi-iltapäivä on lauantai 10.5.2025 klo 18.</p><p>Voit halutessasi vaihtaa lippusi toiseen esityspäivään olemalla yhteydessä lippu.fi-asiakaspalveluun: p. 030 514 214. Palvelu avoinna arkisin klo 10-16.</p><p>Vaihtoehtoisesti voit hakea lippurahojenne palautusta alla olevasta linkistä 9.5.2025 mennessä.<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Pahoittelemme aiheutunutta vaivaa!</p><p>-</p><p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.</p><p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience.</p><p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HERE</a></u></p>" }, "provider_contact_info": null, "short_description": { "fi": "Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.", "sv": "Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.", "en": "Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F8D708A6C679342F1F5F103106B16B42/PERUTTU_Teatteri_Nirvana_HATKAT_", "sv": "http://www.stoa.fi/sv/evenemang/event/F8D708A6C679342F1F5F103106B16B42/INSTALLT_Teatteri_Nirvana_HATKAT_", "en": "http://www.stoa.fi/en/events/event/F8D708A6C679342F1F5F103106B16B42/CANCELLED_Teatteri_Nirvana_HATKAT_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65886/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23bcpq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddci/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-22T08:34:11.247871Z", "last_modified_time": "2025-05-02T08:01:08.201809Z", "date_published": null, "start_time": "2025-05-18T12:00:00Z", "end_time": "2025-05-18T12: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, "name": { "fi": "Maaginen viikko: Another Castle-kuoron esitys Lippulaivan kirjastossa" }, "location_extra_info": { "fi": "Salonki" }, "description": { "fi": "<p>Maaginen viikko huipentuu kuoroesitykseen, jossa pääset kuulemaan tuttuja säveliä kirjojen maailmoista!</p><p>Kokemus on kokonaisvaltainen elämys, sillä voit tilaisuuden jälkeen myös lainata kappaleisiin liittyviä kirjoja. Esitys sopii kaikenikäisille!</p><p>Another Castle on vuonna 2014 perustettu Helsingin nörtein enimmäkseen naiskuoro. 50-henkisen kuoron ohjelmistoon kuuluu laaja kirjo musiikillisia matkoja erilaisten fandomien maailmoihin. Kuoro inspiroituu scifistä, fantasiasta, animaatioista, sarjakuvista, peleistä, kirjallisuudesta, elokuvista ja tv-sarjoista. Kuorosovitukset kappaleista he tuottavat itse.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Maaginen viikko huipentuu kuoroesitykseen, jossa pääset kuulemaan tuttuja säveliä kirjojen maailmoista! Esitys sopii kaikenikäisille!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bcpq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23bc6e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddci/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/85cTYqwc4", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/tapiolankirjasto/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-04-29T10:31:41.467502Z", "last_modified_time": "2025-05-02T08:00:42.257507Z", "date_published": "2025-04-29T10:18:00Z", "start_time": "2025-05-17T10:00:00Z", "end_time": "2025-05-17T13: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": { "fi": "Tapiolan kirjasto", "sv": "Tapiolan kirjasto", "en": "Tapiolan kirjasto" }, "name": { "fi": "Therian miitti Tapiolan kirjastossa", "sv": "Therian möte", "en": "Therian meeting" }, "location_extra_info": null, "description": { "fi": "<p><strong>Oletko kiinnostunut Therian-kulttuurista? Tule mukaan rentoon ja luovaan tapahtumaan, jossa voit tavata muita samasta aiheesta kiinnostuneita! Tapahtuma on suunnattu peruskouluikäisille.</strong></p><p>Tapahtumassa on myös erilaisia aktiviteetteja:</p><ul><li><strong>Luovuuspiste</strong>: Sanataidetta, tarinoiden kirjoittamista, piirtämistä ja maalaamista</li><li><strong>Hengailupiste</strong>: Rentoa olemista, juttelua, säkkituoleja ja tyynyjä</li><li><strong>Open Stage</strong>: Tule pitämään oma ohjelmasi – tietovisa, infotuokio, työpaja... Ilmoittaudu tekstarilla tai sähköpostilla, yhteistiedot löydät alta</li><li><strong>Vanhempien kohtaamispaikka</strong>: Tule keskustelemaan muiden vanhempien kanssa Therian-kulttuurista</li></ul><p>Tule sellaisena kuin olet – nähdään!</p><p>Noudatamme tapahtumassa Espoon kaupungin turvallisemman tilan periaatteita, löydät ne täältä: <a href=\"https://www.espoo.fi/fi/kulttuuriespoon-turvallisemman-tilan-periaatteet\">KulttuuriEspoon turvallisemman tilan periaatteet.</a></p><p>Lisätietoja tapahtumasta, ja ilmoittautumiset Open Sgatelle:</p><ul><li><strong>Laura </strong>(040 6343827 / laura.hakomaa [at] espoo.fi)</li><li><strong>Emilia </strong>(040 6344438 / emilia.linnimaki [at] espoo.fi)</li></ul>", "sv": "<p><strong>Är du intresserad av therian-kulturen? Kom med på ett avslappnat och kreativt evenemang där du kan träffa andra med samma intresse! Evenemanget riktar sig till grundskoleelever.</strong></p><p>Det finns också olika aktiviteter på plats:</p><ul><li><strong>Kreativ hörna:</strong> Ordkonst, skrivande av berättelser, teckning och målning</li><li><strong>Chillhörna:</strong> Avslappnat häng, samtal, sittsäckar och kuddar</li><li><strong>Open Stage</strong>: Håll ditt eget program – quiz, infotillfälle, verkstad... Anmäl dig via sms eller e-post, kontaktuppgifterna finns nedan</li><li><strong>Föräldraträffpunkt: </strong>Kom och diskutera therian-kulturen med andra föräldrar</li></ul><p>Kom som du är – vi ses!</p><p>Vi följer Esbo stads principer för tryggare rum. Du hittar dem här: <a href=\"https://www.espoo.fi/sv/kulturesbo/kulturesbos-principer-tryggare-rum\">KulturEsbos principer för tryggare rum</a></p><p>Mer information om evenemanget och anmälan till Open Stage:</p><ul><li><strong>Laura </strong>(040 6343827 / laura.hakomaa [at] espoo.fi)</li><li><strong>Emilia </strong>(040 6344438 / emilia.linnimaki [at] espoo.fi)</li></ul>", "en": "<p>Are you interested in Therian culture? Join us for a relaxed and creative event where you can meet others who share the same interest! This event is aimed at school-aged children.</p><p>There will be a variety of activities:</p><ul><li><strong>Creativity Spot:</strong> Creative writing, storytelling, drawing, and painting</li><li><strong>Chill Zone:</strong> Casual hanging out, chatting, bean bags and pillows</li><li><strong>Open Stage: </strong>Host your own segment – quiz, info session, workshop... Sign up by text or email, contact info below</li><li><strong>Parent Meeting Point:</strong> Connect with other parents to discuss Therian culture</li></ul><p>Come as you are – see you there!</p><p>We follow the City of Espoo’s safer space guidelines. You can find them here: <a href=\"https://www.espoo.fi/en/cultureespoo/cultureespoos-principles-safer-space\">CultureEspoo's principles for safer space</a></p><p>More information about the event and registration on Open Stage:</p><ul><li><strong>Laura </strong>(040 6343827 / laura.hakomaa [at] espoo.fi)</li><li><strong>Emilia </strong>(040 6344438 / emilia.linnimaki [at] espoo.fi)</li></ul>" }, "provider_contact_info": null, "short_description": { "fi": "Oletko kiinnostunut Therian-kulttuurista? Tule mukaan rentoon ja luovaan tapahtumaan, jossa voit tavata muita samasta aiheesta kiinnostuneita!", "sv": "Är du intresserad av therian-kulturen? Kom med på ett avslappnat och kreativt evenemang där du kan träffa andra med samma intresse!", "en": "Are you interested in Therian culture? Join us for a relaxed and creative event where you can meet others who share the same interest! " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bc6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:28f7d800-1c27-f011-8c4e-000d3ab33a80", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://www.Youtube.com", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.Instagram.com", "language": "fi" }, { "name": "extlink_whatsapp", "link": "https://www.Whatsapp.com", "language": "fi" }, { "name": "extlink_facebook", "link": "https://www.Facebook.com", "language": "fi" }, { "name": "extlink_snapchat", "link": "https://www.Snapchat.com", "language": "fi" }, { "name": "extlink_reddit", "link": "https://www.Reddit.com", "language": "fi" }, { "name": "extlink_tumblr", "link": "https://www.Tumblr.com", "language": "fi" }, { "name": "extlink_twitter", "link": "https://www.X.com", "language": "fi" }, { "name": "extlink_tiktok", "link": "https://www.Tiktok.com", "language": "fi" } ], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Peruslippu" }, "price": { "fi": "12" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=KuTaSu_-_sprint_9_review_retro_252025495020873" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 665859, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-02T07:25:59.587778Z", "last_modified_time": "2025-05-02T07:25:59.587796Z", "name": "Retro", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "cropping": "", "photographer_name": "Kuvaaja", "alt_text": "Retro", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/665859/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Retro", "url": "https://www.youtube.com", "alt_text": "Retro" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-05-02T06:11:03.602209Z", "last_modified_time": "2025-05-02T07:26:00.775226Z", "date_published": "2025-05-02T06:09:30Z", "start_time": "2025-05-02T07:00:00Z", "end_time": "2025-05-02T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 12, "audience_max_age": 55, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 2, "minimum_attendee_capacity": 1, "enrolment_start_time": "2025-05-02T05:00:00+03:00", "enrolment_end_time": "2025-05-02T07:30:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "Jiiri" }, "name": { "fi": "KuTaSu - sprint 9 review & retro 2.5.2025 Muutettu Päätapahtuma" }, "location_extra_info": null, "description": { "fi": "Retro - Demo sprint 9 review & retro 2.5.2025 Muutettu" }, "provider_contact_info": null, "short_description": { "fi": "sprint 9 review & retro 2.5.2025" }, "info_url": { "fi": "https://tapahtumat.hel.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:28f7d800-1c27-f011-8c4e-000d3ab33a80/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19298, "next": "