Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=140
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=141", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=139" }, "data": [ { "id": "espoo_le:agj5ttbdzu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbdja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbdna/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbdrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbdvm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-18T11:35:58.725232Z", "last_modified_time": "2024-12-18T11:35:58.725260Z", "date_published": null, "start_time": "2025-02-04T15:30:00Z", "end_time": "2025-05-06T15: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, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa satuhetkeen!", "sv": "Välkomna på sagostund!", "en": "Welcome to story time!" }, "description": { "fi": "<p>Tervetuloa satuhetkeen!</p><p>Järjestämme kerran kuukaudessa avoimen satuhetken, jossa luemme satuja ruotsiksi.</p><p>Tapahtuma on suunnattu 3-6 -vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan!</p>", "sv": "<p>Välkomna på sagostund!</p><p>Hagalunds bibliotek håller en gång i månaden en öppen sagostund där vi läser böcker på svenska.</p><p>Evenemanget är tilltänkt för barn i 3-6-årsåldern, men såväl unga som gamla är självklart välkomna med!</p>", "en": "<p>Welcome to story time!</p><p>Tapiola library holds an open story time once a month where we read books in Swedish.</p><p>The event is intended for children aged 3-6, but people of all ages are welcome.</p>" }, "provider": null, "name": { "fi": "Ruotsinkielinen satuhetki", "sv": "Svenskspråkig sagostund", "en": "Story time in swedish" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbdzu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5ttbgeq", "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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbd54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbedi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbehm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbelu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbeqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbeue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbeyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbe44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbfby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbff4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbfke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbfom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbfsy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbfxi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbf3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbgaa/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-12-18T11:32:45.596470Z", "last_modified_time": "2024-12-18T11:32:45.596492Z", "date_published": null, "start_time": "2025-01-16T07:30:00Z", "end_time": "2025-05-08T07:35: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka torstai (ei ohjausta arkipyhinä).\n\nTervetuloa!", "sv": "Stolgymnastik, stretching och balans varje torsdag (ingen undervisning under helgdagar).\n\nVälkommen!", "en": "Chair gymnastics, bodywork and balance every Thursday (no instruction during public holidays).\n\nWelcome!" }, "description": { "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka torstai (ei ohjausta arkipyhinä).</p><p>Aikataulu:</p><p>To klo 09.30-10.00 Tuolijumppa</p><p>To klo 10.05-10.35 Kehonhuolto &tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Stolgymnastik, stretching och balans varje torsdag (ingen undervisning under helgdagar).</p><p>Schema:</p><p>Tors 09.30-10.00 Stolgymnastik</p><p>Tors 10.05-10.35 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>", "en": "<p>Chair gymnastics, bodywork and balance every Thursday (no instruction during public holidays).</p><p>Schedule:</p><p>Thursday 09.30-10.00 Chair exercises</p><p>Thursday 10.05-10.35 Body care & balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "name": { "fi": "Tuolijumppa, kehonhuolto & tasapaino ", "sv": "Stolgymnastik, stretching och balans", "en": "Chair gymnastics, body maintenance & balance" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbgeq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5ttbg4i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbgim/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbgmy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbgqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbguu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbgyu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-18T11:29:29.832728Z", "last_modified_time": "2024-12-18T11:29:29.832758Z", "date_published": null, "start_time": "2025-01-14T15:30:00Z", "end_time": "2025-05-06T15: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, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa tarinoiden äärelle avoimeen iltasatuhetkeen. Tervetulleita ovat kaikenikäiset satujen ystävät.", "sv": "Välkommen till en mysig sagostund på kvällen.\nPå finska.", "en": "Welcome to a cozy evening storytime.\nIn Finnish." }, "description": { "fi": "<p>Tervetuloa tarinoiden äärelle avoimeen iltasatuhetkeen. Tervetulleita ovat kaikenikäiset satujen ystävät.</p><p>lltasatuhetkiä järjestetään joka kuukauden toisena tiistaina klo 17.30</p>", "sv": "<p>Välkommen till en mysig sagostund på kvällen.</p><p>På finska.</p>", "en": "<p>Welcome to a cozy evening storytime.</p><p>In Finnish.</p>" }, "provider": null, "name": { "fi": "Iltasatuhetki", "sv": "Godnattsagostund", "en": "Bedtime Storytime" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbg4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5ttbjbq", "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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbhai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbhei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbhie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbhmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbhqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbhuy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbhy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbh44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbia4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbifa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbii4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbina/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbira/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbivi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbizm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbi5q/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-12-18T11:24:51.524992Z", "last_modified_time": "2024-12-18T11:24:51.525019Z", "date_published": null, "start_time": "2025-01-14T11:30:00Z", "end_time": "2025-05-06T11: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, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "info_url": null, "provider_contact_info": null, "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!" }, "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>" }, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbjbq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5ttblma", "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:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbjfy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbjkq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbjoy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbjs4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbjxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbj3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbkau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbkfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbkju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbknu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbksa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbkwi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbk2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbk7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttbldq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttblh4/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-18T11:20:56.044329Z", "last_modified_time": "2024-12-18T11:20:56.044357Z", "date_published": null, "start_time": "2025-01-13T08:00:00Z", "end_time": "2025-05-05T08:05: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)\n\nTervetuloa!", "sv": "Stolgymnastik, stretching och balans varje måndag. (ingen undervisning under helgdagar)\n\nVälkommen!", "en": "Chair gymnastics, bodywork and balance every Monday. (no instruction during public holidays)\n\nWelcome!" }, "description": { "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ma klo 10.00-10.30 Tuolijumppa </p><p>Ma klo 10.35-11.05 Kehonhuolto &tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Stolgymnastik, stretching och balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Mån 10.00-10.30 Stolgymnastik </p><p>Mån 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>", "en": "<p>Chair gymnastics, bodywork and balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>Mon 10.00-10.30 Chair exercises </p><p>Mon 10.35-11.05 Body care & balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "name": { "fi": "Tuolijumppa, kehonhuolto & tasapaino ", "sv": "Stolgymnastik, stretching och balans", "en": "Chair gymnastics, body maintenance & balance" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5ttblma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5r3l72y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l6gm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l6ra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l6t4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l6w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l6z4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l65a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7ae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7da/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7gi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7ji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7oy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7si/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7vi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l7ye/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-12-18T08:08:12.279756Z", "last_modified_time": "2024-12-18T08:08:12.279776Z", "date_published": null, "start_time": "2025-01-16T11:00:00Z", "end_time": "2025-05-08T10:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Heikki tai Kaija", "sv": "Heikki tai Kaija", "en": "Heikki tai Kaija" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tuolijumppaa kirjastossa", "sv": "Stolgymnastik i biblioteket", "en": "Chair gymnastics in the library" }, "description": { "fi": "<p>Tuolijumppaa kirjastossa.</p>", "sv": "<p>Stolgymnastik i biblioteket.</p>", "en": "<p>Chair gymnastics in the library.</p>" }, "provider": { "fi": "Espoo Liikkuu", "sv": "Espoo Liikkuu", "en": "Espoo Liikkuu" }, "name": { "fi": "Kirjastojumppa", "sv": "Gymnastik i biblioteket", "en": "Library gymnastics" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5r3l72y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5rn73aa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7yea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7ypy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7yua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7yyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7y4i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7zam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7zem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7ziu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7zne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7zta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7zxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7z3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn7z7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn72dm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn72hm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn72me/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn72qi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn72ui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn72ye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn724e/?format=api" } ], "images": [ { "id": 153481, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T06:46:06.533953Z", "last_modified_time": "2024-12-18T06:46:06.534007Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Enter ry", "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-12-18T06:46:17.254409Z", "last_modified_time": "2024-12-18T06:46:17.254430Z", "date_published": null, "start_time": "2025-01-08T08:00:00Z", "end_time": "2025-05-21T09: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, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "info_url": { "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/", "sv": "https://www.entersenior.fi/sv/", "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/" }, "provider_contact_info": null, "short_description": { "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.", "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.", "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones." }, "description": { "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 8.1.-21.5.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>", "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>", "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "name": { "fi": "Digiopastusta seniorilta seniorille", "sv": "IT-handledning", "en": "IT tutoring" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5rn73aa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agibmryuhe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrys2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytiq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytk4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytna/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytpi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmryttq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmrytye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmryt3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmryt5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmryt74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmryuca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmryuey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qp4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qqim/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qqmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qqqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qquy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qqzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qq5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qrbq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qrfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qrj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qrn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qrsa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qrwm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qr2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qr6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qscy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qshe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qsli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qspu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qsty/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-06-14T09:56:16.777769Z", "last_modified_time": "2024-12-17T17:56:24.809872Z", "date_published": "2024-06-14T09:46:00Z", "start_time": "2024-12-18T08:00:00Z", "end_time": "2025-05-28T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Nuortentila", "sv": "Nuortentila", "en": "Nuortentila" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen Tapiolan kirjastoon. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p><br></p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "provider": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open Storytime" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibmryuhe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5l3qxfm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qumu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3quze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qu5i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qvbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qvfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qvj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qvn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qvr4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qvwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qv2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qv6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qwda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qwhm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qwlu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qwpq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qwtu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qwxy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qw4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qxam/?format=api" } ], "images": [ { "id": 150422, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-27T12:30:08.869964Z", "last_modified_time": "2023-11-27T12:30:19.230971Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/151122Kielikahvila_mainos_680_x_382_px.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirrettyjä ihmisiä keltaisella taustalla. Puhekuplissa Tervetuloa, Solmu kielikahvila, moi. Yläkulmassa eläkeliiton logo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150422/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T17:27:50.736599Z", "last_modified_time": "2024-12-17T17:27:50.736625Z", "date_published": null, "start_time": "2025-01-08T14:00:00Z", "end_time": "2025-05-28T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.", "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. ", "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. " }, "description": { "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan puhumaan suomea kanssamme</p><p>Järjestäjä: Eläkeliiton Espoon yhdistyksen vapaaehtoiset</p>", "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p>", "en": "<p>A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p>" }, "provider": { "fi": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset", "sv": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset", "en": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset" }, "name": { "fi": "Solmu - suomen kielen kielikahvila", "sv": "Solmu - det finska språkkaféet", "en": "Solmu - the Finnish language cafe" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3qxfm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5krzeuq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5krzdwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5krzeca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5krzegq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5krzelu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5krzeqe/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T14:36:05.832718Z", "last_modified_time": "2024-12-17T14:36:05.832755Z", "date_published": null, "start_time": "2025-01-13T16:00:00Z", "end_time": "2025-05-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aalto", "sv": "Aalto", "en": "Aalto" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellikoukku jokaisen kuukauden toisena maanantaina klo 18:00-19:30 13.1., 10.2., 10.3., 14.4., 12.5.</p><p>Novellit suomenkielellä.</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk.</p><p>Novellkroken ordnas den andra måndagen varje månad kl. 18:00–19:30.</p><p>Datumen är: 13.1., 10.2., 10.3., 14.4., 12.5.</p><p>Novellerna är på finska.</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time.</p><p>Short Story Crochet Hook takes place on the second Monday of each month from 18:00 to 19:30.</p><p>The dates are: January 13, February 10, March 10, April 14, May 12.</p><p>The short stories are in Finnish</p>" }, "provider": null, "name": { "fi": "Novellikoukku kevät 2025", "sv": "Novellvirkningshake våren 2025", "en": "Short story crochet hook spring 2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5krzeuq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh62732x4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273yea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273yom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273yru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273yui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273yy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273y3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273y6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zd4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zi4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zlq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zva/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273zxu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273z2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh6273z6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732ba/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732f4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732ii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732k4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732ne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjxqi7soy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gyeq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gyja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gyoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gytm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gyxy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gy4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gzay/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gzfi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gzjm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gzoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gzr4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gzwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gz2i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3gz6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3g2ey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3g2ji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3g2n4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3g2si/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3g2wy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5i3g23u/?format=api" } ], "images": [ { "id": 150447, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T08:57:49.425341Z", "last_modified_time": "2024-03-15T08:57:49.425366Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/PerjantaileffaHelmet.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Sohvaryhmä ja isonäyttö, jossa elokuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150447/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-06-06T11:16:39.678582Z", "last_modified_time": "2024-12-17T13:10:07.963232Z", "date_published": null, "start_time": "2024-06-07T15:00:00Z", "end_time": "2025-12-19T18: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, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kirjaston Jaminurkassa järjestetään perjantaisin klo 18 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 18.00 i bibliotekets Jaminurkka är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 18:00 in the library's Jaminurkka, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Sellon kirjaston Jaminurkassa järjestetään joka perjantai klo 18:00 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>", "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag klockan 18:00 anordnas en öppen filmvisning för barn, familjer och de som gillar barn i Sello biblioteks Jaminurka. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>", "en": "<p>Welcome to spend Friday with a movie together! Every Friday at 18:00, an open film screening is organized for children, families and those who like children in Sello library's Jaminurka. The films are chosen together by voting on the children's wishes in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>" }, "provider": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "name": { "fi": "Lasten perjantaileffa", "sv": "Fredagsfilm för barn", "en": "Children's Friday movie" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh62732x4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5jxaodq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxall4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxal2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxamaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxamga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxamla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxamsa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxamxu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxam4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxancm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxanha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxanlm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxanre/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxanvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxan2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxan6y/?format=api" } ], "images": [ { "id": 150432, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T12:23:54.433662Z", "last_modified_time": "2024-03-15T12:23:54.433684Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ukulele-2205860_1920.jpg", "cropping": "518,0,1402,885", "photographer_name": "", "alt_text": "kolme ukulelea", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T12:45:41.037105Z", "last_modified_time": "2024-12-17T12:45:41.037142Z", "date_published": null, "start_time": "2025-01-30T15:45:00Z", "end_time": "2025-05-22T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden ukuleleryhmään. Kirjastolla on 15 lainasoitinta tunnin ajaksi. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. There are 15 ukuleles that can be borrowed for the class. Participation is free of charge." }, "description": { "fi": "<p>Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden ukuleleryhmään. Tunneilla on tarkoitus tutustua musiikkiin monipuolisesti. Harjoittelemme sointujen, sekä melodian soittamista kappaleiden avulla. Lisäksi teemme musiikin hahmottamista ja ryhmäytymistä tukevia harjoituksia leikkimällä ja piirtämällä. Opetus on oppilaslähtöistä. Kirjastolla on 15 ukulelea, joita voi lainata tunnin ajaksi. </p><p><br></p><p><strong>Tunnille mahtuu 15 lasta. Osallistuminen on maksutonta.</strong></p><p><strong>Ei tuntia 20.2 ja 6.3</strong></p><p><br></p><p>Ryhmää vetää Lauri Iljin</p><p>lauri.iljin(at)espoo.fi</p><p>#musiikki #ukulele #sello #lapset #nuoret</p>", "en": "<p>Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. In the Ukulele Group we learn basic of the music theory and playing an ukulele. We practice how to play melody and harmony with well-known songs. Teaching is student-centered. The Library has 15 ukuleles that can be borrowed for the lesson.</p><p><br></p><p><strong>15 children can attend the class. Participation is free of charge.</strong></p><p><strong>No class 20th of Februar and 6th of March</strong></p><p><br></p><p><strong><span class=\"ql-cursor\"></span></strong></p><p>Lauri Iljin teaches the group</p><p>lauri.iljin(at)espoo.fi</p>" }, "provider": null, "name": { "fi": "Ukulele 7-12-vuotiaiden ryhmätunti", "en": "Ukulele - 7- to 12-year-old" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaodq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5jxaqsa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaoim/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaomu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaorq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaowe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxao3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxao7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxape4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxapka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxapo4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxapum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxapz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxap7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaqdm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaqiq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaqmu/?format=api" } ], "images": [ { "id": 153076, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T10:57:29.523947Z", "last_modified_time": "2024-03-15T10:57:29.523981Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/pexels-porapak-apichodilok-346709.jpg", "cropping": "501,0,2499,1998", "photographer_name": "", "alt_text": "ihminen soittaa ukulelea", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153076/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T12:32:46.708345Z", "last_modified_time": "2024-12-17T12:32:46.708367Z", "date_published": null, "start_time": "2025-01-30T14:30:00Z", "end_time": "2025-05-22T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Intermediate Ukulele Group. We play popular Finnish and English tunes. Participation is free of charge and no pre-registration" }, "description": { "fi": "<p>Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Välillä haastamme myös itseämme soittamalla melodioita ja opettamalla uusia sointuja ja komppeja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Olet aina tervetullut mukaan! Kirjastolla on myös ukuleleja joita voit lainata tunnin ajaksi.</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta</p><p>Huom. Ei tuntia 20.2 ja 6.3</p><p><br></p><p>#musiikki #ukulele #sello #ryhmä</p>", "en": "<p>Thursday at 16.30-17.30 in Sello Library Jaminurkka.</p><p> </p><p>Welcome to the Espoo City Library intermediate ukulele group. We play popular Finnish and English songs. From time to time we challenge ourselves by learning new chords, melodies and strums. Relaxing atmosphere and community are important values of the group. There are ukuleles in the library that you can borrow for the lesson.</p><p><br></p><p>Participation is free and no pre-registration is required.</p><p><br></p><p>No class 20th of Februar and 6th of March</p><p><br></p><p>#music #ukulele #sello</p>" }, "provider": null, "name": { "fi": "Ukulelen jatkoryhmä", "en": "Ukulele, Intermediate Group" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5jxaqsa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5inb2ze", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbyry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inby5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbzbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbzgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbzki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbzoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbzr4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbzvq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbzzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inbz6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb2b4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb2fu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb2jm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb2nm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb2rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb2vi/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T10:07:37.670622Z", "last_modified_time": "2024-12-17T10:07:37.670644Z", "date_published": null, "start_time": "2025-01-14T15:00:00Z", "end_time": "2025-05-06T15: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, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Oma pelistudio 3.-6.-luokkalaisille", "sv": "Egen spelstudio för åk 3-6", "en": "Personal game studio for 3rd-6th graders" }, "description": { "fi": "<p>Mitä kaikkea tarvitaankaan oman pelistudion pystyttämiseksi ja hittipelin tekemiseksi? Ohjelmoinnin lisäksi tarvitaan suunnittelua, graafista osaamista, projektityötä, testaamista ja tietenkin markkinointia. Tässä harrastuksessa pääset kokeilemaan jokaista roolia ja olemaan mukana peliproduktiossa alusta loppuun. Pelillä pääset myös kilpailemaan pääpalkinnosta pelifestareilla!</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Ilmoittautuminen harrastusryhmiin käynnistyy to 29.8. alkaen. Harrastusryhmät käynnistyvät viikolla 38 maanantaista 16.9.2024 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>Vad behövs för att sätta upp en egen spelstudio och göra ett spel som slår igenom? Förutom programmering behövs planering, grafisk kompetens, projektarbete, testning och naturligtvis marknadsföring. I denna hobby får du pröva på varje roll och delta i spelproduktionen från början till slut. Med spelet får du också tävla om huvudpriset på spelfestivalen!</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmälan till hobbygrupper öppnas den 29 augusti. Hobbygrupperna börjar vecka 38, fr.o.m. måndagen den 16 september 2024. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo</p>", "en": "<p>What do you need to set up your own game studio and make a hit game? In addition to programming, you need design, graphic skills, project work, testing and, of course, marketing. In this hobby, you get to try each of these roles and be part of game production from start to finish. You will also get to compete for the top prize at a game festival with your game!</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. Registration for hobby groups will start on 29 August. The hobby groups will start in week 38 on Monday, 16 September 2024 onwards. The hobby will continue throughout the school year unless otherwise stated. The hobby groups will not meet during school holidays. The hobbies are free-of-charge to the participants. The City of Espoo has insured the participants of the hobby groups.</p><p>The organiser of the hobby group contacts the guardians about the practical aspects of the activity. Please contact the organiser of the activity if you want to cancel your child’s participation or ask more about the activity.</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "provider": { "fi": "School of Gaming | Espoon harrastuspolku", "sv": "School of Gaming | Hobbystigen i Esbo", "en": "School of Gaming | Espoo Hobby Path" }, "name": { "fi": "Oma pelistudio 3.-6.-luokkalaisille", "sv": "Egen spelstudio för åk 3-6", "en": "Personal game studio for 3rd-6th graders" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb2ze/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5inb44i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb24y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb3au/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb3ei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb3ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb3mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb3qi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb3ui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb3yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb34m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb4am/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb4eu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb4iu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb4mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb4qm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb4ui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb4ye/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T09:46:38.145522Z", "last_modified_time": "2024-12-17T09:46:38.145544Z", "date_published": null, "start_time": "2025-01-13T12:00:00Z", "end_time": "2025-05-05T13: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, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kollaasiklubi", "sv": "Kollageklubb", "en": "Collage club" }, "description": { "fi": "<p>Kollaasiklubissa opit käyttämään erilaisia kollaasitekniikoita luovasti ja omilla ehdoillasi. Askartelet, maalaat, leikkaat ja revit paperia sekä käytät erilaisia liimattavia materiaaleja, joista luot kollaasiteoksia tai “junk-kirjoja”. Kevätlukukaudella opit digitaalisten kollaasien tekoa ja stop-motion-animaatiotekniikkaa, jonka avulla esineet saadaan liikkumaan elokuvissa.</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Ilmoittautuminen harrastusryhmiin käynnistyy to 29.8. alkaen. Harrastusryhmät käynnistyvät viikolla 38 maanantaista 16.9.2024 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>I kollagehobbyn lär du dig använda olika kollagetekniker kreativt och på dina egna villkor. Du pysslar, målar, skär och river papper samt använder olika limmade material som du skapar kollageverk eller ”junk-böcker”. Under vårterminen lär du dig göra digitala kollager och stop-motion-animationsteknik, med hjälp av vilken du får föremålen att röra sig i filmer.</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmälan till hobbygrupper öppnas den 29 augusti. Hobbygrupperna börjar vecka 38, fr.o.m. måndagen den 16 september 2024. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo</p>", "en": "<p>In the collage hobby, you learn to use different collage techniques creatively and on your own terms. You get to make crafts, paint, cut and tear paper as well as use different types of adhesive materials to create pieces of collage art or “junk books”. During the spring term, you will learn how to make digital collages and use stop-motion animation technology with which you can make objects move in films.</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. Registration for hobby groups will start on 29 August. The hobby groups will start in week 38 on Monday, 16 September 2024 onwards. The hobby will continue throughout the school year unless otherwise stated. The hobby groups will not meet during school holidays. The hobbies are free-of-charge to the participants. The City of Espoo has insured the participants of the hobby groups.</p><p>The organiser of the hobby group contacts the guardians about the practical aspects of the activity. Please contact the organiser of the activity if you want to cancel your child’s participation or ask more about the activity.</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "provider": { "fi": "Interlab | Espoon harrastuspolku", "sv": "Interlab | Hobbystigen i Esbo", "en": "Interlab | Espoo Hobby Path" }, "name": { "fi": "Kollaasiklubi", "sv": "Kollageklubb", "en": "Collage club" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb44i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5inb654", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb5ae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb5ee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb5im/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb5mi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb5qm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb5um/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb5ym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb54m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb6ae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb6d4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb6hq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb6li/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb6pi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb6s4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb6wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb62e/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-17T09:30:03.151024Z", "last_modified_time": "2024-12-17T09:30:03.151048Z", "date_published": null, "start_time": "2025-01-14T12:00:00Z", "end_time": "2025-05-06T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tarinoiden taika -sanataidepaja 3.-6.-luokkalaisille", "sv": "Berättelsernas magi -ordkonstverkstad för åk 3-6", "en": "The Magic of Stories - literary art workshop for 3rd-6th graders" }, "description": { "fi": "<p>Tarinoiden taika- ryhmässä pääset tutustumaan sanataiteen erilaisiin ilmaisumuotoihin: lukemaan ja käsikirjoittamaan tarinoita, kirjoittamaan lyriikkaa. Toteutamme myös draamaleikkejä, animaatioita ja muita pieniä esityksiä kuten kuunnelmia, digitarinoita ja varjoteatteria. Pääset myös esittämään toiveita sisällöstä!</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Ilmoittautuminen harrastusryhmiin käynnistyy to 29.8. alkaen. Harrastusryhmät käynnistyvät viikolla 38 maanantaista 16.9.2024 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>I gruppen Berättelsernas magi får du bekanta dig med olika uttrycksformer inom ordkonsten: läsa och skriva manus samt skriva lyrik. Vi genomför också dramalekar, animationer och andra små föreställningar såsom hörspel, digitala berättelser och skuggteater. Du kan också framföra önskemål om innehållet!</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmälan till hobbygrupper öppnas den 29 augusti. Hobbygrupperna börjar vecka 38, fr.o.m. måndagen den 16 september 2024. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo</p>", "en": "<p>In the Magic of Stories group, you will get to know different forms of expression of literary art; you will get to read and write stories and poetry. We will also produce drama games, animations and other small performances such as radio plays, digital stories and shadow theatre. You will also be able to express your wishes concerning the content!</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. Registration for hobby groups will start on 29 August. The hobby groups will start in week 38 on Monday, 16 September 2024 onwards. The hobby will continue throughout the school year unless otherwise stated. The hobby groups will not meet during school holidays. The hobbies are free-of-charge to the participants. The City of Espoo has insured the participants of the hobby groups.</p><p>The organiser of the hobby group contacts the guardians about the practical aspects of the activity. Please contact the organiser of the activity if you want to cancel your child’s participation or ask more about the activity.</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "provider": { "fi": "Vantaan sanataidekoulu | Espoon harrastuspolku", "sv": "Vantaan sanataidekoulu | Hobbystigen i Esbo", "en": "Vantaan sanataidekoulu | Espoo Hobby Path" }, "name": { "fi": "Tarinoiden taika -sanataidepaja 3.-6.-luokkalaisille", "sv": "Berättelsernas magi -ordkonstverkstad för åk 3-6", "en": "The Magic of Stories - literary art workshop for 3rd-6th graders" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5inb654/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj4apqoy4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3466/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:tyt", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T13:06:34.471418Z", "last_modified_time": "2024-12-17T08:15:26.822220Z", "date_published": null, "start_time": "2025-01-21T15:15:00Z", "end_time": "2025-01-21T17: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, "location_extra_info": { "fi": "tapahtumatila Stage" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Lämpimästi tervetuloa kuulemaan, miten Matinkylän alueen liikenne- ja parkkijärjestelyjä kehitetään!" }, "description": { "fi": "<p>Mitkä ovat seuraavat askeleet toimivampaan ja turvallisempaan liikenteeseen Matinkylässä? Lämpimästi tervetuloa kuulemaan, missä alueen liikenne- ja parkkijärjestelyjen kehittämisessä nyt mennään!</p><p>Tilaisuus pidetään 21.1. klo 17.15–19.00 Ison Omenan kirjaston Stagella.</p><p><br></p>\nMistä on kyse?<p>Matinkylän liikennejärjestelyjen toimivuus ja turvallisuus huolettavat alueen asukkaita ja yrittäjiä. Tervetuloa tutustumaan tuoreen liikenneselvityksen tuloksiin ja kuulemaan, miten asukkailta kerätyt näkemykset on otettu huomioon! Lisäksi kerromme, millaiset parannukset ovat lähitulevaisuudessa mahdollisia, mitä on jo tehty ja mihin pulmiin ei vielä ole löytynyt ratkaisua.</p><p>Tuoreen liikenneselvityksen tuloksia esittelee selvityksen tehneen Ramboll Oy:n edustaja. Toimenpiteistä keskustelemassa ja asukkaiden kysymyksiin vastaamassa on asiantuntijoita Espoon kaupunkiympäristön toimialalta ja Cityconilta.</p><p>Tapahtuma on jatkoa syksyllä 2023 järjestetylle keskustelutilaisuudelle, jossa Cityconin ja alueen yrittäjien johdolla puhuttiin Matinkylän liikenteen ongelmista ja pohdittiin alustavia ratkaisuja. Sen jälkeen Espoon kaupunki ja Citycon ovat tehneet asukkaiden palautteen pohjalta korjaavia toimenpiteitä ja selvittäneet kattavasti alueen liikenteen tilannetta.</p><p><br></p>\nOhjelma:<p>klo 17:15 Kahvitarjoilu</p><p>klo 17:30 Tervetuloa!</p><p>klo 17:35 Haastatteluhetki: Mitä tähän mennessä on tapahtunut? </p><p>klo 17:45 Matinkylän liikennejärjestelyt: Tuoreen liikenneselvityksen tulokset</p><p>klo 18:10 Yleisön kysymyksiä selvityksestä</p><p>klo 18:25 Haastatteluhetki: Mitkä ovat seuraavat askeleet?</p><p>klo 18:35 Yleisön kysymyksiä ja yhteistä keskustelua</p><p>klo 18:55 Yhteenveto ja kiitokset</p><p><br></p>\nLisätiedot tapahtumasta<p>Tuuli Aaltio, p. 040 636 9012, tuuli.aaltio@espoo.fi</p><p>Avoimen ja maksuttoman tilaisuuden järjestävät yhteistyössä Espoon kaupunki ja Citycon.</p><p>Ei ennakkoilmoittautumista, nähdään paikan päällä!</p><p><strong>Esteettömyys:</strong> Ison Omenan kauppakeskus ja kirjasto ovat esteettömiä. Parkkihallissa on invapaikkoja ja kolmanteen kerrokseen pääsee hissillä. Tapahtumakerroksessa on esteetön WC. Lisätietoja tilan esteettömyydestä antaa Ison Omenan kirjasto: p. 09 81657723, kirjasto.omena@espoo.fi</p><p><br></p>\nTurvallisemman tilan periaatteet<p>Haluamme, että tapahtumissamme on kaikilla hyvä olla, minkä vuoksi tapahtumissa noudatetaan turvallisemman tilan periaatteita. Mikäli kohtaat häirintää tai ahdistavia tilanteita tapahtumassamme, ole rohkeasti yhteydessä henkilökuntaan!</p><p>Kunnioitathan osallistujana kaikkien muiden rajoja. Vältä myös oletuksia kanssaolijoiden taustoista, sukupuolesta, seksuaalisuudesta tai muista identiteettitekijöistä. Kaikenlainen häirintä, syrjintä tai muu toisten rajojen rikkominen johtaa poistamiseen alueelta. </p>" }, "provider": null, "name": { "fi": "Matinkylän liikennejärjestelyt: Info- ja keskustelutilaisuus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqoy4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5hq6e2e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6d5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6ehq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6eke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6emy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6ep4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6esu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6eve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6exu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-17T07:53:12.750938Z", "last_modified_time": "2024-12-17T07:55:41.638286Z", "date_published": null, "start_time": "2025-01-12T09:00:00Z", "end_time": "2025-05-18T10: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, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "provider": null, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6e2e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj5hq6fje", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6e4m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6e7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6fbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6fdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6fgy/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-17T07:26:49.845176Z", "last_modified_time": "2024-12-17T07:26:49.845198Z", "date_published": null, "start_time": "2025-01-31T07:30:00Z", "end_time": "2025-05-09T06:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Storytime in English" }, "description": { "fi": "<p>Tervetuloa tarinoiden äärelle avoimeen satuhetkeen. Luemme tarinoita lapsille englanninkielellä.</p>", "sv": "<p>Alla barn, föräldrar, mor- och farföräldrar är välkomna att delta i sagostunden. Vi läser sagor på engelska.</p>", "en": "<p>All children, parents and grandparents are welcome to join the storytime in Jaminurkka. We read stories in English.</p>" }, "provider": null, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Storytime in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5hq6fje/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj3axff5m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T10:26:49.455645Z", "last_modified_time": "2024-12-16T13:40:31.348110Z", "date_published": "2024-12-10T10:20:00Z", "start_time": "2024-12-16T16:00:00Z", "end_time": "2024-12-16T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kokoomuksen kansanedustajat Pia Kauma sekä Jarmo Lindberg keskustelevat ajankohtaisesta aiheesta.", "sv": "Samlingspartiets riksdagsledamöter Pia Kauma och Jarmo Lindberg diskuterar ett aktuellt ämne.", "en": "National Coalition Party Members of Parliament Pia Kauma and Jarmo Lindberg discuss a current topic." }, "description": { "fi": "<p>Keskustelutilaisuus:</p><p>USA:n vaalit ja turvallisuus</p>", "sv": "<p>Diskussionstillfälle: USA:s val och säkerhet.</p>", "en": "<p>Discussion event: U.S. elections and security.</p>" }, "provider": null, "name": { "fi": "Keskustelutilaisuus: USA:n vaalit ja turvallisuus", "sv": "Diskussionstillfälle: USA:s val och säkerhet", "en": "Discussion event: U.S. elections and security" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3axff5m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19425, "next": "