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&is_free=true&page=710
{ "meta": { "count": 31552, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=711", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=709" }, "data": [ { "id": "kulke:64242", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151808, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T12:15:45.580000Z", "last_modified_time": "2024-07-24T12:15:45.580050Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756157.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151808/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T12:15:45.547955Z", "last_modified_time": "2024-09-03T12:13:37.615130Z", "date_published": null, "start_time": "2024-09-14T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta", "en": "http://www.malmitalo.fi/en/events/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.</p><p>Äiti tahtoo toimia, isoäiti toppuuttelee ja koulukuraattori on omituisen vaitelias. Osapuolia yhdistää halu ymmärtää, mitä itse asiassa on tapahtunut – ja ennen kaikkea, kenen on syy?</p><p>M – merkintöjä yhden malmilaisen tapauksesta pureutuu kaupunginosayhteisöä kohdanneen katoamistapauksen kautta sukupolvien välisen ymmärtämättömyyden, vallankäytön ja yhteiskunnallisen vastakkainasettelun teemoihin. Eri puolilla Malmin kaupunkitilaa tapahtuva esitys kysyy, kenellä on valta päättää, mihin kenenkin tulisi oma elämänsä käyttää – kuka päättää, miten täällä ollaan?</p><p>Esitys on osa Helsingin Kaupunginteatterin ja Q-teatterin Malmilla toteuttamaa, asukkaita osallistavaa yhteisöteatteritoimintaa. Teemoja, aihealueita ja tekstimateriaalia käsikirjoitukseen on poimittu muun muassa erilaisista Malmilla järjestetyistä teatterityöpajoista ja muista taidetoiminnoista. Teoksessa esiintyy kahdeksan näyttelijää Q-teatterin yhteisöteatterista sekä suuri joukko eri-ikäisiä osallistujia Malmilta ja lähialueelta.</p><p>Esitys tapahtuu eri puolilla Malmia, ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esiintyjät: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Käsikirjoitus ja ohjaus: Janne Puustinen ja Tuomo Rämö<br>Yhteisöteatteriohjaaja: Meiju Pax<br>Äänisuunnittelu ja sävellys: Aleksi Kinnunen<br>Pukusuunnittelu: Fiona Timantti<br>Graafinen suunnittelu: Malmi Vice<br>Tuotanto: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Malmin Novan liiketilan lavastussuunnittelu: Anna Pietilä ja Lasten ja nuorten arkkitehtuurikoulu Arkki</p><p>Yhteistyössä: Kaupunkiolohuone Kohtaus, partiolippukunta Sinivuoren Soihdut, Kauppakeskus Malmin Nova, Kulttuurikeskus Malmitalo, Ravintola Teeritupa, Fallkullan kotieläintila sekä PopUp Kesäkahvila Raparperitaivas.</p><p>Kiitämme työpajatoimintaan osallistuneita tahoja: Kaupunkiolohuone Kohtaus, Stadin ammatti- ja aikuisopisto Vilppulantie, A-kilta, Malmin poluilla -kävelyoppaat, Päiväkoti Suvi-Vilppula, Hietakummun ala-asteen koulu, Senioritytöt, Leikkiväki Malmi</p><p>Kesto: 2,5 t<br>Suosittelemme esitystä yli 13-vuotiaille<br>Kieli: suomi</p><p><b>Vapaa pääsy, ennakkoilmoittautuminen!</b><br>Ilmoittaudu mukaan tämän linkin kautta: https://www.lyyti.fi/reg/M-esitys</p><p>Esitys tapahtuu eri puolilla Malmia ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esitys on Helsingin Kaupunginteatterin alueellisen Pääroolissa Malmi -taidehankkeen sekä Q-teatterin yhteisöteatterin yhteistuotanto. Toiminta on osa Helsingin kaupungin osallistavan kulttuurityön mallia, Helsingin mallia.</p><p><b>Lisätiedot:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>", "sv": "<p>En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.</p><p>Mamman vill agera, mormodern vill hålla tillbaka och skolkuratorn är märkligt tystlåten. Parterna förenas av en önskan att förstå vad som egentligen har hänt – och framför allt: vems fel det är!</p><p>M – merkintöjä yhden malmilaisen tapauksesta utforskar teman såsom missförstånd mellan generationer, maktutövning och samhälleliga motsättningar via ett fall av en försvunnen person i stadsdelen. Föreställningen äger rum i olika delar av Malms stadsrum, och ställer frågan om vem som har makten att bestämma vad man ska använda sitt liv till – vem bestämmer hur man ska vara här?</p><p>Föreställningen är en del av Helsingin Kaupunginteatteris och Q-teatteris gemenskapsteaterverksamhet i Malm, som delaktiggör invånarna. Temana, ämnesområdena och textmaterialet för manuset har inhämtats bland annat från olika teaterworkshoppar och andra konstaktiviteter som anordnats i Malm. I föreställningen medverkar åtta skådespelare från Q-teatteris gemenskapsteater och ett stort antal deltagare i olika åldrar från Malm och närområdet.</p><p>Föreställningen äger rum i olika delar av Malm, och publiken går omkring med skådespelarna. Föreställningen är inte tillgänglighetsanpassad, under föreställningen promenerar vi och använder trappor.</p><p>Artister: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Manus och regi: Janne Puustinen och Tuomo Rämö<br>Gemenskapsteaterregissör: Meiju Pax<br>Ljuddesign och komposition: Aleksi Kinnunen<br>Kostymdesign: Fiona Timantti<br>Grafisk design: Malmi Vice<br>Produktion: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Scenografi för Malmin Novas affärsutrymme: Anna Pietilä och arkitekturskolan Arkki för barn och unga</p><p>I samarbete: Stadsvardagsrummet Kohtaus, scoutkåren Sinivuoren Soihdut, köpcentret Malmin Nova, Malms kulturhus, restaurang Teeritupa, hemdjursgården Fallkulla och PopUp-sommarcaféet Raparperitaivas.</p><p>Vi vill tacka alla som deltog i workshopparna: Stadsvardagsrummet Kohtaus, yrkesinstitutet Stadin ammatti- ja aikuisopisto Filpusvägen, A-Guild, Malmin poluilla-vandringsguiderna, daghemmet Suvi-Vilppula, Hietakummun ala-aste, Senioritytöt, Leikkiväki Malmi</p><p>Längd: 2,5 h<br>Vi rekommenderar föreställningen för över 13-åringar<br>Språk: finska</p><p><b>Fritt inträde, föranmälan via länken:</b> https://www.lyyti.fi/reg/M-esitys</p><p>Föreställningen är en samproduktion mellan Helsingin Kaupunginteatteris regionala konstprojekt Pääroolissa Malmi och Q-teatteris gemenskapsteater. Verksamheten är en del av Helsingfors stads modell för delaktiggörande kulturarbete, Helsingforsmodellen.</p><p><b>Mer information:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>", "en": "<p>In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance.</p><p>The mother wants to act, the grandmother is wants to hit the brakes, and the school curator is, strangely, saying nothing. Everyone is united by a desire to understand what has actually happened – and above all, whose fault is it?</p><p>M – notes on the case of a person from Malmi delves into the themes of a generational gap, in understanding, power and social confrontation, through a missing-person case that has shakes the community of the city district. The show, which takes place in different parts of Malmi, asks: who has the power to decide what to spend their own life on – who decides the way you should carry yourself?</p><p>The performance is part of the Helsinki City Theatre and Q-teatteri’s community theatre activities in Malmi, which involves residents. Themes, topics and text material for the script have been picked, for example, from various theatre workshops and other art activities held at Malmi. The work features eight actors from the community theatre of Q-teatteri, as well as a large number of participants of different ages from Malmi and the surrounding area.</p><p>The performance takes place in different parts of Malmi, and the audience travels with the performers. The performance is not accessible, during the performance you walk and climb stairs.</p><p>Performers: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Script and direction: Janne Puustinen and Tuomo Rämö<br>Community theatre director: Meiju Pax<br>Sound design and composition: Aleksi Kinnunen<br>Costume design: Fiona Timantti<br>Graphic design: Malmi Vice<br>Production: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>The stage design for Malmin Nova's commercial area: Anna Pietilä and Arkki School of Architecture for Children and Youth</p><p>In cooperation with: Urban Living Room Kohtaus, Scout Troop Sinivuoren Soihdut, Shopping Centre Malmin Nova, Cultural Centre Malmitalo, Restaurant Teeritupa, Fallkulla Domestic Animal Farm and PopUp Summer Café Raparperitaivas.</p><p>We thank everyone who participated in the workshop activities: Urban Living Room Kohtaus, Helsinki Vocational College at Vilppulantie, A-kilta, Malmi Trails Walking Guides, Suvi-Vilppula Daycare, Hietakumpu Elementary School, Senioritytöt, Leikkiväki Malmi</p><p>Duration: 2.5 h<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Free admission, pre-registration via link:</b> https://www.lyyti.fi/reg/M-esitys</p><p>The performance is a co-production of the Helsinki City Theatre's regional Malmi art project and Q-teatteri's community theatre. The activities are a part of the City of Helsinki's model for participatory cultural work, i.e. the Helsinki model.</p><p><b>More info:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>" }, "name": { "fi": "M - Merkintöjä yhden malmilaisen tapauksesta", "sv": "M - Merkintöjä yhden malmilaisen tapauksesta", "en": "M - Merkintöjä yhden malmilaisen tapauksesta" }, "short_description": { "fi": "Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.", "sv": "En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.", "en": "In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64242/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3pxzmta", "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: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:p1808/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-03T11:20:09.512726Z", "last_modified_time": "2024-09-03T11:20:09.512748Z", "date_published": null, "start_time": "2024-10-15T14:30:00Z", "end_time": "2024-10-15T14:50: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Syyskeiju ja Menninkäinen on kuvitteelliseen taikametsään sijoittuva fantasiasatu. </p><p>Teoksen keoreografiasta ja esiintymisestä vastaavat Välikoski Kantola Co:n tanssitaiteilijat Ville Välikoski ja Katriina Kantola. </p><p>Syyskeiju ja Menninkäinen -esitys on yllättävä ja raikas tanssitaiteellinen tervehdys arjen keskellä. Teos tarkastelee kuinka kahdesta eri maailmasta tulevaa olentoa, Syyskeiju ja Menninkäinen, voivat löytää yhteisen kielen ja tavan kommunikoida keskenään. Erilaisuus voi aiheuttaa kohtaamattomuutta ja pelkoa sekä johtaa vetäytymiseen ja sulkeutumiseen. Kuinka löytää suvaitsevaisuutta ja rohkeutta kohdata omat pelot ja tuntematon? Teos ehdottaa avoimuuden ja kuuntelun mahdollisuutta uutta kohdatessa.</p><p>Esityksessä kuullaan kanteletaiteilija Hanna Ryynäsen musiikkia hänen Taite-albumiltaan. Kantelemusiikki luo yhdessä tanssijoiden hahmojen kanssa esitykseen salaperäisen taikametsän. Esitys päättyy yhteiseen tanssiin Syyskeijun ja Menninkäisen kanssa. Katsojat voivat liittyä mukaan yhteiseen tanssiin tai seurata sitä etäältä.</p><p><br></p><p>Esitys ei sisällä puhetta vaan tarina kerrotaan tanssin, liikkeen ja musiikin keinoin. Teos on suunnattu kaikenikäiselle ja -kieliselle yleisölle. </p><p><br></p><p>Koreografia ja esiintyminen: </p><p>Välikoski Kantola Co / Ville Välikoski ja Katriina Kantola </p><p>Tuotanto: Välikoski Kantola Co ja Physical Opera </p><p>Musiikki: Hanna Ryynänen Taite-albumi</p><p>Esityskiertueen tukija: Espoon kaupunki </p><p>Esityksen kesto: 20 minuuttia </p><p> </p><p> ____________________________________________________________</p><p> </p><p> Lisätiedot: </p><p> </p><p> Katriina Kantola, tanssitaiteilija </p><p> katriina.kantola@gmail.com / www.katriinakantola.com </p><p> </p><p> Ville Välikoski, tanssitaiteilija </p><p> ville.valikoski@gmail.com / www.villevalikoski.com </p>", "sv": "<p>The Autumn Fairy and the Munchkin är en fantasy-saga som utspelar sig i en fiktiv magisk skog. </p><p><br></p><p>Verket är koreograferat och framfört av Välikoski Kantola Co:s danskonstnärer Ville Välikoski och Katriina Kantola. </p><p><br></p><p>Föreställningen innehåller inget tal, utan historien berättas med hjälp av dans, rörelse och musik. Verket riktar sig till en publik i alla åldrar och med olika språk. </p><p><br></p><p>Koreografi och framförande: </p><p>Välikoski Kantola Co / Ville Välikoski och Katriina Kantola </p><p>Produktion: Välikoski Kantola Co och Physical Opera </p><p>Musik: Hanna Ryynänen Konstalbum</p><p>Turnésponsor: Esbo stad </p><p><br></p><p>Föreställningens längd: 20 minuter </p><p>Evenemanget är öppet för alla och avgiftsfritt. </p>", "en": "<p>The Autumn Fairy and the Munchkin is a fantasy fairy tale set in a fictional magical forest. </p><p>The work is choreographed and performed by Välikoski Kantola Co's dance artists Ville Välikoski and Katriina Kantola. </p><p>The performance does not include speech, but the story is told through dance, movement and music. The work is aimed at audiences of all ages and languages. </p><p><br></p><p>Choreography and performance: </p><p>Välikoski Kantola Co / Ville Välikoski and Katriina Kantola </p><p>Production by Välikoski Kantola Co and Physical Opera </p><p>Music: Hanna Ryynänen Art album</p><p>Tour sponsor: the City of Espoo </p><p><br></p><p>Duration of the performance: 20 minutes </p><p>The event is open to everyone and free of charge. </p>" }, "name": { "fi": "Syyskeiju ja Menninkäinen ", "sv": "Syyskeiju ja Menninkäinen ", "en": "Syyskeiju ja Menninkäinen " }, "short_description": { "fi": "Syyskeiju ja Menninkäinen on kuvitteelliseen taikametsään sijoittuva fantasiasatu. ", "sv": "The Autumn Fairy and the Munchkin är en fantasy-saga som utspelar sig i en fiktiv magisk skog. ", "en": "The Autumn Fairy and the Munchkin is a fantasy fairy tale set in a fictional magical forest. " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3pxzmta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3pkpmba", "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T11:05:09.511481Z", "last_modified_time": "2024-09-03T11:05:09.511505Z", "date_published": null, "start_time": "2024-10-10T09:00:00Z", "end_time": "2024-10-10T12: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa juhlimaan vanhustenviikkoa kanssamme!</p><p><br></p><p>Tapahtuman ohjelma:</p><p>Klo 12.00 Netin käytön ilot ja hyödyt, Enter Ry</p><p>Klo 13.00 Liikuntatuokio ja info, Espoon kaupunki</p><p>Klo 14.00 Jokainen ihminen on laulun arvoinen - yhteislauluja, Espoonlahden seurakunta</p><p><br></p><p>Tapahtuman järjestää:</p><p>Espoon liikuntatoimi, Enter Ry ja Kirkko Espoossa</p>", "sv": "<p>Välkommen att fira Äldreveckan med oss!</p><p><br></p><p>Programmet för evenemanget:</p><p><br></p><p>Kl. 12.00 glädjeämnen och fördelar med Internet, Enter Ry</p><p><br></p><p>Kl. 13.00 Motion och information, Esbo stad</p><p><br></p><p>Kl. 14.00 Varje människa är värd att sjunga - gemenskapssånger, Esbovikens församling</p><p><br></p><p>Evenemanget ordnas av:</p><p><br></p><p>Esbo stads idrottsverk, Enter Ry och Kyrkan i Esbo</p>", "en": "<p>Welcome to celebrate Seniors Week with us!</p><p><br></p><p>The programme of the event:</p><p><br></p><p>At 12.00 the joys and benefits of using the Internet, Enter Ry</p><p><br></p><p>13.00 Exercise session and information, City of Espoo.</p><p><br></p><p>At 14.00 Every person is worth singing - community songs, Espoonlahti church</p><p><br></p><p>The event is organised by:</p><p><br></p><p>Espoo Sports Department, Enter Ry and Church in Espoo</p>" }, "name": { "fi": "Iloa ja eloa eläkevuosiin -vanhustenviikon tapahtuma", "sv": "Glädje och liv som pensionär - veckans evenemang för äldre människor", "en": "Joy to the retirement years- the event of the Seniors' Week" }, "short_description": { "fi": "Tervetuloa juhlimaan vanhustenviikkoa kanssamme!", "sv": "Välkommen att fira Äldreveckan med oss!", "en": "Welcome to celebrate Seniors Week with us!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3pkpmba/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3oa5tta", "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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tvu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-03T07:59:49.600593Z", "last_modified_time": "2024-09-03T08:14:46.615529Z", "date_published": null, "start_time": "2024-09-21T08:00:00Z", "end_time": "2024-09-21T14: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Baltic Wargaming Convention on ensimmäistä kertaa järjestettävä lautapelitapahtuma, joka keskittyy sotapeleihin. Tapahtuman järjestäjät tuovat pelisuunnittelijoita sekä pelaajia yhteen ympäri Itämerta. Lippulaivan kirjastossa olevassa tapahtumassa on mukana pelikehittäjiä Puolasta, Ruotsista sekä Suomesta esittelemässä projektejaan. Myös peliseuraa on tarjolla joko omille tai muiden tuomille peleille. Tulevaisuudessa tapahtuma kiertää ympäri Itämeren maita tapaamassa paikallisia harrastajia. Tapahtuma on kaikille avoin ja maksuton. Tervetuloa!</p>", "sv": "<p>Baltic Wargaming Convention är det första brädspelsevenemanget någonsin med fokus på krigsspel. Arrangörerna för evenemanget kommer att sammanföra speldesigners och spelare från hela Östersjöområdet. Under evenemanget på Flagship Library kommer spelutvecklare från Polen, Sverige och Finland att presentera sina projekt. Det kommer också att finnas en spelklubb, antingen för egna spel eller för spel som andra har tagit med sig. I framtiden kommer evenemanget att resa runt i Östersjöländerna för att träffa lokala entusiaster. Evenemanget är öppet för alla och kostnadsfritt. Välkomna att delta!</p>", "en": "<p>Baltic Wargaming Convention (BWC) is a new rotating boardgame convention focusing on wargames. The event organizers will bring game designers and gamers together around the Baltic Sea. The event in Lippulaiva library has designers from Poland, Sweden and Finland demoing their projects. Additionally, you can find people to play wargames with you - bring your own game or find someone to play a new game with! BWC is open to everyone and free to attend. Welcome!</p>" }, "name": { "fi": "Baltic Wargaming Convention -lautapelitapahtuma aikuisille", "sv": "Baltic Wargaming Convention - ett brädspelsevenemang för vuxna", "en": "Baltic Wargaming Convention (BWC) - boardgame convention for adults" }, "short_description": { "fi": "BWC on ensimmäistä kertaa järjestettävä lautapelitapahtuma, joka keskittyy sotapeleihin. Tapahtuma on kaikille avoin ja maksuton. Tervetuloa!", "sv": "Baltic Wargaming Convention är ett nytt roterande brädspelskonvent med fokus på krigsspel,BWC är öppet för alla och det är gratis att delta. Välkommen!", "en": "BWC is a new rotating boardgame convention focusing on wargames. The event is open to everyone and free to attend." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3oa5tii", "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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tvu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-03T07:59:49.817173Z", "last_modified_time": "2024-09-03T08:14:46.529002Z", "date_published": null, "start_time": "2024-09-22T08:00:00Z", "end_time": "2024-09-22T14: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Baltic Wargaming Convention on ensimmäistä kertaa järjestettävä lautapelitapahtuma, joka keskittyy sotapeleihin. Tapahtuman järjestäjät tuovat pelisuunnittelijoita sekä pelaajia yhteen ympäri Itämerta. Lippulaivan kirjastossa olevassa tapahtumassa on mukana pelikehittäjiä Puolasta, Ruotsista sekä Suomesta esittelemässä projektejaan. Myös peliseuraa on tarjolla joko omille tai muiden tuomille peleille. Tulevaisuudessa tapahtuma kiertää ympäri Itämeren maita tapaamassa paikallisia harrastajia. Tapahtuma on kaikille avoin ja maksuton. Tervetuloa!</p>", "sv": "<p>Baltic Wargaming Convention är det första brädspelsevenemanget någonsin med fokus på krigsspel. Arrangörerna för evenemanget kommer att sammanföra speldesigners och spelare från hela Östersjöområdet. Under evenemanget på Flagship Library kommer spelutvecklare från Polen, Sverige och Finland att presentera sina projekt. Det kommer också att finnas en spelklubb, antingen för egna spel eller för spel som andra har tagit med sig. I framtiden kommer evenemanget att resa runt i Östersjöländerna för att träffa lokala entusiaster. Evenemanget är öppet för alla och kostnadsfritt. Välkomna att delta!</p>", "en": "<p>Baltic Wargaming Convention (BWC) is a new rotating boardgame convention focusing on wargames. The event organizers will bring game designers and gamers together around the Baltic Sea. The event in Lippulaiva library has designers from Poland, Sweden and Finland demoing their projects. Additionally, you can find people to play wargames with you - bring your own game or find someone to play a new game with! BWC is open to everyone and free to attend. Welcome!</p>" }, "name": { "fi": "Baltic Wargaming Convention -lautapelitapahtuma aikuisille", "sv": "Baltic Wargaming Convention - ett brädspelsevenemang för vuxna", "en": "Baltic Wargaming Convention (BWC) - boardgame convention for adults" }, "short_description": { "fi": "BWC on ensimmäistä kertaa järjestettävä lautapelitapahtuma, joka keskittyy sotapeleihin. Tapahtuma on kaikille avoin ja maksuton. Tervetuloa!", "sv": "Baltic Wargaming Convention är ett nytt roterande brädspelskonvent med fokus på krigsspel,BWC är öppet för alla och det är gratis att delta. Välkommen!", "en": "BWC is a new rotating boardgame convention focusing on wargames. The event is open to everyone and free to attend." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tii/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3oa5tvu", "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:p6062/?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, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tta/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-03T07:59:48.878029Z", "last_modified_time": "2024-09-03T08:14:45.968008Z", "date_published": null, "start_time": "2024-09-21T08:00:00Z", "end_time": "2024-09-22T14:00: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Baltic Wargaming Convention on ensimmäistä kertaa järjestettävä lautapelitapahtuma, joka keskittyy sotapeleihin. Tapahtuman järjestäjät tuovat pelisuunnittelijoita sekä pelaajia yhteen ympäri Itämerta. Lippulaivan kirjastossa olevassa tapahtumassa on mukana pelikehittäjiä Puolasta, Ruotsista sekä Suomesta esittelemässä projektejaan. Myös peliseuraa on tarjolla joko omille tai muiden tuomille peleille. Tulevaisuudessa tapahtuma kiertää ympäri Itämeren maita tapaamassa paikallisia harrastajia. Tapahtuma on kaikille avoin ja maksuton. Tervetuloa!</p>", "sv": "<p>Baltic Wargaming Convention är det första brädspelsevenemanget någonsin med fokus på krigsspel. Arrangörerna för evenemanget kommer att sammanföra speldesigners och spelare från hela Östersjöområdet. Under evenemanget på Flagship Library kommer spelutvecklare från Polen, Sverige och Finland att presentera sina projekt. Det kommer också att finnas en spelklubb, antingen för egna spel eller för spel som andra har tagit med sig. I framtiden kommer evenemanget att resa runt i Östersjöländerna för att träffa lokala entusiaster. Evenemanget är öppet för alla och kostnadsfritt. Välkomna att delta!</p>", "en": "<p>Baltic Wargaming Convention (BWC) is a new rotating boardgame convention focusing on wargames. The event organizers will bring game designers and gamers together around the Baltic Sea. The event in Lippulaiva library has designers from Poland, Sweden and Finland demoing their projects. Additionally, you can find people to play wargames with you - bring your own game or find someone to play a new game with! BWC is open to everyone and free to attend. Welcome!</p>" }, "name": { "fi": "Baltic Wargaming Convention -lautapelitapahtuma aikuisille", "sv": "Baltic Wargaming Convention - ett brädspelsevenemang för vuxna", "en": "Baltic Wargaming Convention (BWC) - boardgame convention for adults" }, "short_description": { "fi": "BWC on ensimmäistä kertaa järjestettävä lautapelitapahtuma, joka keskittyy sotapeleihin. Tapahtuma on kaikille avoin ja maksuton. Tervetuloa!", "sv": "Baltic Wargaming Convention är ett nytt roterande brädspelskonvent med fokus på krigsspel,BWC är öppet för alla och det är gratis att delta. Välkommen!", "en": "BWC is a new rotating boardgame convention focusing on wargames. The event is open to everyone and free to attend." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3oa5tvu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntiqty", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:47.793050Z", "last_modified_time": "2024-09-03T06:55:47.793071Z", "date_published": null, "start_time": "2024-12-10T11:30:00Z", "end_time": "2024-12-10T12:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiqty/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntiq6i", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:47.679720Z", "last_modified_time": "2024-09-03T06:55:47.679741Z", "date_published": null, "start_time": "2024-12-03T11:30:00Z", "end_time": "2024-12-03T12:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiq6i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntira4", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:47.561917Z", "last_modified_time": "2024-09-03T06:55:47.561938Z", "date_published": null, "start_time": "2024-11-26T11:30:00Z", "end_time": "2024-11-26T12:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntira4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntirf4", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:47.271881Z", "last_modified_time": "2024-09-03T06:55:47.272015Z", "date_published": null, "start_time": "2024-11-12T11:30:00Z", "end_time": "2024-11-12T12:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirf4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntirii", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:47.141338Z", "last_modified_time": "2024-09-03T06:55:47.141363Z", "date_published": null, "start_time": "2024-11-05T11:30:00Z", "end_time": "2024-11-05T12:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirii/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntirkm", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:47.017998Z", "last_modified_time": "2024-09-03T06:55:47.018020Z", "date_published": null, "start_time": "2024-10-29T11:30:00Z", "end_time": "2024-10-29T12:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirkm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntirnm", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:46.860729Z", "last_modified_time": "2024-09-03T06:55:46.860751Z", "date_published": null, "start_time": "2024-10-22T10:30:00Z", "end_time": "2024-10-22T11:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirnm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntirqa", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:46.664889Z", "last_modified_time": "2024-09-03T06:55:46.664911Z", "date_published": null, "start_time": "2024-10-08T10:30:00Z", "end_time": "2024-10-08T11:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirqa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntirsi", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:46.511837Z", "last_modified_time": "2024-09-03T06:55:46.511860Z", "date_published": null, "start_time": "2024-10-01T10:30:00Z", "end_time": "2024-10-01T11:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirsi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntiru4", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:46.363596Z", "last_modified_time": "2024-09-03T06:55:46.363647Z", "date_published": null, "start_time": "2024-09-24T10:30:00Z", "end_time": "2024-09-24T11:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiru4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntirxi", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:46.182369Z", "last_modified_time": "2024-09-03T06:55:46.182648Z", "date_published": null, "start_time": "2024-09-17T10:30:00Z", "end_time": "2024-09-17T11:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirxi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntir4e", "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:p2433/?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:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:45.784302Z", "last_modified_time": "2024-09-03T06:55:45.784326Z", "date_published": null, "start_time": "2024-09-03T10:30:00Z", "end_time": "2024-09-03T11:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir4e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3ntir6q", "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:p2433/?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:p916/?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, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiqty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiq6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntira4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirdm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirkm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirnm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirsi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntiru4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntirxi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir4e/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-09-03T06:55:43.738911Z", "last_modified_time": "2024-09-03T06:55:43.738932Z", "date_published": null, "start_time": "2024-09-03T10:30:00Z", "end_time": "2024-12-10T12:15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider_contact_info": null, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.\n\nTervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.\n\nVälkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.\n\nWelcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3ntir6q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi3foi5ge", "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, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-29T09:09:52.990117Z", "last_modified_time": "2024-09-02T11:36:51.320855Z", "date_published": "2024-09-02T04:35:00Z", "start_time": "2024-09-02T05:00:00Z", "end_time": "2024-09-22T15: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, "info_url": null, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanja Tuomen taidenäyttely \"Tyttäriä\" Entressen kirjaston Valatori-seinällä 2.-22.9.2024. Hymyt ja värit voivat muuttaa päivän paremmaksi!</p><p>@tanjatuomiart</p><p>Tervetuloa!</p>", "sv": "<p>Välkommen att besöka Tanja Tuomis utställning \"Tyttäriä\" i Entressebiblioteket under tiden 2.-22.9.2024. Utställningen kan ses under bibliotekets öpettider.</p><p>@tanjatuomiart</p><p>Välkommen!</p>", "en": "<p>Art exhibition \"Tyttäriä\" by Tanja Tuomi in Entresse Library during 2.-22.9.2024.</p><p>@tanjatuomiart</p><p>Welcome!</p>" }, "name": { "fi": "Tanja Tuomi \"Tyttäriä\" 2.-22.9.2024", "sv": "Tanja Tuomi \"Tyttäriä\" 2.-22.9.2024", "en": "Tanja Tuomi \"Tyttäriä\" 2.-22.9.2024" }, "short_description": { "fi": "Tanja Tuomen taidenäyttely \"Tyttäriä\" Entressen kirjaston Valatori-seinällä 2.-22.9.2024.", "sv": "Tanja Tuomis utställning \"Tyttäriä\" i Entressebiblioteket under tiden 2.-22.9.2024.", "en": "Art exhibition \"Tyttäriä\" by Tanja Tuomi in Entresse Library during 2.-22.9.2024." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi3foi5ge/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }