Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1180
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1181", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1179" }, "data": [ { "id": "helmet:269746", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5520, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-18T09:50:41.299577Z", "last_modified_time": "2023-10-18T09:50:41.299600Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01B1B8CD-B6F6-4E9A-978E-550BC1D2778B}/106862", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-18T09:52:36.279634Z", "last_modified_time": "2023-11-07T06:20:54.892548Z", "date_published": "2023-10-18T08:52:00Z", "start_time": "2023-10-19T05:00:00Z", "end_time": "2023-10-19T17: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, "name": { "fi": "Heijastinseinä 2023" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lastenosasto" }, "short_description": { "fi": "Lasten kirjojen osastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä. He voivat myös vaihtaa omat heijastimet parempaan – tai erilaiseen. Tärkeintä on, että lapset näkyvät ulkona vuoden pimeiden kuukausien aikana." }, "info_url": null, "description": { "fi": "<p> <b>Syyslomaviikon ajan 16.10.-20.10.2023</b> <strong> lastenosastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä</strong> </p><p>LC Stamina toimii lasten turvallisen liikunnan puolesta. Siksi järjestämme taas heijastinseinän Ison Omenan kirjastossa. </p><p>Lasten kirjojen osastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä. He voivat myös vaihtaa omat heijastimet parempaan – tai erilaiseen. Tärkeintä on, että lapset näkyvät ulkona vuoden pimeiden kuukausien aikana. </p><p>Projektia tukee tänä vuonna:<br> Ison Omenan kirjasto<br> Poliisi<br> Traficom<br> Pelastuslaitos<br> Hanaholmen<br> Suomen Lions-liitto<br> ja monet muut lahjoittamalla heijastimia.</p><p> <br> Jos sinulla on kotona käyttämättömiä heijastimia, anna ne meille. Jaetaan ne lapsille! Laita viesti: <a href=\"mailto:lions.club.stamina@gmail.com\">lions.club.stamina@gmail.com</a> tai soita 040197078 Kristine. Voit toki viedä heijastimia itsekin seinälle, jos liikut Ison Omenan suunnalla.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269746/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269745", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5520, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-18T09:50:41.299577Z", "last_modified_time": "2023-10-18T09:50:41.299600Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01B1B8CD-B6F6-4E9A-978E-550BC1D2778B}/106862", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-18T09:51:53.769736Z", "last_modified_time": "2023-11-07T06:20:51.352332Z", "date_published": "2023-10-18T08:52:00Z", "start_time": "2023-10-18T05:00:00Z", "end_time": "2023-10-18T17: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, "name": { "fi": "Heijastinseinä 2023" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lastenosasto" }, "short_description": { "fi": "Lasten kirjojen osastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä. He voivat myös vaihtaa omat heijastimet parempaan – tai erilaiseen. Tärkeintä on, että lapset näkyvät ulkona vuoden pimeiden kuukausien aikana." }, "info_url": null, "description": { "fi": "<p> <b>Syyslomaviikon ajan 16.10.-20.10.2023</b> <strong> lastenosastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä</strong> </p><p>LC Stamina toimii lasten turvallisen liikunnan puolesta. Siksi järjestämme taas heijastinseinän Ison Omenan kirjastossa. </p><p>Lasten kirjojen osastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä. He voivat myös vaihtaa omat heijastimet parempaan – tai erilaiseen. Tärkeintä on, että lapset näkyvät ulkona vuoden pimeiden kuukausien aikana. </p><p>Projektia tukee tänä vuonna:<br> Ison Omenan kirjasto<br> Poliisi<br> Traficom<br> Pelastuslaitos<br> Hanaholmen<br> Suomen Lions-liitto<br> ja monet muut lahjoittamalla heijastimia.</p><p> <br> Jos sinulla on kotona käyttämättömiä heijastimia, anna ne meille. Jaetaan ne lapsille! Laita viesti: <a href=\"mailto:lions.club.stamina@gmail.com\">lions.club.stamina@gmail.com</a> tai soita 040197078 Kristine. Voit toki viedä heijastimia itsekin seinälle, jos liikut Ison Omenan suunnalla.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269745/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269750", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5520, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-18T09:50:41.299577Z", "last_modified_time": "2023-10-18T09:50:41.299600Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01B1B8CD-B6F6-4E9A-978E-550BC1D2778B}/106862", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-18T09:51:12.156144Z", "last_modified_time": "2023-11-07T06:20:47.917064Z", "date_published": "2023-10-18T08:52:00Z", "start_time": "2023-10-17T05:00:00Z", "end_time": "2023-10-17T17: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, "name": { "fi": "Heijastinseinä 2023" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lastenosasto" }, "short_description": { "fi": "Lasten kirjojen osastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä. He voivat myös vaihtaa omat heijastimet parempaan – tai erilaiseen. Tärkeintä on, että lapset näkyvät ulkona vuoden pimeiden kuukausien aikana." }, "info_url": null, "description": { "fi": "<p> <b>Syyslomaviikon ajan 16.10.-20.10.2023</b> <strong> lastenosastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä</strong> </p><p>LC Stamina toimii lasten turvallisen liikunnan puolesta. Siksi järjestämme taas heijastinseinän Ison Omenan kirjastossa. </p><p>Lasten kirjojen osastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä. He voivat myös vaihtaa omat heijastimet parempaan – tai erilaiseen. Tärkeintä on, että lapset näkyvät ulkona vuoden pimeiden kuukausien aikana. </p><p>Projektia tukee tänä vuonna:<br> Ison Omenan kirjasto<br> Poliisi<br> Traficom<br> Pelastuslaitos<br> Hanaholmen<br> Suomen Lions-liitto<br> ja monet muut lahjoittamalla heijastimia.</p><p> <br> Jos sinulla on kotona käyttämättömiä heijastimia, anna ne meille. Jaetaan ne lapsille! Laita viesti: <a href=\"mailto:lions.club.stamina@gmail.com\">lions.club.stamina@gmail.com</a> tai soita 040197078 Kristine. Voit toki viedä heijastimia itsekin seinälle, jos liikut Ison Omenan suunnalla.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269750/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269748", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5520, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-18T09:50:41.299577Z", "last_modified_time": "2023-10-18T09:50:41.299600Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01B1B8CD-B6F6-4E9A-978E-550BC1D2778B}/106862", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-18T09:50:41.153122Z", "last_modified_time": "2023-11-07T06:20:45.016248Z", "date_published": "2023-10-18T08:52:00Z", "start_time": "2023-10-16T05:00:00Z", "end_time": "2023-10-16T17: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, "name": { "fi": "Heijastinseinä 2023" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lastenosasto" }, "short_description": { "fi": "Lasten kirjojen osastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä. He voivat myös vaihtaa omat heijastimet parempaan – tai erilaiseen. Tärkeintä on, että lapset näkyvät ulkona vuoden pimeiden kuukausien aikana." }, "info_url": null, "description": { "fi": "<p> <b>Syyslomaviikon ajan 16.10.-20.10.2023</b> <strong> lastenosastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä</strong> </p><p>LC Stamina toimii lasten turvallisen liikunnan puolesta. Siksi järjestämme taas heijastinseinän Ison Omenan kirjastossa. </p><p>Lasten kirjojen osastolla kirjaston aukioloaikana lapset saavat ottaa itselleen heijastimen seinältä. He voivat myös vaihtaa omat heijastimet parempaan – tai erilaiseen. Tärkeintä on, että lapset näkyvät ulkona vuoden pimeiden kuukausien aikana. </p><p>Projektia tukee tänä vuonna:<br> Ison Omenan kirjasto<br> Poliisi<br> Traficom<br> Pelastuslaitos<br> Hanaholmen<br> Suomen Lions-liitto<br> ja monet muut lahjoittamalla heijastimia.</p><p> <br> Jos sinulla on kotona käyttämättömiä heijastimia, anna ne meille. Jaetaan ne lapsille! Laita viesti: <a href=\"mailto:lions.club.stamina@gmail.com\">lions.club.stamina@gmail.com</a> tai soita 040197078 Kristine. Voit toki viedä heijastimia itsekin seinälle, jos liikut Ison Omenan suunnalla.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269748/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263001", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2748, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:03.396255Z", "last_modified_time": "2023-08-15T15:31:03.396300Z", "name": "", "url": "https://www.helmet.fi/download/noname/{ADF985DF-BC8B-4F5B-9484-E3A7D66E4F29}/99391", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:46:48.585469Z", "last_modified_time": "2023-11-07T06:20:44.881205Z", "date_published": "2023-06-30T21:00:00Z", "start_time": "2023-10-16T15:00:00Z", "end_time": "2023-10-16T17: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, "name": { "fi": "Suomen kielen opetusryhmä", "en": "Finnish language study group" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Kerhotila, 3. kerros", "en": "Kerhotila, 3rd floor" }, "short_description": { "fi": "Haluatko oppia suomea? Tule suomen kielen opintoryhmään maanantaisin klo 18!", "en": "Do you want to learn Finnish? Let’s Read Together -group gathers on Mondays." }, "info_url": null, "description": { "fi": "<h3>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.</h3><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p><p>Huom! Ryhmä kokoontuu 2. kerroksen tapahtumahuoneessa 20.11.</p><p>******<br> Valokuva: Juhani Räty/Vantaan kaupunki</p><p>Logot: Vantaan kaupunki, Helmet-kirjasto, Luetaan yhdessä -verkosto</p>", "en": "<h3>Would you like to learn Finnish? Let’s Read Together -group gathers once a week for about two hours.</h3><p>The group practices reading, writing, listening and talking in Finnish.</p><p>Teachers of the groups are volunteers.</p><p>Studying is free.</p><p>You can take your children with you.</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).</p><p>Please note that on 20th of November group exceptionally gathers on the second floor.</p><p>******</p><p>Photo: Juhani Räty/City of Vantaa</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263001/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263002", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2748, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:03.396255Z", "last_modified_time": "2023-08-15T15:31:03.396300Z", "name": "", "url": "https://www.helmet.fi/download/noname/{ADF985DF-BC8B-4F5B-9484-E3A7D66E4F29}/99391", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:44:14.188929Z", "last_modified_time": "2023-11-07T06:20:30.009914Z", "date_published": "2023-06-30T21:00:00Z", "start_time": "2023-10-09T15:00:00Z", "end_time": "2023-10-09T17: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, "name": { "fi": "Suomen kielen opetusryhmä", "en": "Finnish language study group" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Kerhotila, 3. kerros", "en": "Kerhotila, 3rd floor" }, "short_description": { "fi": "Haluatko oppia suomea? Tule suomen kielen opintoryhmään maanantaisin klo 18!", "en": "Do you want to learn Finnish? Let’s Read Together -group gathers on Mondays." }, "info_url": null, "description": { "fi": "<h3>Haluatko oppia suomea? Tule opiskelemaan Luetaan yhdessä -ryhmään.</h3><p>Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea kerran viikossa maanantaisin.</p><p>Ryhmän opettajat ovat vapaaehtoisia.</p><p>Opiskelu on ilmaista.</p><p>Voit ottaa lapsesi mukaan tunneille.</p><p>Voit tulla mukaan milloin vain.</p><p>Kirjaston ryhmä on avoin kaikille (naisille ja miehille).</p><p>Huom! Ryhmä kokoontuu 2. kerroksen tapahtumahuoneessa 20.11.</p><p>******<br> Valokuva: Juhani Räty/Vantaan kaupunki</p><p>Logot: Vantaan kaupunki, Helmet-kirjasto, Luetaan yhdessä -verkosto</p>", "en": "<h3>Would you like to learn Finnish? Let’s Read Together -group gathers once a week for about two hours.</h3><p>The group practices reading, writing, listening and talking in Finnish.</p><p>Teachers of the groups are volunteers.</p><p>Studying is free.</p><p>You can take your children with you.</p><p>You can join whenever you like.</p><p>The library group is for everybody (women and men).</p><p>Please note that on 20th of November group exceptionally gathers on the second floor.</p><p>******</p><p>Photo: Juhani Räty/City of Vantaa</p><p>Logos: City of Vantaa, Helmet Library, Let's Read Together -network</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4775, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-14T12:45:50.088699Z", "last_modified_time": "2023-09-14T12:45:50.088716Z", "name": "", "url": "https://www.helmet.fi/download/noname/{A4C64C29-2D78-4953-A931-64CDC4967C37}/105838", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4775/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-14T12:45:49.931840Z", "last_modified_time": "2023-11-07T06:20:27.520199Z", "date_published": "2023-09-14T09:00:00Z", "start_time": "2023-09-18T15:00:00Z", "end_time": "2023-10-07T13: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, "name": { "fi": "Taidenäyttely - Sinikka Salminen - Pehmeä taide" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "sinikka salmisen taidenäyttely tikkurilan kirjastossa" }, "info_url": null, "description": { "fi": "</p><p>Villalanka kertoo ja kuvaa,</p><p>Sinikka Salmisen pienoistauluja esillä Tikkurilan kirjastossa 18.9 - 7.10.2023.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267552", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3841, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-01T10:34:18.925631Z", "last_modified_time": "2023-09-01T10:34:18.925652Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DAFB4296-9523-48CA-B46A-51FB90EC1A12}/105467", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3841/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-01T10:34:18.792845Z", "last_modified_time": "2023-11-07T06:20:27.457207Z", "date_published": "2023-09-01T08:17:00Z", "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pikkulin laululeikki-show" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Lasten tapahtumatila, 3. krs" }, "short_description": { "fi": "Pikku kakkosesta tutun Pikkulin oma laululeikki-show saapuu Oodin lastenalueelle kahden esityksen voimin lauantaina 7.10. klo 13 & 15!" }, "info_url": null, "description": { "fi": "<p>Pikkulin oma laululeikki-show saapuu Oodin lastenalueelle kahden esityksen voimin <strong>lauantaina 7.10. klo 13:00 ja 15:00! </strong>Vapaa pääsy!</p><p>Shown tähti on tietysti Pikku Kakkosesta tuttu Pikkuli itse. Pikkulin mukana laulattamassa ja leikittämässä ovat Pikkuli-animaatiosarjan tekijät Metsämarja ja Antti Aittokoski.</p><p>Pikkuli touhuaa mukana koko shown ajan. Saamme kuulla esimerkiksi millaisia kavereita Pikkulilla on ja mitä he tykkäävät leikkiä yhdessä.</p><p>Lammen rannalla tapaamme Pikkulin parhaan ystävän, Honkkeli-linnun. Opimme myös kuinka tehdään Honkkelin ilotepsutus.</p><p>Tapahtumapaikka: Oodin lastenalue, 3. krs, satumatto</p><p>Esitysajat:</p><ul> <li>7.10. klo 13</li> <li>7.10. klo 15</li> </ul>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267552/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268900", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4915, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-27T11:39:12.139276Z", "last_modified_time": "2023-09-27T11:39:12.139298Z", "name": "", "url": "https://www.helmet.fi/download/noname/{0DFEABEC-53A7-4F20-AF24-69B16C17ABA0}/106213", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4915/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-27T11:39:10.148049Z", "last_modified_time": "2023-11-07T06:20:27.396489Z", "date_published": "2023-09-27T09:10:00Z", "start_time": "2023-10-07T09:00:00Z", "end_time": "2023-10-07T12: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, "name": { "fi": "Lasten dekkarifestivaali 2023" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tammi ja Kallion kirjasto järjestävät yhdessä jo neljännen kerran alakouluikäisille suunnatun Lasten dekkarifestivaalin lauantaina 7.10. klo 12–15.30. Lue lisää..." }, "info_url": null, "description": { "fi": "<p> <strong>Tammi ja Kallion kirjasto järjestävät yhdessä jo neljännen kerran alakouluikäisille suunnatun Lasten dekkarifestivaalin lauantaina 7.10. klo 12–15.30.</strong> <br> <br> Mukana toiminnallisessa tapahtumassa ovat <strong>Riina</strong> ja <strong>Sami Kaarla</strong> sekä <strong>Anders Vacklin </strong>kertomassa Pet Agents -sarjastaan ja <strong>Janne Malinen</strong> Waaralinnan salaisuudet -sarjasta. Potter-tietämyksensä voi todistaa Harry Potter 25 vuotta Suomessa -tietokilpailussa, jossa on luvassa upeita palkintoja. Paikalla vierailevat myös supersuositut hahmot Supermarsu ja Koiramies.<br><br> Tule mukaan jännittävään seikkailuun! Pääset tutustumaan kirjoihin ja kirjailijoihin sekä heidän kiinnostaviin hahmoihinsa. Lisäksi Lasten dekkarifestivaalilla on mahdollisuus osallistua erilaisiin työpajoihin ja päästä itsekin mukaan ratkaisemaan arvoituksia.<br> Tapahtumaan on vapaa pääsy.<br><br> Kirjojen myyntipiste on avoinna klo 12–15.30. Kaikki kirjat myydään edullisin festivaalihinnoin. Kirjaston Dekkarikahvila Johtolangassa on mehutarjoilu lapsille koko tapahtuman ajan.</p><p>Ohjelma:</p><ul> <li> <strong>klo 12.00–12.10 </strong>| Kupolisali, 1. krs</li> </ul><p>Tervetuloa Kallion kirjastoon! Kallion kirjasto toivottaa kaikki tervetulleiksi ja kertoo, miten kirjoja lainataan, kuinka kauan kirjoja saa pitää lainassa, keneltä voi kysyä neuvoa, mistä löytyvät lasten dekkarit ja muut kirjat ja paljon muuta.</p><ul> <li> <strong>klo 12.10–12.30 </strong>| Kupolisali, 1. krs</li> </ul><p>HAASTATTELU: Riina ja Sami Kaarla sekä Anders Vacklin kertovat Lemmikkifrendit- ja Pet Agents- sarjoistaan, joissa nörttityttö Kati-e seikkailee yhdessä robottinsa Ti-botin kanssa. <strong>Johanna Harkkila</strong> haastattelee.</p><ul> <li> <strong>klo 12.30 alkaen </strong>| ryhmätila Otso, 1. krs <br><strong><a href=\"https://www.facebook.com/hashtag/huom?__eep__=6&__cft__[0]=AZUOdOb1v0MvAPZcC0HSN54kuBPw5iprCd_dqIz9VlOD741KCuA5qsEfwJ3Tt1T2xh92xgQdLQWijK-Le7w2NWITYtNlEVgGkRpcRrPO2HjyHi6GmGuJAzPapKajwWcZI00&__tn__=q\">#HUOM</a>! Muutos ohjelmaan: piirrospajan tilalla on <a href=\"https://www.facebook.com/hashtag/dekkaripaja?__eep__=6&__cft__[0]=AZUOdOb1v0MvAPZcC0HSN54kuBPw5iprCd_dqIz9VlOD741KCuA5qsEfwJ3Tt1T2xh92xgQdLQWijK-Le7w2NWITYtNlEVgGkRpcRrPO2HjyHi6GmGuJAzPapKajwWcZI00&__tn__=q\">#dekkaripaja</a>!</strong></li> </ul><p>TYÖPAJA: Pet Agents<br> Piirrä Pet Agents -sarjan hahmoja Riina ja Sami Kaarlan ja Anders Vacklinin opastuksella!<br> Miten syntyvät sarjan eläimet, ihmiset ja upeat maisemat?</p><ul> <li> <strong>klo 12.45 </strong>| Kupolisali, 1. krs</li> </ul><p>TAPAA: Supermarsu-hahmo!</p><ul> <li> <strong>klo 13.15—14.00 </strong>| Kupolisali, 1. krs</li> </ul><p>TIETOKILPAILU: Harry Potter 25 vuotta Suomessa – Oletko Potter-tietäjä?<br> Kahoot-tietokilpailuun voit osallistua Kupolisalissa omalla puhelimellasi. Parhaille tietäjille luvassa loistavat kirjapalkinnot!</p><ul> <li> <strong>klo 14.00 </strong>| Kupolisali, 1. krs</li> </ul><p>TAPAA: Koiramies-hahmo!</p><ul> <li> <strong>klo 14.30 – 14.45 </strong>| Kupolisali, 1. krs</li> </ul><p>HAASTATTELU: Kirjailija Janne Malinen raottaa ovet Waaralinnan salaperäiseen parantolaan,<br> jossa vaarat vaanivat niin sokkeloisilla käytävillä kuin ympäröivässä metsässä. Alakouluikäisille<br> sopivassa seikkailusarjassa on ilmestynyt kaksi osaa, Seitsemän kielonlehteä ja<br> Verenpunainen kristalli. Johanna Harkkila haastattelee.</p><ul> <li> <strong>klo 14.45 – 15.30 </strong>| aloitus Dekkarikirjastosta, kulku Kupolisalista, 1. krs</li> </ul><p>TYÖPAJA: Waaralinna-seikkailu<br> Waaralinnan sokkeloiset käytävät ovat täynnä salaisuuksia. Nyt nämä salaisuudet –<br> tai ainakin yksi niistä – raottuvat jännittävällä rastiradalla, jossa pääset ratkaisemaan<br> parantolaan piilotetun viestin arvoituksen yhdessä kirjailija Janne Malisen kanssa.</p><p> <br> Koko tapahtuman ajan:<br><br> • Lastendekkareiden myyntipiste (Kupolisali 1. krs)<br> • <strong>Dekkarikahvila Johtolanka</strong>: mehutarjoilu (Satulinna 3. krs)<br> • Kuvaa itsesi Lasse-Maijan etsivätoimiston etsivien kanssa (1. krs)<br> • Supermarsu vierailee tapahtumassa klo 12.45–13.05 (Kupolisali 1. krs)<br> • Koiramies vierailee tapahtumassa klo 14.00—14.20 (Kupolisali 1. krs)</p><p> <br> </p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 850 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268900/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265131", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8308/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2897, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:09.669953Z", "last_modified_time": "2024-02-06T13:40:23.036244Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BF9CBE89-F897-4B97-BF92-224A009A4BE3}/104600", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2897/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:43:48.912580Z", "last_modified_time": "2023-11-07T06:20:27.348922Z", "date_published": "2023-08-11T07:00:00Z", "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T11: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, "name": { "fi": "Pikkukino" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Elopelto" }, "short_description": { "fi": "Koko perheen elokuvia Viikin kirjastossa" }, "info_url": null, "description": { "fi": "<p>Tervetuloa katsomaan koko perheen elokuvia Viikin kirjaston Elopeltoon!</p><p>Elokuvia näytetään kerran kuussa launataisin klo 13. Elokuvat ovat kaikille sallittuja (S) ja niihin on vapaa pääsy. </p><p>Elokuvat:</p><p>La 9.9. Heinähattu, Vilttitossu ja ärhäkkä koululainen</p><p>La 7.10. Risto Räppääjä ja Liukas Lennart</p><p>11.11. Heinähattu, Vilttitossu ja Rubensin veljekset</p><p>9.12. Risto Räppääjä ja Sevillan saituri</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265131/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267749", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10829/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3885, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-05T11:34:49.559397Z", "last_modified_time": "2023-09-05T11:34:49.559418Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C96BA6B0-572A-4704-8154-43C64691B9BA}/105607", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-05T11:34:48.686504Z", "last_modified_time": "2023-11-07T06:20:27.290875Z", "date_published": "2023-09-05T10:52:00Z", "start_time": "2023-10-07T09:00:00Z", "end_time": "2023-10-07T11: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, "name": { "fi": "Käsityötapaaminen" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kumpulan Kätsyt eli Kumpulan Siirtolapuutarhan käsityön harrastajat tapaavat käsitöiden merkeissä Oulunkylän kirjastossa. Tervetuloa myös muut käsityön ystävät!" }, "info_url": null, "description": { "fi": "<p>Kumpulan Kätsyt eli Kumpulan Siirtolapuutarhan käsityön harrastajat tapaavat käsitöiden merkeissä Oulunkylän kirjastossa. Tervetuloa myös muut käsityön ystävät!</p><p>Tule mukaan vaikka opettelemaan sukan kantapään tekeminen.</p><p>Avoimet tapaamiset kirjaston monitoimitilassa lauantaisin 7.10., 28.10. ja 2.12.2023.</p><p>Kuva: unsplash.com / Ursula Castillo</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Oulunkylan_kirjasto\">Oulunkylän kirjasto</a> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267749/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264147", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2629, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:22.474612Z", "last_modified_time": "2023-08-15T15:28:22.474634Z", "name": "", "url": "https://www.helmet.fi/download/noname/{09A3471A-BF1D-432C-9E00-A10C7D2ECA94}/104550", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2629/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:43:47.287666Z", "last_modified_time": "2023-11-07T06:20:27.239744Z", "date_published": "2023-07-19T10:55:00Z", "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T11: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, "name": { "fi": "Kiinankielinen satutunti", "en": "Chinese Story Time" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.", "en": "Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture." }, "info_url": null, "description": { "fi": "<p>Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.</p><p>Kiinankielinen satutunti on suunnattu kiinankielisille lapsille, jotka ovat kiinnostuneita kiinan kielen oppimisesta. Satutunnit järjestetään kirjaston lastenosastolla.</p>", "en": "<p>Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture.</p><p>The story times are arranged at the library's children's section.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264147/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266732", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11202/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11756/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3708, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T08:43:50.656069Z", "last_modified_time": "2023-08-25T08:43:50.656091Z", "name": "", "url": "https://www.helmet.fi/download/noname/{52525431-DA01-47BF-9A07-A406040AAF0A}/105213", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3708/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [], "created_time": "2023-08-25T08:59:03.878452Z", "last_modified_time": "2023-11-07T06:20:27.186596Z", "date_published": "2023-08-25T06:00:00Z", "start_time": "2023-10-07T09:00:00Z", "end_time": "2023-10-07T10: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, "name": { "ru": "Книжный клуб для подростков" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "ru": "Robohuone, Tikkurilan kirjasto." }, "short_description": { "ru": "Добро пожаловать в наш книжный клуб!" }, "info_url": null, "description": { "ru": "<p>Добро пожаловать в книжный клуб ! </p><p>Приглашаем тебя, 10-14 летний подросток, если ты любишь читать и общаться на разные темы. Книжный клуб бесплатный и к нему не нужно готовиться заранее.</p><p>На встрече мы все вместе читаем/слушаем короткий текст на русском языке, а потом разговариваем об этом тексте и просто о жизни. Каждый участник имеет право высказать то, что он думает, или просто послушать других, думая о своём.</p><p>В осеннем сезоне 2023 встречи книжного клуба проходят три раза в месяц <strong>по субботам с 12 до 13:30.</strong></p><p> <strong>Место встреч:</strong> Robohuone, Tikkurilan kirjasto.</p><p> <strong>Даты встреч:</strong> 2, 9 и 23 сентября </p><p> 7, 21 и 28 октября</p><p> 4, 11 и 18 ноября</p><p> 2, 9 и 16 декабря</p><p>Ведущие клуба: переводчик с английского Анастасия Басова и детский писатель Анна Анисимова.</p><p>Photo by <a href=\"https://unsplash.com/@tommyskywalker?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Qihao Wang</a> on <a href=\"https://unsplash.com/photos/BEeC31IpMEg?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Unsplash</a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266732/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263789", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2999, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:43:45.656869Z", "last_modified_time": "2023-08-15T15:43:45.656887Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CF5839BC-1827-4AA6-9108-085B893D8FFC}/104535", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2999/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-08-15T15:43:45.534304Z", "last_modified_time": "2023-11-07T06:20:27.133236Z", "date_published": "2023-07-15T08:12:40.297000Z", "start_time": "2023-10-07T07:00:00Z", "end_time": "2023-10-07T09: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, "name": { "fi": "Teatterityöpaja" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Kanerva-huone (pohjakerros)" }, "short_description": { "fi": "Oletko 60+ v.?Haluatko oppia näyttelemään? Tule mukaan kuuntelemaan, kokeilemaan ja oppimaan näyttelijäntyön perusteita iloisessa seurassa ilmaiseksi!" }, "info_url": null, "description": { "fi": "<p>Oletko 60+ v.?Haluatko oppia näyttelemään?</p><p>Tule mukaan kuuntelemaan, kokeilemaan ja oppimaan näyttelijäntyön perusteita iloisessa seurassa ilmaiseksi!</p><p>Aika: la 7.10.2023 ja la 21.10.2023 klo 10-12</p><p>Paikka: Itäkeskuksen kirjasto (kokoushuone Kanerva)</p><p>Ei tarvitse ilmoittautua etukäteen. Tervetuloa rohkeasti mukaan!</p><p>Lisätietoja: <a href=\"mailto:opera.tellus@gmail.com\" title=\"mailto:opera.tellus@gmail.com\">opera.tellus@gmail.com</a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263789/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262953", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p14004/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2892, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:05.218413Z", "last_modified_time": "2023-08-15T15:34:05.218441Z", "name": "", "url": "https://www.helmet.fi/download/noname/{4033CEBC-6579-498C-9799-A31B3F321350}/104408", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2892/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:43:45.188058Z", "last_modified_time": "2023-11-07T06:20:27.079489Z", "date_published": "2023-07-05T10:43:00Z", "start_time": "2023-10-07T07:30:00Z", "end_time": "2023-10-07T09: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, "name": { "fi": "Book and Culture Café in English", "en": "Book and Culture Café in English" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Welcome to our monthly book and culture discussion group at Itäkeskus Library! Discussion in English.", "en": "Welcome to our monthly book and culture discussion group at Itäkeskus Library! Discussion in English." }, "info_url": null, "description": { "fi": "<p> <strong>Welcome to our monthly book and culture discussion group at Itäkeskus Library!</strong> </p><p>Each month participants will read a book, watch a film, or listen to an album <strong>related to a theme that the group decides on. </strong></p><p>During the gathering we'll have coffee, share what we've read, watched or listened to, and see where the conversation takes us.</p><p> <strong>Dates (all Saturdays): </strong> <br> November 11th, December 9th<br><strong>Time: </strong>10:30-12:00</p><p> <strong>The theme for the November 11th meeting is inspired by the Helmet Reading Challenge #19. Read a book or watch a film set in a place you have visited (or that you would like to visit). You can interpret \"place\" however you like. </strong> </p><p> <strong>If you don't have time to read a book or watch a film, you are still welcome to join the discussion!</strong> </p><p>For more information or reading suggestions please contact Robert at robert.conaway-bothwell@hel.fi</p>", "en": "<p> <strong>Welcome to our monthly book and culture discussion group at Itäkeskus Library!</strong> </p><p>Each month participants will read a book, watch a film, or listen to an album related to a theme (for example Japan, Historical Fiction, Film Noir, or whatever the group decides on). </p><p>During the gathering we'll have coffee, share what we've read, watched or listened to, and see where the conversation takes us.</p><p> <strong>Dates for autumn (all Saturdays): </strong> <br> September 9th, October 7th, November 11th, December 9th<br><strong>Time: </strong>10:30-12:00</p><p> <strong>The theme for the first meeting is To be read... </strong>You can read a book from your reading list or watch a film you’ve been meaning to watch, etc. English need not be your native language to participate.</p><p>At the first meeting we will choose themes for the rest of the autumn.</p><p>For more information or reading suggestions please contact Robert at robert.conaway-bothwell@hel.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262953/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:258496", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2627, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:21.751939Z", "last_modified_time": "2024-02-06T13:38:20.614203Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3C85B692-C8B4-4CBC-9F31-0DF44BB3299F}/100129", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2627/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:43:44.095204Z", "last_modified_time": "2023-11-07T06:20:27.004977Z", "date_published": "2023-02-03T08:39:00Z", "start_time": "2023-10-07T08:00:00Z", "end_time": "2023-10-07T08:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Reality Retreat", "en": "Reality Retreat" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Akseli-sali", "en": "Akseli-sali" }, "short_description": { "fi": "Unique Mantra Meditation for mind & soul", "en": "Unique Mantra Meditation for mind & soul" }, "info_url": null, "description": { "fi": "</p><p>MEDITATION</p><p>Unique Mantra Meditation for mind & soul</p><p> • health benefits • mindfulness</p><p>• emotional well-being • stress relief</p><p>Once a month on Saturdays at 11.00 – 11.50</p><p>Sep 2, Oct 7, Nov 4 and Dec 2</p><p> <strong>facebook</strong> :-<a href=\"https://www.facebook.com/realityretreatfi/\">https://www.facebook.com/realityretreatfi/</a></p><p>Walk in or RSVP to <a href=\"mailto:realityretreat.fi@gmail.com\">realityretreat.fi@gmail.com</a></p>", "en": "</p><p>MEDITATION</p><p>Unique Mantra Meditation for mind & soul</p><p> • health benefits • mindfulness</p><p>• emotional well-being • stress relief</p><p>Once a month on Saturdays at 11.00 – 11.50</p><p>Sep 2, Oct 7, Nov 4 and Dec 2</p><p> <strong>facebook</strong> :-<a href=\"https://www.facebook.com/realityretreatfi/\">https://www.facebook.com/realityretreatfi/</a></p><p>Walk in or RSVP to <a href=\"mailto:realityretreat.fi@gmail.com\">realityretreat.fi@gmail.com</a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:258496/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:260535", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:09.862678Z", "last_modified_time": "2024-02-06T13:38:39.450870Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B92373FF-BD23-428F-B5E2-D3E9EC134C70}/93620", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2791/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:43:42.201596Z", "last_modified_time": "2023-11-07T06:20:26.940327Z", "date_published": "2022-12-12T22:00:00Z", "start_time": "2023-10-07T08:00:00Z", "end_time": "2023-10-07T08: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, "name": { "fi": "Satutuokio lauantaisin" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tervetuloa virittäytymään tarinoiden taajuudelle!" }, "info_url": null, "description": { "fi": "<p>Munkan kirjastossa virittäydytään taas tarinoiden taajudelle, kun satutuokio pyörähtää käyntiin tuttuun tapaan lauantaina klo 11:00. Satutuokio on suunnattu erityisesti 3 - 6-vuotiaille, mutta kaikki sadunnälkäiset ovat tottakai tervetulleita kuuntelemaan!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260535/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268372", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8178/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4812, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-18T17:39:09.652881Z", "last_modified_time": "2023-09-18T17:39:09.652903Z", "name": "", "url": "https://www.helmet.fi/download/noname/{27F71D9E-BD8D-45E3-8783-566C37E793C7}/105956", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4812/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-18T17:39:08.155625Z", "last_modified_time": "2023-11-07T06:20:26.870612Z", "date_published": "2023-09-18T15:20:00Z", "start_time": "2023-10-07T07:30:00Z", "end_time": "2023-10-07T08: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, "name": { "fi": "Musiikillinen taaperotuokio" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tervetuloa musiikilliseen taaperotuokioon Kontulan kirjastoon!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa musiikilliseen taaperotuokioon Kontulan kirjastoon!</p><p>Tuokiossa lauletaan, leikitään, musisoidaan ja luetaan kirjaa. Aiempaa musiikillista kokemusta ei tarvita.</p><p>Tuokio pidetään kirjaston lastenosastolla klo 10.30.</p><p>Vapaa pääsy!</p><p>Kuva: Jelleke Vanooteghem/ Unsplash</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268372/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60418", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV", "sv": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV", "en": "https://www.lippu.fi/eventseries/nypy-3470451/?affiliate=ADV" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4160, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:12.734123Z", "last_modified_time": "2023-09-07T14:21:12.734145Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734735.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4160/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:12.595776Z", "last_modified_time": "2023-11-06T21:13:26.599414Z", "date_published": null, "start_time": "2023-09-07T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "NYPY | ENSI-ILTA", "sv": "NYPY | PREMIÄR", "en": "NYPY | PREMIERE" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "NYPY on nykysirkusteos naisten oikeuksista ja vapaudesta. Teos on nuorallatanssin, nykytanssin ja käsityötaiteen – etenkin pitsinnypläyksen – yhteenliittymä.", "sv": "NYPY är ett nycirkusverk om kvinnors rättigheter och frihet. Verket är en konstellation av lindans, modern dans och konsthantverk, i synnerhet spetsknyppling.", "en": "NYPY is a contemporary circus piece about women’s rights and freedom. It is a fusion of tightrope walking, contemporary dance and crafts – especially lace-making." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/7BD3D09BDB7E9893D235066A2E61B7F8/NYPY_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/7BD3D09BDB7E9893D235066A2E61B7F8/NYPY_PREMIAR", "en": "http://www.caisa.fi/en/events/event/7BD3D09BDB7E9893D235066A2E61B7F8/NYPY_PREMIERE" }, "description": { "fi": "<p>NYPY on nykysirkusteos naisten oikeuksista ja vapaudesta. Teos on nuorallatanssin, nykytanssin ja käsityötaiteen – etenkin pitsinnypläyksen – yhteenliittymä.</p><p>Teoksessa slaavilaisen mytologian hahmo Vesna kuvaa kehollisuudellaan vapautta ja naisten oikeuksia. Slaavilaisen mytologisen ja ritualistisen naishahmon Vesnan ääni on tukahdutettu, kuten niin monien naisten ääni, maskuliinisen yhteiskunnan pauhuun. Herkkyys ja pehmeys ovat Vesnan voimat, joilla hän yrittää löytää kuulijan, katsojan ja kokijan.</p><p>Vesna tasapainottelee hyvän ja pahan, feminiinisyyden ja maskuliinisuuden sekä kovan ja pehmeän välillä luoden siltaa todellisuuden ja mielikuvituksen välille. Kevyt henkäys, huomaamaton liikahdus ja kaunis kosketus voivat vaikuttaa ympäristöön näkyvämmin kuin pakon sanelemat suoritukset...</p><p>Vesna toimii nykysirkusteos NYPYn soolohahmona.</p><p>Esiintyjä: Katarina Suviniitty <br>Valo/äänisuunnittelu: Anne Salmi <br>Kesto: 45 min <br>Ikäsuositus: +13-v <br>Kieli: sanaton,</p>", "sv": "<p>NYPY är ett nycirkusverk om kvinnors rättigheter och frihet. Verket är en konstellation av lindans, modern dans och konsthantverk, i synnerhet spetsknyppling.</p><p>I verket skildrar den slaviska mytologins figur Vesna frihet och kvinnors rättigheter med sin kropp. Den slaviska mytologins och ritualistiska kvinnofiguren Vesnas röst har kvävts, såsom så många kvinnors röster, av dånet från det maskulina samhället. Känslighet och mjukhet är Vesnas styrkor med vilka hon försöker hitta lyssnaren, åskådaren och upplevaren.</p><p>Längd: 45 min.<br>Åldersrekommendation: +13<br>Språk: ordlös</p>", "en": "<p>NYPY is a contemporary circus piece about women’s rights and freedom. It is a fusion of tightrope walking, contemporary dance and crafts – especially lace-making.</p><p>It features a Slavic mythological figure, Vesna, who embodies freedom and women’s rights. The voice of the Slavic mythological and ritualistic female figure Vesna is muffled, as is the voice of so many women, in the noise of male-dominated society. Sensitivity and softness are Vesna’s powers, which she uses to seek out the listener, the viewer and the experiencer.</p><p>Duration: 45 min<br>Age recommendation: 13+<br>Language: non-verbal.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60418/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60412", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3404533/", "sv": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3404533/", "en": "https://www.lippu.fi/artist/red-nose-company/red-nose-company-punahilkan-paluu-3404533/" }, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4159, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:12.337714Z", "last_modified_time": "2023-09-07T14:21:12.337750Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730567.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4159/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:12.191582Z", "last_modified_time": "2023-11-06T21:13:26.507551Z", "date_published": null, "start_time": "2023-09-07T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Red Nose Company: Punahilkan paluu – KANTAESITYS", "sv": "Red Nose Company: Rödluvans återkomst – PREMIÄR", "en": "Red Nose Company: The Return of Little Red Riding Hood – PREMIERE" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Vanhan kansansadun klovnipäivityksessä Punahilkka saa supervoimat käyttöönsä, kun Red Nose Companyn klovnit Babylon ja Ré pöllyttävät vanhaa klassikkoa.", "sv": "I denna uppdaterade clownversion får Rödluvan superkrafter, då Red Nose Companys clowner Babylon och Ré nytolkar den gamla, klassiska folksagan.", "en": "In this clownery version of the old folk tale, Little Red Riding Hood gets super powers as the clowns of the Red Nose Company, Babylon and Ré, get their hands on the old classic." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4481AC129C837B7F76A1CE56DB36D7F7/Red_Nose_Company_Punahilkan_paluu", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4481AC129C837B7F76A1CE56DB36D7F7/Red_Nose_Company_Rodluvans_aterkomst", "en": "http://www.kanneltalo.fi/en/events/event/4481AC129C837B7F76A1CE56DB36D7F7/Red_Nose_Company_The_Return_of_Little_Red_Riding_Hood" }, "description": { "fi": "<p>Vanhan kansansadun klovnipäivityksessä Punahilkka saa supervoimat käyttöönsä, kun Red Nose Companyn klovnit Babylon ja Ré pöllyttävät vanhaa klassikkoa.</p><p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana.</p><p>Isoäidiltä lahjaksi saatu viitta antaa Punahilkalle supervoimat ja auttaa selviytymään kiperissä tilanteissa. Supervoimista huolimatta myös yleisön apua tarvitaan. Miten mahtaa ratketa suden ja Punahilkan kohtaaminen tässä nykyaikaan päivitetyssä versiossa?</p><p>Klovnit johdattavat katsojan pohtimaan luottamuksen ja turvallisuuden teemoja huumoria säästelemättä.</p><p>Näyttämöllä: Hanna Seppä ja Minna Puolanto<br>Ohjaus: Niina Sillanpää</p><p>Esityksen kesto n. 60 min <br>Ikäsuositus: 6+<br>Kieli: suomi</p><p>Liput 6 €</p>", "sv": "<p>I denna uppdaterade clownversion får Rödluvan superkrafter, då Red Nose Companys clowner Babylon och Ré nytolkar den gamla, klassiska folksagan.</p><p>Sagan om Rödluvan har berättats från generation till generation i hundratals år. Nu får vi se den älskade sagan på scen i en glädjerik tolkning av clownerna Babylon och Ré.</p><p>Manteln som Rödluvan får av sin mormor ger henne superkrafter och hjälper henne att klara sig i kniviga situationer. Trots superkrafterna behövs även publikens hjälp. Hur kommer mötet mellan vargen och Rödluvan att gå till i den här moderna, uppdaterade versionen?</p><p>Utan att spara på humorn leder clownerna publiken till att fundera över teman kring tillit och trygghet.</p><p>Längd: ca. 60min.<br>Åldersrekommedation: 6+<br>Språk: finska</p>", "en": "<p>In this clownery version of the old folk tale, Little Red Riding Hood gets super powers as the clowns of the Red Nose Company, Babylon and Ré, get their hands on the old classic.</p><p>The story of Little Red Riding Hood has been told from generation to generation for hundreds of years. Now the beloved tale is brought to the stage in a hilarious interpretation by two clowns, Babylon and Ré.</p><p>The cape, a gift from her grandmother, gives Little Red Riding Hood superpowers and helps her survive tricky situations. Despite the superpowers, the audience’s help is also needed. How will the encounter between the wolf and Little Red Riding Hood play out in this modernised version?</p><p>The clowns will lead the audience to consider the themes of trust and safety, not forgetting humour.</p><p>Duration: approx. 60 min<br>Age recommendation 6+<br>Language: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60412/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26813, "next": "