Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=699®istration__remaining_waiting_list_capacity__isnull=true
{ "meta": { "count": 32740, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=700®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=698®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "kulke:64355", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152281, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-04T10:14:54.510254Z", "last_modified_time": "2024-09-04T10:14:54.510273Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756874.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152281/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-09-04T10:14:54.463256Z", "last_modified_time": "2024-09-23T13:14:55.554652Z", "date_published": null, "start_time": "2024-10-04T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kuoppa siellä, kuoppa täällä, kuopat hoituu joka säällä. Missä maa on tasainen ja kuoppaa kaivataan, ilolla ja ylpeydellä hommat hoitaa kuopankaivajat!", "sv": "En grop här, en grop där, gropar tas om hand i alla väder. Där marken är plan och i behov av en grop, kommer gropgrävarna och gör jobbet med glädje och stolthet!", "en": "A hole here, another there. We dig holes in any weather. If the ground is flat and you need a hole, it’s our pride and joy to be your mole!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3207DBF80233E7867AC0900251C35F34/Teatteri_Rollo_Kuopankaivajat", "sv": "http://www.annantalo.fi/sv/evenemang/event/3207DBF80233E7867AC0900251C35F34/Teater_Rollo_Kuopankaivajat", "en": "http://www.annantalo.fi/en/events/event/3207DBF80233E7867AC0900251C35F34/Theatre_Company_Rollo_Kuopankaivajat_Diggers_" }, "description": { "fi": "<p>Kuoppa siellä, kuoppa täällä, kuopat hoituu joka säällä. Missä maa on tasainen ja kuoppaa kaivataan, ilolla ja ylpeydellä hommat hoitaa kuopankaivajat!</p><p>Oy Kuoppa Ab:n kuopankaivaja Hiekkanen, Kivinen ja Tasanen saapuvat työmaalle kaivamaan kuopan. Ennen kuin päästään lapiohommiin, on kaivajilla monenlaista puuhaa: pitää etsiä kuopalle paikka; pitää merkitä työmaa; pitää päättää tehdäänkö peruskuoppa, vai kuinka olisi juhlakuoppa? Vai sittenkin ilmakuoppa? Työmaan valmisteluun tarvitaan monenlaista merkkiä, tolppaa ja kylttiä, hanskoja, mittoja ja muutama työlaulukin!<br> <br>Tämä musiikkipitoinen työmaa innostaa niin päiväkoti-ikäisiä kuin alakoulun pienimpiä oppilaita puhumattakaan perheen työmiehistä ja -naisista!<br> <br>Ohjaus: Sanna Monto <br>Käsikirjoitus ja esiintyjät: Wisa Heinonen, Janne Immonen, Sanna Monto <br>Musiikki: Janne Immonen <br>Laulujen sanat: Wisa Heinonen <br>Lavastus: Kati Lamppu <br>Puvustus: Niina Huovinen <br>Tekniikka: Juha Skukin <br> <br>Ikäsuositus: 3-7 vuotiaat <br>Esityksen kesto: noin 40 minuuttia <br>Kieli: suomi</p><p>Liput: ryhmälippu 6 € (väh. 5 hlöä). Opettajat ja ohjaajat maksutta.<br>Muut liput: 10 €</p><p>Lippuvaraukset: rollo@rollo.fi</p>", "sv": "<p>En grop här, en grop där, gropar tas om hand i alla väder. Där marken är plan och i behov av en grop, kommer gropgrävarna och gör jobbet med glädje och stolthet!</p><p>Gropgrävarna Hiekkanen, Kivinen och Tasanen från Oy Kuoppa Ab kommer till en byggarbetsplats för att gräva en grop. Innan de kan sätta igång med spaden är det mycket som ska göras: de måste hitta en plats att gräva gropen på, markera platsen, bestämma om det ska vara en vanlig grop eller kanske en festlig grop? Eller hur skulle det vara med en luftgrop? För att förbereda arbetsplatsen krävs en mängd olika märken, stolpar och skyltar, handskar, mått och till och med några arbetsramsor!</p><p>Den här musikfyllda arbetsplatsen passar både förskolebarn och lågstadiets minsta, för att inte tala om de arbetsföra männen och kvinnorna i familjen!</p><p>Regi: Sanna Monto<br>Manus och skådespelare: Wisa Heinonen, Janne Immonen, Sanna Monto<br>Musik: Janne Immonen<br>Sångtexter: Wisa Heinonen<br>Scenografi: Kati Lamppu<br>Kostymer: Niina Huovinen<br>Teknik: Juha Skukin</p><p>Åldersrekommendation: 3–7-åringar<br>Föreställningens längd: ca 40 minuter<br>Språk: finska</p><p>Biljetter: gruppbiljett 6 € (minst 5 personer). Lärare och handledare utan kostnad.<br>Övriga biljetter: 10 €<br>Biljettreservationer: rollo@rollo.fi</p>", "en": "<p>A hole here, another there. We dig holes in any weather. If the ground is flat and you need a hole, it’s our pride and joy to be your mole!</p><p>Oy Kuoppa Ab's hole diggers Hiekkanen, Kivinen and Tasanen arrive at a construction site to dig a hole. Before the shovelling can begin, the diggers have a lot do: find a place for the hole; mark the construction site; decide whether to create a basic hole or whole hole? Or should it be a holy hole? After the construction site is ready, you lots of signs, posts and placards, gloves, measurements and a few work songs!</p><p>This music-rich construction yard is an inspiration for both daycare-aged children and younger primary school pupils, not to mention the family’s working men and women!</p><p>Director: Sanna Monto<br>Script and cast: Wisa Heinonen, Janne Immonen, Sanna Monto<br>Music: Janne Immonen<br>Song lyrics: Wisa Heinonen<br>Stage design: Kati Lamp<br>Costumes: Niina Huovinen<br>Technique: Juha Skukin</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 40 minutes<br>Language: Finnish</p><p>Tickets: group ticket €6 (min. 5 persons). Teachers and instructors free of charge.<br>Other tickets: €10<br>Ticket reservations: rollo@rollo.fi</p>" }, "name": { "fi": "Teatteri Rollo: Kuopankaivajat", "sv": "Teater Rollo: Kuopankaivajat", "en": "Theatre Company Rollo: Kuopankaivajat (Diggers)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64355/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64367", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-09T12:16:26.296220Z", "last_modified_time": "2024-08-09T12:16:26.296236Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756318.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152069/?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": "2024-08-09T12:16:26.280919Z", "last_modified_time": "2024-09-23T13:14:52.998676Z", "date_published": null, "start_time": "2024-09-27T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.", "sv": "Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.", "en": "Looped square is a square where we open up, dig into and channel our own artistic callings." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/42AC00E709ABF313DF56A65BFC7E1C6A/Pontus_Linder_Erwin_Semler_Looped_Square_", "sv": "http://www.stoa.fi/sv/evenemang/event/42AC00E709ABF313DF56A65BFC7E1C6A/Pontus_Linder_Erwin_Semler_Looped_Square_", "en": "http://www.stoa.fi/en/events/event/42AC00E709ABF313DF56A65BFC7E1C6A/Pontus_Linder_Erwin_Semler_Looped_Square_" }, "description": { "fi": "<p>Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.</p><p>Esitys syntyy yhteistyössä yleisön kanssa. Yleisö on mukana vaikuttamassa sisältöön vapaaehtoisten interaktiivisten hetkien aikana. Esteettisesti esitys liikkuu katutaiteen, nykytanssin ja teatterin välimaastossa. Nopeita, voimakkaita ja herkkiä liikkeitä sekä ripaus kuivaa huumoria! Esityksen yhteydessä on tanssifilmien installaatio, joka koostuu ammattilaisten ja ei-ammattilaisten teoksista.</p><p>Kesto: 50 min<br>Ikäsuositus: yläkouluikäiset<br>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.</p><p>Föreställningen skapas i samråd med publiken, de är med och påverkar innehållet under frivilliga interaktiva moment. Estetiskt rör sig föreställningen mellan streetperformance, nutida dans och teater. Snabba, starka och ömma rörelser samt en gnutta torr humor. I anslutning till föreställningen finns en dansfilmsinstallation, den består av en mix och professionella och icke-professionella utövares verk.</p><p>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p>", "en": "<p>Looped square is a square where we open up, dig into and channel our own artistic callings.</p><p>The performance is created together with the audience, they participate and influence the content during voluntary interactive moments. Aesthetically, the show moves between street performance, contemporary dance and theater. Fast, strong and tender movements as well as a touch of dry humor. In connection with the performance there is a dance film installation, it consists of a mix and the works of professional and non-professional practitioners.</p><p>Ask for more information and register: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Pontus Linder & Erwin Semler: Looped Square – työpaja ja esitys osana Nomads-festivaalia", "sv": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festivalen", "en": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64367/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64366", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152068, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-09T12:16:26.186215Z", "last_modified_time": "2024-08-09T12:16:26.186244Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756317.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152068/?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": "2024-08-09T12:16:26.162930Z", "last_modified_time": "2024-09-23T13:14:52.905790Z", "date_published": null, "start_time": "2024-09-27T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.", "sv": "Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.", "en": "Looped square is a square where we open up, dig into and channel our own artistic callings." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F928FDC8FE6A5E83AF902C29A96E841D/Pontus_Linder_Erwin_Semler_Looped_Square_", "sv": "http://www.stoa.fi/sv/evenemang/event/F928FDC8FE6A5E83AF902C29A96E841D/Pontus_Linder_Erwin_Semler_Looped_Square_", "en": "http://www.stoa.fi/en/events/event/F928FDC8FE6A5E83AF902C29A96E841D/Pontus_Linder_Erwin_Semler_Looped_Square_" }, "description": { "fi": "<p>Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.</p><p>Esitys syntyy yhteistyössä yleisön kanssa. Yleisö on mukana vaikuttamassa sisältöön vapaaehtoisten interaktiivisten hetkien aikana. Esteettisesti esitys liikkuu katutaiteen, nykytanssin ja teatterin välimaastossa. Nopeita, voimakkaita ja herkkiä liikkeitä sekä ripaus kuivaa huumoria! Esityksen yhteydessä on tanssifilmien installaatio, joka koostuu ammattilaisten ja ei-ammattilaisten teoksista.</p><p>Kesto: 50 min<br>Ikäsuositus: yläkouluikäiset<br>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.</p><p>Föreställningen skapas i samråd med publiken, de är med och påverkar innehållet under frivilliga interaktiva moment. Estetiskt rör sig föreställningen mellan streetperformance, nutida dans och teater. Snabba, starka och ömma rörelser samt en gnutta torr humor. I anslutning till föreställningen finns en dansfilmsinstallation, den består av en mix och professionella och icke-professionella utövares verk.</p><p>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p>", "en": "<p>Looped square is a square where we open up, dig into and channel our own artistic callings.</p><p>The performance is created together with the audience, they participate and influence the content during voluntary interactive moments. Aesthetically, the show moves between street performance, contemporary dance and theater. Fast, strong and tender movements as well as a touch of dry humor. In connection with the performance there is a dance film installation, it consists of a mix and the works of professional and non-professional practitioners.</p><p>Ask for more information and register: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Pontus Linder & Erwin Semler: Looped Square – työpaja ja esitys osana Nomads-festivaalia", "sv": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festivalen", "en": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64366/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64365", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152067, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-09T12:16:26.039134Z", "last_modified_time": "2024-08-09T12:16:26.039151Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756316.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152067/?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": "2024-08-09T12:16:26.018889Z", "last_modified_time": "2024-09-23T13:14:52.748357Z", "date_published": null, "start_time": "2024-09-27T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.", "sv": "Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.", "en": "Looped square is a square where we open up, dig into and channel our own artistic callings." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CBFC34B58DFDB09F7113C8C491C21334/Pontus_Linder_Erwin_Semler_Looped_Square_", "sv": "http://www.stoa.fi/sv/evenemang/event/CBFC34B58DFDB09F7113C8C491C21334/Pontus_Linder_Erwin_Semler_Looped_Square_", "en": "http://www.stoa.fi/en/events/event/CBFC34B58DFDB09F7113C8C491C21334/Pontus_Linder_Erwin_Semler_Looped_Square_" }, "description": { "fi": "<p>Looped Square on kahden katutanssin ammattilaisen, Pontus Linderin ja Erwin Semlerin, luotsaama vauhdikas työpaja- ja esityskokonaisuus.</p><p>Esitys syntyy yhteistyössä yleisön kanssa. Yleisö on mukana vaikuttamassa sisältöön vapaaehtoisten interaktiivisten hetkien aikana. Esteettisesti esitys liikkuu katutaiteen, nykytanssin ja teatterin välimaastossa. Nopeita, voimakkaita ja herkkiä liikkeitä sekä ripaus kuivaa huumoria! Esityksen yhteydessä on tanssifilmien installaatio, joka koostuu ammattilaisten ja ei-ammattilaisten teoksista.</p><p>Kesto: 50 min<br>Ikäsuositus: yläkouluikäiset<br>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Looped square är ett torg där vi öppnar upp, gräver i och kanaliserar våra konstnärliga kall.</p><p>Föreställningen skapas i samråd med publiken, de är med och påverkar innehållet under frivilliga interaktiva moment. Estetiskt rör sig föreställningen mellan streetperformance, nutida dans och teater. Snabba, starka och ömma rörelser samt en gnutta torr humor. I anslutning till föreställningen finns en dansfilmsinstallation, den består av en mix och professionella och icke-professionella utövares verk.</p><p>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p>", "en": "<p>Looped square is a square where we open up, dig into and channel our own artistic callings.</p><p>The performance is created together with the audience, they participate and influence the content during voluntary interactive moments. Aesthetically, the show moves between street performance, contemporary dance and theater. Fast, strong and tender movements as well as a touch of dry humor. In connection with the performance there is a dance film installation, it consists of a mix and the works of professional and non-professional practitioners.</p><p>Ask for more information and register: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Pontus Linder & Erwin Semler: Looped Square – työpaja ja esitys osana Nomads-festivaalia", "sv": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festivalen", "en": "Pontus Linder & Erwin Semler: Looped Square – Nomads Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64365/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi4d47hji", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47h4m/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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": "2024-09-05T10:46:54.563310Z", "last_modified_time": "2024-09-23T12:34:01.536462Z", "date_published": null, "start_time": "2024-09-26T13:00:00Z", "end_time": "2024-09-26T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "HeroClix-pelin opetusta ja demopelejä " }, "info_url": null, "description": { "fi": "<p> </p><p>HeroClix-pelin opetusta ja demopelejä toistaiseksi keskiviikkoisin ja torstaisin klo 16–17 Nuortenosasto Kibessä varhaisnuorille ja nuorille!</p><p> </p><p>Ohjaaja tuo peliin tarvittavat miniatyyrifiguureista kootut tiimit, pelikartan, kortit sekä ohjeet ja kertoo pelistä sekä opettaa sen pelaamista.</p><p> </p><p>\"HeroClix is a tactical combat game where you put heroes and villains from your favorite comics, movies and TV shows in head to head combat.</p><p>If you’ve never played HeroClix before or just want to play the simplest version of the game, you’ll need to learn the basics.\"</p><p><br></p><p>Ohjaaja: vapaaehtoinen</p>" }, "name": { "fi": "PERUTTU 26.9. HeroClix-pelin opetusta ja demopelejä " }, "provider_contact_info": null, "location_extra_info": { "fi": "Kibe" }, "provider": { "fi": "Ohjaaja: vapaaehtoinen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hji/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi4d47hl4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47h4m/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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": "2024-09-05T10:46:54.056753Z", "last_modified_time": "2024-09-23T12:32:17.411406Z", "date_published": null, "start_time": "2024-09-25T13:00:00Z", "end_time": "2024-09-25T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "HeroClix-pelin opetusta ja demopelejä " }, "info_url": null, "description": { "fi": "<p> </p><p>HeroClix-pelin opetusta ja demopelejä toistaiseksi keskiviikkoisin ja torstaisin klo 16–17 Nuortenosasto Kibessä varhaisnuorille ja nuorille!</p><p> </p><p>Ohjaaja tuo peliin tarvittavat miniatyyrifiguureista kootut tiimit, pelikartan, kortit sekä ohjeet ja kertoo pelistä sekä opettaa sen pelaamista.</p><p> </p><p>\"HeroClix is a tactical combat game where you put heroes and villains from your favorite comics, movies and TV shows in head to head combat.</p><p>If you’ve never played HeroClix before or just want to play the simplest version of the game, you’ll need to learn the basics.\"</p><p><br></p><p>Ohjaaja: vapaaehtoinen</p>" }, "name": { "fi": "PERUTTU 25.9. HeroClix-pelin opetusta ja demopelejä " }, "provider_contact_info": null, "location_extra_info": { "fi": "Kibe" }, "provider": { "fi": "Ohjaaja: vapaaehtoinen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47hl4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64598", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?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:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T12:15:08.088572Z", "last_modified_time": "2024-09-23T12:15:08.088589Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758387.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-09-23T12:15:08.034164Z", "last_modified_time": "2024-09-23T12:15:08.228455Z", "date_published": null, "start_time": "2024-09-28T10:00:00Z", "end_time": "2024-09-28T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lämpimästi tervetuloa juhlistamaan Mur ja metsän valo -kirjan julkaisemista Annantalon kahvilaan lauantaina 28.syyskuuta klo 13!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1E5FF4F4C9A87E8352D007ED8BDD58F1/Mur_ja_metsan_valo_kirjan_julkistaminen_" }, "description": { "fi": "<p>Lämpimästi tervetuloa juhlistamaan Mur ja metsän valo -kirjan julkaisemista Annantalon kahvilaan lauantaina 28.syyskuuta klo 13!</p><p>Paikalla ovat kirjantekijät Kaisa Happonen ja Anne Vasko. <br> <br>Tule kuuntelemaan tarina uudesta kirjasta, ihastelemaan kuvitusnäyttelyä ja kohottamaan mustikkamehumalja! <br> <br>Tilaisuudessa on mahdollisuus hankkia uusi kirja signeerattuna.</p><p>Anne Vaskon kuvituksia voi ihastella ja tarkastella kuvitusnäyttelyssä Annantalon kahvilassa 21. syyskuuta - 19. lokakuuta.</p>" }, "name": { "fi": "Mur ja metsän valo–kirjan julkistaminen" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5ywxuy", "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/espoo_le:agggfz675q/?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:p2771/?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:p3466/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T11:34:07.847684Z", "last_modified_time": "2024-09-23T11:34:07.847704Z", "date_published": "2024-09-23T11:30:00Z", "start_time": "2024-10-14T10:00:00Z", "end_time": "2024-10-14T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pajassa painatetaan omiin vaatteisiin heijastavia kuvia.", "sv": "I verkstaden trycks reflekterande bilder på egna kläder.", "en": "In the workshop, reflecting images are printed onto personal clothing." }, "info_url": null, "description": { "fi": "<p>Tule mukaan syyslomalla kirjaston avoimeen pajaan ja painata vaatteesi loistavaksi! Valmistamme heijastavia kuvia kankaalle heijastavasta vinyylistä. Ota mukaan omat silitettävät vaatteesi tai asusteesi ja loihdi niistä uniikit! Kirjasto tarjoaa materiaalit ja runsaan valikoiman kuviovaihtoehtoja.</p>", "sv": "<p>Kom med under höstlovet till bibliotekets öppna verkstad och gör dina kläder lysande. Vi kommer att skapa reflekterande bilder på tyg med reflekterande vinyl. Ta med egna strykbara kläder eller accessoarer och gör dem unika. Biblioteket står för material och ett brett urval av mönsteralternativ. </p>", "en": "<p>Join us during the autumn brake for an open workshop at the library and make your clothes shine! We will create reflective images on fabric using reflective vinyl. Bring your own ironable clothes or accessories and turn them into unique pieces. The library will provide the materials and a wide selection of design options. </p>" }, "name": { "fi": "Heijastava paja Ison Omenan kirjastossa", "sv": "Reflex verkstad i Iso Omenans bibliotek", "en": "Reflecting Workshop At Iso Omena Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5ywxuy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5k4cyy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-16T10:40:38.027289Z", "last_modified_time": "2024-09-23T10:53:29.659556Z", "date_published": "2024-09-23T04:59:00Z", "start_time": "2024-09-23T05:00:00Z", "end_time": "2024-10-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Linda Cederbergin taidenäyttely \"Hiljaiset pinnat\" Entressen kirjaston Galleria Betonissa 23.9.-13.10.2024. Tervetuloa!", "sv": "Linda Cederbergs utställning \"Hiljaiset pinnat\" i Entressebiblioteket under tiden 23.9.-13.10.2024.", "en": "Art exhibition \"Hiljaiset pinnat\" by Linda Cederberg in Entresse Library during 23.9.-13.10.2024." }, "info_url": null, "description": { "fi": "<p>Linda Cederberg on monipuolinen taiteilija, joka on laajentanut ilmaisutapaansa perinteisen maalaustaiteen lisäksi uusien materiaalien ja tekniikoiden tutkimiseen. Viime vuosina hän on keskittynyt työskentelemään pleksilasin, lasin ja hartsin parissa, mikä on tuonut hänen taiteeseensa uusia ulottuvuuksia.</p><p><br></p><p>Cederbergin näyttelyt eivät koskaan tarjoa tavanomaisia tai ennalta-arvattavia elämyksiä. Hän pyrkii herättämään katsojassa hämmennyksen ja deja vu -tunteen, ikään kuin muodot ja värit olisivat peräisin jostakin unesta tai kaukaisista muistoista, joiden todenperäisyydestä ei voi olla varma. Hänen teoksensa luovat visuaalisia kerroksia, jotka ovat yhtä aikaa haikeita ja läheisiä, mutta samalla etäisiä.</p><p><br></p><p>Tutkimalla musteen ja hartsin värien monimuotoisuutta, Cederberg rakentaa teoksensa kerroksittain. Hänen työnsä herättävät kysymyksiä ja tunteita, jotka saavat katsojan pohtimaan suhdettaan ympäröivään maailmaan.</p>", "sv": "<p>Välkommen att besöka Linda Cederbergs utställning \"Hiljaiset pinnat\" i Entressebiblioteket under tiden 23.9.-13.10.2024. Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"Hiljaiset pinnat\" by Linda Cederberg in Entresse Library during 23.9.-13.10.2024. Welcome!</p>" }, "name": { "fi": "Linda Cederberg: Hiljaiset pinnat 23.9.-13.10.2024", "sv": "Linda Cederberg: Hiljaiset pinnat 23.9.-13.10.2024", "en": "Linda Cederberg: Hiljaiset pinnat 23.9.-13.10.2024" }, "provider_contact_info": null, "location_extra_info": { "fi": "Galleria Betoni" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4cyy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5k4dee", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4duu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150389, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T10:29:23.628269Z", "last_modified_time": "2024-03-19T10:29:23.628303Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Satuhetki3.png", "name": "", "cropping": "62,0,331,268", "photographer_name": "", "alt_text": "Kuvassa on lapsia lukemassa kirjoja. Yksi lapsi istuu kynien päällä, toinen kirjojen ja yksi lattialla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150389/?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": "2024-09-23T10:21:13.463731Z", "last_modified_time": "2024-09-23T10:31:40.136728Z", "date_published": null, "start_time": "2024-09-26T14:00:00Z", "end_time": "2024-09-26T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa kuuntelemaan satuja englanniksi!\n\nSatuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.", "sv": "Välkommen att lyssna på sagor på engelska!\n\nSagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.", "en": "Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in! " }, "info_url": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan satuja englanniksi!</p><p>Satuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.</p>", "sv": "<p>Välkommen att lyssna på sagor på engelska!</p><p>Sagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.</p>", "en": "<p>Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in!</p><p>The Story times will be held on Thursdays 26.9., 24.10., 21.11. and 19.12. at 5 pm. Welcome!</p>" }, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in english" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dee/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5k4dja", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4duu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150389, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T10:29:23.628269Z", "last_modified_time": "2024-03-19T10:29:23.628303Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Satuhetki3.png", "name": "", "cropping": "62,0,331,268", "photographer_name": "", "alt_text": "Kuvassa on lapsia lukemassa kirjoja. Yksi lapsi istuu kynien päällä, toinen kirjojen ja yksi lattialla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150389/?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": "2024-09-23T10:21:14.160847Z", "last_modified_time": "2024-09-23T10:31:40.073852Z", "date_published": null, "start_time": "2024-10-24T14:00:00Z", "end_time": "2024-10-24T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa kuuntelemaan satuja englanniksi!\n\nSatuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.", "sv": "Välkommen att lyssna på sagor på engelska!\n\nSagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.", "en": "Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in! " }, "info_url": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan satuja englanniksi!</p><p>Satuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.</p>", "sv": "<p>Välkommen att lyssna på sagor på engelska!</p><p>Sagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.</p>", "en": "<p>Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in!</p><p>The Story times will be held on Thursdays 26.9., 24.10., 21.11. and 19.12. at 5 pm. Welcome!</p>" }, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in english" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5k4dne", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4duu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150389, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T10:29:23.628269Z", "last_modified_time": "2024-03-19T10:29:23.628303Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Satuhetki3.png", "name": "", "cropping": "62,0,331,268", "photographer_name": "", "alt_text": "Kuvassa on lapsia lukemassa kirjoja. Yksi lapsi istuu kynien päällä, toinen kirjojen ja yksi lattialla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150389/?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": "2024-09-23T10:21:14.565277Z", "last_modified_time": "2024-09-23T10:31:39.866801Z", "date_published": null, "start_time": "2024-11-21T15:00:00Z", "end_time": "2024-11-21T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa kuuntelemaan satuja englanniksi!\n\nSatuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.", "sv": "Välkommen att lyssna på sagor på engelska!\n\nSagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.", "en": "Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in! " }, "info_url": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan satuja englanniksi!</p><p>Satuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.</p>", "sv": "<p>Välkommen att lyssna på sagor på engelska!</p><p>Sagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.</p>", "en": "<p>Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in!</p><p>The Story times will be held on Thursdays 26.9., 24.10., 21.11. and 19.12. at 5 pm. Welcome!</p>" }, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in english" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dne/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5k4dq4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4duu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150389, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T10:29:23.628269Z", "last_modified_time": "2024-03-19T10:29:23.628303Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Satuhetki3.png", "name": "", "cropping": "62,0,331,268", "photographer_name": "", "alt_text": "Kuvassa on lapsia lukemassa kirjoja. Yksi lapsi istuu kynien päällä, toinen kirjojen ja yksi lattialla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150389/?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": "2024-09-23T10:21:14.974070Z", "last_modified_time": "2024-09-23T10:31:39.650630Z", "date_published": null, "start_time": "2024-12-19T15:00:00Z", "end_time": "2024-12-19T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa kuuntelemaan satuja englanniksi!\n\nSatuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.", "sv": "Välkommen att lyssna på sagor på engelska!\n\nSagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.", "en": "Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in! " }, "info_url": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan satuja englanniksi!</p><p>Satuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.</p>", "sv": "<p>Välkommen att lyssna på sagor på engelska!</p><p>Sagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.</p>", "en": "<p>Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in!</p><p>The Story times will be held on Thursdays 26.9., 24.10., 21.11. and 19.12. at 5 pm. Welcome!</p>" }, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in english" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dq4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb5k4duu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4dq4/?format=api" } ], "images": [ { "id": 150389, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T10:29:23.628269Z", "last_modified_time": "2024-03-19T10:29:23.628303Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Satuhetki3.png", "name": "", "cropping": "62,0,331,268", "photographer_name": "", "alt_text": "Kuvassa on lapsia lukemassa kirjoja. Yksi lapsi istuu kynien päällä, toinen kirjojen ja yksi lattialla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150389/?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": "2024-09-23T10:21:10.260254Z", "last_modified_time": "2024-09-23T10:31:37.616128Z", "date_published": null, "start_time": "2024-09-26T14:00:00Z", "end_time": "2024-12-19T15: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, "short_description": { "fi": "Tervetuloa kuuntelemaan satuja englanniksi!\n\nSatuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.", "sv": "Välkommen att lyssna på sagor på engelska!\n\nSagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.", "en": "Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in! " }, "info_url": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan satuja englanniksi!</p><p>Satuhetket torstaisin 26.9., 24.10., 21.11. ja 19.12. klo 17-17.30.</p>", "sv": "<p>Välkommen att lyssna på sagor på engelska!</p><p>Sagostunder på torsdagar 26.9., 24.10., 21.11. och 19.12. kl. 17-17.30.</p>", "en": "<p>Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in!</p><p>The Story times will be held on Thursdays 26.9., 24.10., 21.11. and 19.12. at 5 pm. Welcome!</p>" }, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in english" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb5k4duu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64071", "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:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151792, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T15:13:29.286037Z", "last_modified_time": "2024-07-22T15:13:29.286061Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755474.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151792/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T15:13:29.254693Z", "last_modified_time": "2024-09-23T10:14:54.003345Z", "date_published": null, "start_time": "2024-09-27", "end_time": "2024-11-03", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vuosina 2016–23 Jyrki Hirvensalo valokuvasi Hermanninrannan uudistuvan kaupungin alle jäävillä rannoilla ja joutomailla.", "sv": "Under åren 2016–23 fotograferade Jyrki Hirvensalo stränderna och de övergivna markerna i Hermanstad som höll på att byggas över av staden i förnyelse.", "en": "In 2016–23, Jyrki Hirvensalo took photographs at the shores and wastelands of Hermanni, disappearing under the development of the city." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3561EFF4362256E84AD69F383E0832E8/Jyrki_Hirvensalo_Viimeisella_rannalla_On_the_Beach", "sv": "http://www.stoa.fi/sv/evenemang/event/3561EFF4362256E84AD69F383E0832E8/Jyrki_Hirvensalo_Viimeisella_rannalla_On_the_Beach", "en": "http://www.stoa.fi/en/events/event/3561EFF4362256E84AD69F383E0832E8/Jyrki_Hirvensalo_Viimeisella_rannalla_On_the_Beach" }, "description": { "fi": "<p>Vuosina 2016–23 Jyrki Hirvensalo valokuvasi Hermanninrannan uudistuvan kaupungin alle jäävillä rannoilla ja joutomailla.</p><p>Häntä kiinnostivat alueella aikaansa eri tavoilla viettäneiden kaupunkilaisten toiminnasta jääneet jäljet. Alue on pääasiassa entistä merenpohjaa, joka on otettu aikoinaan mm. teollisuuskäyttöön. Myöhemmin alue on jäänyt joutomaaksi, jota kaupunkilaiset ovat hyödyntäneet omien tarpeidensa mukaisesti. Luonto on vallannut osan alueesta, ja näin on syntynyt uudenlaista kaupunkiluontoa.<br> <br>Vanhankaupunginlahden toisella puolella, kymmenen minuutin metromatkan päässä Helsingin rautatieasemalta, lähellä kaupungin maantieteellistä keskipistettä, sijaitsee Kivinokan kesämaja-alue. Kesäasukkaat saavat toteuttaa sinne tarkkojen ohjeiden mukaan oman kesämajansa, itse tehdyn 12 neliömetrin suuruisen paratiisinsa.</p><p>Jyrki Hirvensalo on helsinkiläinen valokuvataiteilija, jonka kiinnostuksen kohteena on ensisijaisesti ihmisen toiminnan jäljet ympäristössämme.</p>", "sv": "<p>Under åren 2016–23 fotograferade Jyrki Hirvensalo stränderna och de övergivna markerna i Hermanstad som höll på att byggas över av staden i förnyelse.</p><p>Han var intresserad av spåren efter stadsbor som hade tillbringat sin tid i området på olika sätt. Området består huvudsakligen av tidigare havsbotten, som en gång i tiden har använts bland annat för industriella ändamål. Senare har markerna övergivits, och stadsborna har utnyttjat området för olika behov. Naturen har tagit över en del av området och på så sätt har en ny typ av stadsnatur skapats.<br> <br>På andra sidan av Gammelstadsfjärden, tio minuter med metro från Helsingfors järnvägsstation och nära stadens geografiska mittpunkt, ligger Stenuddens område för sommarstugor. Där får sommargäster bygga en egen sommarstuga enligt noggranna anvisningar, ett 12 kvadratmeter stort hemgjort paradis.</p><p>Jyrki Hirvensalo är en fotograf från Helsingfors vars främsta intresse är spåren av mänsklig aktivitet i vår miljö.</p>", "en": "<p>In 2016–23, Jyrki Hirvensalo took photographs at the shores and wastelands of Hermanni, disappearing under the development of the city.</p><p>He was interested in traces of the activities of city residents who spent their time in the area in different ways. The area is primarily former seabed, which was reclaimed for industrial use, for example. Later, the area became a wasteland, which city residents have made use of as they wanted. Nature has reclaimed parts of the area, thus creating a new kind of urban nature.<br> <br>On the other side of Vanhankaupunginlahti, a ten-minute metro ride from Helsinki railway station, near the city's geographical centre, is the summerhouse area of Kivinokka. There, summer residents have been allowed to build summer houses, a self-made 12-square-metre paradises, according to precise guidelines.</p><p>Jyrki Hirvensalo is a Helsinki-based photography artist who is primarily interested in traces of human activity in our environment.</p>" }, "name": { "fi": "Jyrki Hirvensalo: Viimeisellä rannalla – On the Beach – Stoa 40!", "sv": "Jyrki Hirvensalo: Viimeisellä rannalla – On the Beach – Stoa 40!", "en": "Jyrki Hirvensalo: Viimeisellä rannalla – On the Beach – Stoa 40!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64071/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64210", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-tiistaitanssit-vuotalossa-vuotalo-19134716/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-tiistaitanssit-vuotalossa-vuotalo-19134716/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-tiistaitanssit-vuotalossa-vuotalo-19134716/" }, "description": null, "price": { "fi": "10 €", "sv": "10 €", "en": "10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151771, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T11:13:06.599963Z", "last_modified_time": "2024-07-22T11:13:06.599979Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750044.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151771/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T11:13:06.581388Z", "last_modified_time": "2024-09-23T09:15:43.565996Z", "date_published": null, "start_time": "2024-09-24T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jalalla koreasti tiistai-iltapäivässä!", "sv": "Dansanta tisdagseftermiddagar!", "en": "Get dancing on Tuesday afternoon!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E5DC6F97CDDDA70404D29AD257C036A4/Pasi_Kivimaki_N_Y_T", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E5DC6F97CDDDA70404D29AD257C036A4/Pasi_Kivimaki_N_Y_T", "en": "http://www.vuotalo.fi/en/events/event/E5DC6F97CDDDA70404D29AD257C036A4/Pasi_Kivimaki_N_Y_T" }, "description": { "fi": "<p>Jalalla koreasti tiistai-iltapäivässä!</p><p>Pasi Kivimäki on pitkän linjan laulaja-artisti, jolle esiintyminen ja tunteiden välittäminen yhdessä laulun tulkinnan kautta on aina ollut sydämen asia. Keikkakokemusta on kertynyt erilaisten, isojenkin orkestereiden, solistina mm. Puolustusvoimien tilaisuuksissa. Tanssimusiikkitaustaa on eri kokoonpanoilla ollut jo parisen kymmentä vuotta.</p><p>Kivimäki on mm. Olavi Virta – laulukilpailun voittaja (2016) ja monia muitakin tunnustuksia keräillyt artisti. Pasi on ollut vuonna 2017 Seinäjoen tangofinalisti voittaen siellä mm. yleisöäänestyksen. Paria vuotta myöhemmin, vuonna 2019 hän sijoittui Tangomarkkinoilla kolmen parhaan joukkoon finaaliin saakka. Vaikka kruunu jäikin saavuttamatta, voidaan häntä hyvinkin kutsua Tangoprinssiksi.</p><p>Pasin taustalla säestää monivuotisella ammattiotteella nelimiehinen N.Y.T.-orkesteri perinteisine soittimineen. Ne istuvat mainiosti tanssimusiikin esittämiseen. Bändi säveltää myös omaa tuotantoa, äänittää ja julkaisee aika ajoin myös uutta materiaalia.</p><p>Kesto: 2 t<br>Liput: 10 € + palvelumaksu</p>", "sv": "<p>Dansanta tisdagseftermiddagar!</p>", "en": "<p>Get dancing on Tuesday afternoon!</p>" }, "name": { "fi": "Pasi Kivimäki & N.Y.T – Tiistaimatinea / tanssit", "sv": "Pasi Kivimäki & N.Y.T – Matinédanser på tisdagar", "en": "Pasi Kivimäki & N.Y.T – Tuesday Matinee" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64210/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb4pxb74", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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" } ], "created_time": "2024-09-23T08:53:23.223547Z", "last_modified_time": "2024-09-23T09:14:29.212034Z", "date_published": "2024-09-23T08:09:00Z", "start_time": "2024-09-24T06:30:00Z", "end_time": "2024-09-24T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Satuhetki lapsiperheille", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "info_url": null, "description": { "fi": "<p>Aamun Satuhetki kirjaston Lastenosastolla tiistaina 24.9.2024 klo 9.30 ja Iltasatutuokio keskiviikkona 25.9.2024 klo 17.00. Tervetuloa mukaan!</p>", "sv": "<p>Välkomna på sagostund! Entresse bibliotek håller en sagostund tisdag 24.9.2024 kl. 9.30 och onsdag 25.9.2024 kl. 17.00. Vi läser böcker på finska. Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>", "en": "<p>Welcome to join the storytime on Tue, 24th of September at 9.30 AM and on Wed, 25th at 5.00 PM. We read stories in Finnish.</p>" }, "name": { "fi": "Satutuokio", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb4pxb74/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb4pxcl4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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" } ], "created_time": "2024-09-23T09:13:53.302721Z", "last_modified_time": "2024-09-23T09:13:53.302742Z", "date_published": "2024-09-23T09:10:00Z", "start_time": "2024-09-25T14:00:00Z", "end_time": "2024-09-25T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Satuhetki lapsiperheille", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "info_url": null, "description": { "fi": "<p>Aamun Satuhetki kirjaston Lastenosastolla tiistaina 24.9.2024 klo 9.30 ja Iltasatutuokio keskiviikkona 25.9.2024 klo 17.00. Tervetuloa mukaan!</p>", "sv": "<p>Välkomna på sagostund! Entresse bibliotek håller en sagostund tisdag 24.9.2024 kl. 9.30 och onsdag 25.9.2024 kl. 17.00. Vi läser böcker på finska. Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>", "en": "<p>Welcome to join the storytime on Tue, 24th of September at 9.30 AM and on Wed, 25th at 5.00 PM. We read stories in Finnish.</p>" }, "name": { "fi": "Satutuokio", "sv": "Sagostund på finska", "en": "Storytime in Finnish" }, "provider_contact_info": null, "location_extra_info": { "fi": "Pelihuone" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb4pxcl4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:5ed179cb-da12-43dd-ad20-0edb5917ddc5", "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/yso:p1235/?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:p3774/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=MKtest_23092024_no3_TPR-kokonaisuus_ja_LE-tapahtuman_uudet_tiedot_user_story_564796322223" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 152561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T07:52:40.679118Z", "last_modified_time": "2024-09-23T07:52:40.679137Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e477da3e-2609-ef11-9f8a-000d3ab363c5", "name": "Tämä on kuvatekstiä", "cropping": "", "photographer_name": "Leif Linssi", "alt_text": "Tämä on alt-tekstiä", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p3774/?format=api" } ], "created_time": "2024-09-23T07:23:09.776630Z", "last_modified_time": "2024-09-23T07:52:41.431576Z", "date_published": "2024-09-23T07:01:43Z", "start_time": "2024-09-26T23:00:00Z", "end_time": "2024-09-26T23:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-09-01T08:00:00+03:00", "enrolment_end_time": "2024-09-18T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Tämä on tosi lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tämä on tosi pitkä kuvaus</p></div>" }, "name": { "fi": "MKtest 23092024 no:3 TPR-kokonaisuus ja LE-tapahtuman uudet tiedot (user story 564" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinfors" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:5ed179cb-da12-43dd-ad20-0edb5917ddc5/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjb3tv63u", "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:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb3tv7p4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T07:03:48.180492Z", "last_modified_time": "2024-09-23T07:03:48.180514Z", "date_published": null, "start_time": "2024-10-14T13:00:00Z", "end_time": "2024-10-14T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Dungeons & Dragons -ryhmässä kerromme yhdessä tarinaa seikkailijoista fantasiamaailmassa.", "sv": "I Dungeons & Dragons-gruppen berättar vi tillsammans en historia om äventyrare i en fantasivärld.", "en": "In the Dungeons & Dragons group, we work together to tell a story about adventurers in a fantasy world" }, "info_url": null, "description": { "fi": "<p>Dungeons & Dragons -ryhmässä kerromme yhdessä tarinaa seikkailijoista fantasiamaailmassa. Osa haasteista ratkeaa nopanheitolla, osa vaatii mutkikkaampaa ongelmanratkaisua yhdessä peliporukan kanssa. Tärkeintä on se, että kaikilla on hauskaa, vaikka pelattavilla seikkailijoilla tulisikin mutkia matkaan. Harrastukseen osallistuaksesi ei tarvitse ennakko-osaamista roolipelaamisesta tai nopeaa matikkapäätä. Ryhmässä noudatetaan turvallisemman tilan periaatteita ja roolipelisopimusta.</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Ilmoittautuminen harrastusryhmiin käynnistyy to 29.8. alkaen. Harrastusryhmät käynnistyvät viikolla 38 maanantaista 16.9.2024 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>I Dungeons & Dragons-gruppen berättar vi tillsammans en historia om äventyrare i en fantasivärld. En del av utmaningarna löses med tärning, en del kräver mer komplicerade problemlösningar tillsammans med spelgänget. Det viktigaste är att alla har roligt, även om de spelade äventyrarna skulle stöta på problem längs vägen. För att delta i hobbyn behöver man inte förhandskunskaper om rollspel eller ett snabbt mattehuvud. I gruppen följs principerna för ett tryggare rum och rollspelsavtalet.</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmälan till hobbygrupper öppnas den 29 augusti. Hobbygrupperna börjar vecka 38, fr.o.m. måndagen den 16 september 2024. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo.</p>", "en": "<p>In the Dungeons & Dragons group, we work together to tell a story about adventurers in a fantasy world. Some of the challenges are solved with a roll of a dice, some require more complicated problem solving together with the other players. The most important thing is that everyone has fun, even if the adventurers in our story travel on a sometimes rocky path. In order to participate in this hobby, you do not need any prior knowledge of role playing or fast maths skills. We observe the safe space principles and the social contract of role playing.</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. Registration for hobby groups will start on 29 August. The hobby groups will start in week 38 on Monday, 16 September 2024 onwards. The hobby will continue throughout the school year unless otherwise stated. The hobby groups will not meet during school holidays. The hobbies are free-of-charge to the participants. The City of Espoo has insured the participants of the hobby groups.</p><p>The organiser of the hobby group contacts the guardians about the practical aspects of the activity. Please contact the organiser of the activity if you want to cancel your child’s participation or ask more about the activity.</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "name": { "fi": "Roolipeliklubi (Dungeons & Dragons) yläkoululaisille", "sv": "Rollspelklub (Dungeons & Dragons) för åk 7-9", "en": "Role-playing game club (Dungeons & Dragons) " }, "provider_contact_info": null, "location_extra_info": { "fi": "Kokoustila Meri. Yhteystiedot: koordinaattori@incoach.fi", "sv": "Mötesrum Meri. Kontaktinformation: koordinaattori@incoach.fi", "en": "Meeting room Meri. Contact information: koordinaattori@incoach.fi" }, "provider": { "fi": "Incoach | Espoon harrastuspolku", "sv": "Incoach | Hobbystigen i Esbo", "en": "Incoach | Espoo Hobby Path" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjb3tv63u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }