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
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=1135®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1136®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1134®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "helmet:265453", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:14432/?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:10692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3002, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:44:09.364088Z", "last_modified_time": "2023-08-15T15:44:09.364105Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CE12F5DB-0FA8-487D-B7D1-6BCF39FC5C38}/104940", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3002/?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-08-15T15:44:09.245455Z", "last_modified_time": "2023-10-09T15:24:08.130203Z", "date_published": "2023-08-15T10:45:00Z", "start_time": "2023-10-09T15:00:00Z", "end_time": "2023-10-09T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Kirjailijavierailu: J&B – Kohtauksia eräänlaisesta avioliitosta" }, "short_description": { "fi": "Syksyn ruotsinkielisen kirjailijavierailun aiheena on Jörn Donnerin ja Bitte Westerlundin yhteinen elämä. Kirjailija Philip Teir ja Bitte Westerlund vierailevat kirjastossa ja keskustelevat teoksesta \"J&B\" ja sen synnystä. Ruotsinkielinen tapahtuma." }, "description": { "fi": "<p>Syksyn ruotsinkielisen kirjailijavierailun aiheena on Jörn Donnerin ja Bitte Westerlundin yhteinen elämä. Philip Teirin kirjoittama teos <em>J&B – Kohtauksia eräänlaisesta avioliitosta</em> julkaistaan syyskuussa.</p><p> <strong>Philip Teir</strong> ja <strong>Bitte Westerlund</strong> vierailevat kirjastossa ja keskustelevat teoksesta ja sen synnystä.</p><p>Kun Bitte Westerlund kävi läpi miehensä jäämistöä, hän tajusi ettei lähes 40 vuoden yhteiselosta ja yhteisistä lapsista huolimatta tuntenut tätä kovinkaan hyvin. Kirjaa varten Philip Teir haastatteli Westerlundia, tämän omaisia ja lähipiiriä. </p><p> <strong>Ruotsinkielinen tapahtuma.</strong> </p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265453/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264947", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8254/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2757, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:13.791785Z", "last_modified_time": "2024-02-06T13:39:10.008148Z", "name": "", "url": "https://www.helmet.fi/download/noname/{122373AE-22CB-49D7-AF01-BC5D9CD18AC4}/104785", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2757/?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:42:01.095754Z", "last_modified_time": "2023-10-09T15:20:26.568231Z", "date_published": "2023-08-07T21:00:00Z", "start_time": "2023-10-03T15:00:00Z", "end_time": "2023-10-03T15: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, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Satutuokio" }, "short_description": { "fi": "Satutuokiot Arabianrannan kirjastossa" }, "description": { "fi": "<p>Tutustutaan yhdessä erilaisiin satuihin ja tarinoihin eri teemoin.</p><p>Jokainen osallistuja saa oman satupassin johon voi kerätä tarroja satutuokion päätteeksi.</p><p>Tervetuloa matkaamaan satujen maailmaan!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264947/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264953", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8254/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2757, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:13.791785Z", "last_modified_time": "2024-02-06T13:39:10.008148Z", "name": "", "url": "https://www.helmet.fi/download/noname/{122373AE-22CB-49D7-AF01-BC5D9CD18AC4}/104785", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2757/?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:39:29.891202Z", "last_modified_time": "2023-10-09T15:15:46.057879Z", "date_published": "2023-08-07T21:00:00Z", "start_time": "2023-09-26T15:00:00Z", "end_time": "2023-09-26T15: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, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Satutuokio" }, "short_description": { "fi": "Satutuokiot Arabianrannan kirjastossa" }, "description": { "fi": "<p>Tutustutaan yhdessä erilaisiin satuihin ja tarinoihin eri teemoin.</p><p>Jokainen osallistuja saa oman satupassin johon voi kerätä tarroja satutuokion päätteeksi.</p><p>Tervetuloa matkaamaan satujen maailmaan!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264953/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264523", "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: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:10791/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2815, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:32.856371Z", "last_modified_time": "2024-02-06T13:38:06.310178Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1BE225BE-FA3F-4724-B1A4-DA0385D27436}/99362", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2815/?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:39:10.601710Z", "last_modified_time": "2023-10-09T15:15:09.124947Z", "date_published": "2023-08-02T07:07:58.563000Z", "start_time": "2023-09-26T07:00:00Z", "end_time": "2023-09-26T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Lorutuokiot vauvoille ja taaperoille" }, "short_description": { "fi": "Tule nauttimaan hauskoista loruleikeistä!" }, "description": { "fi": "<p>Lorutuokioita järjestetään 5. syyskuuta alkaen joka tiistai klo 10 kokoushuone Kanervassa.</p><p>Tiedossa loruja, runoja, leikkejä ja yhdessä hassuttelua! Loruttelu tukee lapsen kielellistä kehitystä ja vahvistaa lapsen ja aikuisen suhdetta. Lorujen ja leikkien tukena käytetään erilaisia materiaaleja, rytmejä ja liikettä.</p><p>Tuokiossa lorutellaan noin 30 minuuttia ja sen jälkeen tilaan saa jäädä vielä 30 minuutiksi leikkimään, juttelemaan ja muuten vain viettämään aikaa kaikessa rauhassa muiden osallistujien kanssa.</p><p>Suositellaan alle 3-vuotiaille oman aikuisen seurassa. Vanhemmat sisarukset saavat myös osallistua!</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tervetuloa loruttelemaan Itäkeskuksen kirjastoon!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264523/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264945", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8254/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2757, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:13.791785Z", "last_modified_time": "2024-02-06T13:39:10.008148Z", "name": "", "url": "https://www.helmet.fi/download/noname/{122373AE-22CB-49D7-AF01-BC5D9CD18AC4}/104785", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2757/?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:37:02.392384Z", "last_modified_time": "2023-10-09T15:11:35.018691Z", "date_published": "2023-08-07T21:00:00Z", "start_time": "2023-09-19T15:00:00Z", "end_time": "2023-09-19T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Satutuokio" }, "short_description": { "fi": "Satutuokiot Arabianrannan kirjastossa" }, "description": { "fi": "<p>Tutustutaan yhdessä erilaisiin satuihin ja tarinoihin eri teemoin.</p><p>Jokainen osallistuja saa oman satupassin johon voi kerätä tarroja satutuokion päätteeksi.</p><p>Tervetuloa matkaamaan satujen maailmaan!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264945/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264521", "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: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:10791/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2815, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:32.856371Z", "last_modified_time": "2024-02-06T13:38:06.310178Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1BE225BE-FA3F-4724-B1A4-DA0385D27436}/99362", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2815/?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:36:40.095982Z", "last_modified_time": "2023-10-09T15:10:58.125594Z", "date_published": "2023-08-02T07:07:58.563000Z", "start_time": "2023-09-19T07:00:00Z", "end_time": "2023-09-19T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Lorutuokiot vauvoille ja taaperoille" }, "short_description": { "fi": "Tule nauttimaan hauskoista loruleikeistä!" }, "description": { "fi": "<p>Lorutuokioita järjestetään 5. syyskuuta alkaen joka tiistai klo 10 kokoushuone Kanervassa.</p><p>Tiedossa loruja, runoja, leikkejä ja yhdessä hassuttelua! Loruttelu tukee lapsen kielellistä kehitystä ja vahvistaa lapsen ja aikuisen suhdetta. Lorujen ja leikkien tukena käytetään erilaisia materiaaleja, rytmejä ja liikettä.</p><p>Tuokiossa lorutellaan noin 30 minuuttia ja sen jälkeen tilaan saa jäädä vielä 30 minuutiksi leikkimään, juttelemaan ja muuten vain viettämään aikaa kaikessa rauhassa muiden osallistujien kanssa.</p><p>Suositellaan alle 3-vuotiaille oman aikuisen seurassa. Vanhemmat sisarukset saavat myös osallistua!</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tervetuloa loruttelemaan Itäkeskuksen kirjastoon!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264521/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264942", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8254/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2757, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:13.791785Z", "last_modified_time": "2024-02-06T13:39:10.008148Z", "name": "", "url": "https://www.helmet.fi/download/noname/{122373AE-22CB-49D7-AF01-BC5D9CD18AC4}/104785", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2757/?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:34:51.109967Z", "last_modified_time": "2023-10-09T15:07:38.618112Z", "date_published": "2023-08-07T21:00:00Z", "start_time": "2023-09-12T15:00:00Z", "end_time": "2023-09-12T15: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, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Satutuokio" }, "short_description": { "fi": "Satutuokiot Arabianrannan kirjastossa" }, "description": { "fi": "<p>Tutustutaan yhdessä erilaisiin satuihin ja tarinoihin eri teemoin.</p><p>Jokainen osallistuja saa oman satupassin johon voi kerätä tarroja satutuokion päätteeksi.</p><p>Tervetuloa matkaamaan satujen maailmaan!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264942/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264520", "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: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:10791/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2815, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:32.856371Z", "last_modified_time": "2024-02-06T13:38:06.310178Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1BE225BE-FA3F-4724-B1A4-DA0385D27436}/99362", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2815/?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:34:33.634024Z", "last_modified_time": "2023-10-09T15:07:10.326545Z", "date_published": "2023-08-02T07:07:58.563000Z", "start_time": "2023-09-12T07:00:00Z", "end_time": "2023-09-12T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Lorutuokiot vauvoille ja taaperoille" }, "short_description": { "fi": "Tule nauttimaan hauskoista loruleikeistä!" }, "description": { "fi": "<p>Lorutuokioita järjestetään 5. syyskuuta alkaen joka tiistai klo 10 kokoushuone Kanervassa.</p><p>Tiedossa loruja, runoja, leikkejä ja yhdessä hassuttelua! Loruttelu tukee lapsen kielellistä kehitystä ja vahvistaa lapsen ja aikuisen suhdetta. Lorujen ja leikkien tukena käytetään erilaisia materiaaleja, rytmejä ja liikettä.</p><p>Tuokiossa lorutellaan noin 30 minuuttia ja sen jälkeen tilaan saa jäädä vielä 30 minuutiksi leikkimään, juttelemaan ja muuten vain viettämään aikaa kaikessa rauhassa muiden osallistujien kanssa.</p><p>Suositellaan alle 3-vuotiaille oman aikuisen seurassa. Vanhemmat sisarukset saavat myös osallistua!</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tervetuloa loruttelemaan Itäkeskuksen kirjastoon!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264520/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267292", "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:11893/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3786, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T16:21:25.875851Z", "last_modified_time": "2023-08-30T16:21:25.875872Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BC2771C6-F310-4A3A-9788-4D8BF6C317A7}/105406", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3786/?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-30T12:26:51.546075Z", "last_modified_time": "2023-10-09T15:06:18.623527Z", "date_published": "2023-08-30T11:26:00Z", "start_time": "2023-09-08T05:00:00Z", "end_time": "2023-09-08T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Lasten tapahtumatila, 3. krs" }, "name": { "fi": "Tervetuloa kokeilemaan uutta Satuseinää!" }, "short_description": { "fi": "Tervetuloa kokeilemaan Satuseinän uutta Feel&Play -sovellusta ja oppimaan tunnetaidoista!" }, "description": { "fi": "<p>Tervetuloa kokeilemaan Satuseinän uutta Feel & Play -sovellusta Lasten tapahtumatilaan 3. kerrokseen 30.8.-11.9.!</p><p>Feel & Play on musiikillinen sovellus, jonka avulla harjoitellaan tunnetaitoja. Sovelluksen taustalla on ajatus, että jokaisella lapsella on oikeus ilmaista ja harjoitella tunnetaitoja omana itsenään, sellaisena kuin on. Kaikkien tunteiden tunnistaminen ja ilmaiseminen on jokaiselle lapselle sallittua, eikä tunteita luokitella hyviin tai huonoihin, positiivisiin tai negatiivisiin, sallittuihin tai kiellettyihin. Lasta kannustetaan kuuntelemiseen, keskittymiseen ja luovaan ilmaisuun.</p><p>Sovelluksen avulla lapsella on mahdollisuus saada samaistumisen kokemuksia ja välineitä tunneilmaisuun. Luovuutta herätellään tarinankerronnan, klassisen musiikin ja pelillisten osioiden avulla, joiden kautta lapsi pääsee itse kuuntelemaan, maalailemaan musiikin herättämiä tunteita, tai soittamaan fantasiasoitinta. Luova tekeminen on lapsen aisteille avain, jonka kautta opitaan, innostutaan, vahvistutaan ja rentoudutaan. </p><p>Sovelluksen pelilliset osiot ovat helppokäyttöisiä ja lapsiystävällisiä. Sovellus on suunnattu 5-8 vuotiaille, mutta se soveltuu helposti myös nuoremmille tai vanhemmille lapsille. Sovellus toimii parhaiten, kun siihen tutustutaan pienryhmissä yhdessä ohjaavan aikuisen kanssa.</p><p>Pilotointi järjestetään yhteistyössä MusicFairyTalesin kanssa.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267292/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266900", "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: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:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3729, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-28T08:22:41.701588Z", "last_modified_time": "2023-08-28T08:22:41.701610Z", "name": "", "url": "https://www.helmet.fi/download/noname/{05408EB7-3D94-4569-9290-CB09F37427F7}/105248", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3729/?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-08-28T08:22:41.423291Z", "last_modified_time": "2023-10-09T15:06:18.255232Z", "date_published": "2023-08-28T07:18:33.277000Z", "start_time": "2023-09-08T05:00:00Z", "end_time": "2023-09-08T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "3. krs, Kirjataivas" }, "name": { "fi": "Kiilan Feministinen Arkisto: interventio Oodissa" }, "short_description": { "fi": "Kiilan feministinen arkisto/Kiila Feminist Archive on taiteilija Minna Henrikssonin kokoama arkisto taideteoksena." }, "description": { "fi": "<p>Oodin 3. kerroksessa toteutetaan taideinterventio Kiilan Feministinen Arkisto/Kiila Feminist Archive Together Again -festivaalilla 8.9.-17.9.</p><p>Kiilan feministinen arkisto/Kiila Feminist Archive on taiteilija <strong>Minna Henrikssonin </strong>kokoama arkisto taideteoksena. Teos on pitkäkestoinen ja edelleen jatkuva tutkimusprosessi yli kahdeksankymmentä vuotta toimineen taiteilija- ja kirjailijayhdistys Kiilan alkuvuosiin.</p><p>Julkinen interventio toteutetaan Oodi kirjaston ja Rikhardinkadun kirjaston hyllyissä. Kummankin kirjaston kaunokirjallisuuden ja runouden osastoilla on 8.-17. syyskuuta 2023 sarja vihkosia, joissa on suomenkielisiä otteita ja englanninkielisiä käännöksiä neljän kirjailijan valituista novelleista, romaaneista ja runoista: <strong>Tyyne Maija Salmisen</strong>, <strong>Elvi Sinervon</strong>, <strong>Iris Uurron</strong> ja <strong>Katri Valan</strong>. Nämä teokset ovat jääneet pitkälti pois kirjastojen kierrosta, mutta ansaitsisivat paikan sekä suomalaisessa että kansainvälisessä kirjallisuuskaanonissa.</p><p>Minna Henriksson on tehnyt uusia linoleikkauskuvituksia näihin kirjallisuusotteisiin, joita on vihkosissa ja niitä on myös esillä Rikhardinkadun kirjastossa.</p><p>Interventio toteutetaan yhteistyössä lontoolaisen The Showroomin kuraattorin <strong>Lily Hallin</strong> ja Suomen Britannian- ja Irlannin-instituutin taideohjelman johtajan <strong>Karoliina Korpilahden</strong> kanssa. Vihkot on suunnitellut <strong>Kaisa Lassinaro</strong>.</p><p>***</p><p>Intervention at Rikhardinkatu and Oodi public libraries</p><p>The Kiila Feminist Archive at Together Again festival</p><p>Dates: 8.-17.9.2023</p><p>Rikhardinkatu library opening times: Monday to Thursday 8-20, Friday 8-18, Saturday 10-16, Sunday 12-18</p><p>Oodi library opening times: Monday to Friday 8-21, Saturday and Sunday 10-20</p><p>The Kiila Feminist Archive is an archive-as-artwork by artist Minna Henriksson. The work involves a long-term and ongoing process of research into the early years of the Kiila artists’ and writers’ association in Finland, which has been running for over eighty years. </p><p>A public intervention is realised into the shelves of two public libraries in Helsinki: Oodi Library and Rikhardinkatu Library. Between 8-17 September 2023, it will be possible to find a series of booklets that will be inserted into the fiction and poetry sections of each library, holding translations in English and the original Finnish texts of excerpts from selected short stories, novels and poems by four authors: Tyyne Maija Salminen, Elvi Sinervo, Iris Uurto and Katri Vala. These are texts that have gone out of public circulation; and have been largely neglected, both in Finnish and international literary history. </p><p>These excerpts will be accompanied by new linocut illustrations made by Minna Henriksson, which will also be included in the booklets and displayed at the Rikhardinkatu Library.</p><p>The intervention is realised in collaboration with Lily Hall, Curator at The Showroom, London and organised in collaboration with Karoliina Korpilahti, Programme Director, Arts at the Finnish Institute in UK and Ireland. The booklets are designed by Kaisa Lassinaro.</p><p> <em>Image credit:</em> </p><p> <em>Minna Henriksson, Kiila Feminist Archive, installation view, Editorial Tables: Reciprocal Hospitalities, The Showroom, London, 2023. Photo: Dan Weill Photography </em> </p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266900/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261106", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?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: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:p16485/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2582, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:56.013746Z", "last_modified_time": "2024-02-06T13:38:19.975977Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?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-08-15T15:34:04.372091Z", "last_modified_time": "2023-10-09T15:06:17.837756Z", "date_published": "2023-06-09T07:01:00Z", "start_time": "2023-09-08T14:00:00Z", "end_time": "2023-09-08T16: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, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Nuortentila" }, "name": { "fi": "Lasten perjantaileffa" }, "short_description": { "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille." }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><ul> <li>1.9.2023</li> <li>6.10.2023</li> <li>3.11.2023</li> <li>1.12.2023</li> </ul></p><ul> <li></li> </ul>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261106/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "linkedevents:agg-4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59638/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59639/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59640/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59641/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59642/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:33:47.049460Z", "last_modified_time": "2023-10-09T13:33:47.049476Z", "date_published": null, "start_time": "2023-07-13T16:00:00Z", "end_time": "2023-08-10", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Kaupunkitanssit Stoan aukiolla " }, "short_description": { "fi": "Kesällä 2023 opetellaan jälleen paritansseja! Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää." }, "description": { "fi": "<p>Kesällä 2023 opetellaan jälleen paritansseja! Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää.</p><p>Mukaan tanssimaan voi tulla milloin vain, ennakkoilmoittautumista ei tarvita. Opetuksesta vastaavat Tanssiteatteri Tsuumin tanssinopettajat. Sadesäällä tanssitaan Stoan aulassa (ei 22.6.).</p><p>to 8.6. fusku<br>to 15.6. jenkka<br>to 22.6. foksi<br>to 29.6. bugg<br>to 6.7. valssi<br>to 13.7. masurkka<br>to 20.7. tango <br>to 27.7. samba<br>to 3.8. humppa<br>to 10.8. cha cha</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266460", "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: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:11193/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3529, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T17:24:47.861080Z", "last_modified_time": "2023-08-22T17:24:47.861112Z", "name": "", "url": "https://www.helmet.fi/download/noname/{629E8A1E-0917-46DE-96EF-9F8CF404AE34}/105167", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3529/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-08-22T17:24:47.004496Z", "last_modified_time": "2023-10-09T12:24:16.329381Z", "date_published": "2023-08-22T15:30:45.627000Z", "start_time": "2023-09-08T14:00:00Z", "end_time": "2023-09-08T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": { "sv": "3. vån, Saarikoski-mattan" }, "name": { "sv": "Elisabeth Sandelin talar om sin bok Behåll din krona" }, "short_description": { "sv": "Romanen Behåll din krona är berättelsen om Anna Appelgren." }, "description": { "sv": "<p> <strong>Elisabeth Sandelin</strong> besöker biblioteket Ode och talar om sin bok <em>Behåll din krona</em>. </p><p>Romanen <em>Behåll din krona </em>är berättelsen om Anna Appelgren, en av de tretton elever som utbildas av friherrinnan Sophie Mannerheim på den första tvååriga kursen för sjuksköterskor på Kirurgiska sjukhuset i Helsingfors 1912. När Anna gifter sig med läkaren Charles Rasmussen och paret flyttar till Närpes måste hon avstå från sitt yrke och kall. Anna blir tidigt änka och med en okuvlig viljestyrka lyckas hon bli översköterska på sjukhuset Konkordia i Helsingfors.</p><p>Parallellt med Annas liv, en resa från 1800-talets slut till Olympiaåret 1952, finns berättelserna om Annas kurskamrater och deras öden. En roman om sjuksköterskornas arbetsvillkor och ett slutligt erkännande av denna viktiga yrkeskår. Arvet efter Sophie Mannerheim om hur plikt och renlighet är en dygd och hur sjuka, sårade soldater och barn skall skötas lever kvar hos dem som gått i lära hos henne.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266460/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267266", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3778, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T12:24:43.266824Z", "last_modified_time": "2024-02-06T13:38:19.803811Z", "name": "", "url": "https://www.helmet.fi/download/noname/{36B53B87-1AAF-44C8-9D49-5D82E8F05EE9}/92038", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3778/?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-08-30T12:26:48.583854Z", "last_modified_time": "2023-10-09T12:24:15.441878Z", "date_published": "2022-03-04T10:00:00Z", "start_time": "2023-09-08T14:00:00Z", "end_time": "2023-09-08T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki" }, "name": { "fi": "Ukulelejamit" }, "short_description": { "fi": "Ukulelejamit järjestetään perjantaisin Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille. Voit osallistua jameihin kaikilla soittimilla." }, "description": { "fi": "<h3>Perjantaisin Tapiolan kirjaston tapahtumatila Heikissä klo 17.00-18.00</h3><p>Ukulelejamit järjestetään perjantaisin Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille. Voit osallistua jameihin kaikilla soittimilla. Tilasta löytyy piano. Tule mukaan jameihin soittamaan omia lempikappaleita tai vaikka vain nauttimaan yhdessä musisoinnista. </p><p>#ukulele #musiikki #jami #jamit #trumpetti</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267266/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267308", "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:10672/?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: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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3783, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T13:24:26.783096Z", "last_modified_time": "2023-08-30T13:24:26.783120Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E3D2DE50-690E-4090-BFB6-C53C68C256D9}/105396", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3783/?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:p6165/?format=api" } ], "created_time": "2023-08-30T13:26:22.130222Z", "last_modified_time": "2023-10-09T12:24:13.828264Z", "date_published": "2023-08-30T12:43:00Z", "start_time": "2023-09-08T13:00:00Z", "end_time": "2023-09-08T14: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, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Aalto tai Kari" }, "name": { "fi": "Luetaan yhdessä klubi" }, "short_description": { "fi": "Oletko suomen kielen oppija ja haluat harjoitella puhumista? Haluatko harjoitella suomea hauskassa ja rennossa ympäristössä?" }, "description": { "fi": "<h3> <br> <br> Perjantaisin klo 16</h3><p> <strong>Oletko suomen kielen oppija ja haluat harjoitella puhumista?</strong> </p><p> <strong>Haluatko harjoitella suomea hauskassa ja rennossa ympäristössä? </strong> </p><p>Tule mukaan ”Luetaan yhdessä” klubiin.</p><p>Luemme ja keskustelemme selko kirjoista ja selko uutisista</p><p>Perjantaisin klo 16.00 – 17.30</p><p>Huone: Aalto tai Kari</p><p>Iso Omenan kirjasto</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267308/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266803", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8223/?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:10672/?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: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/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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3715, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T12:06:10.766914Z", "last_modified_time": "2023-08-25T12:06:10.766945Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7F28E549-82D6-4635-BB40-43958ECD1E71}/105219", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3715/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-25T12:11:06.583195Z", "last_modified_time": "2023-10-09T12:24:12.223008Z", "date_published": "2022-03-23T13:21:00Z", "start_time": "2023-09-08T13:30:00Z", "end_time": "2023-09-08T14: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, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "lastenosasto", "en": "Children’s Section" }, "name": { "fi": "PICNIC espanjankielisille vanhemmille ja taaperoille", "en": "PICNIC for Spanish speaking families with toddlers" }, "short_description": { "fi": "Tervetuloa!", "en": "Welcome!" }, "description": { "fi": "<p>Tervetuloa viettämään rentoa perjantai-iltapäivää, tapaamaan muita ja pitämään hauskaa turvallisessa tilassa. Ohjelmassa on mm. tarina-, musiikki- ja tanssituokioita. Täällä voit löytää uusia ystäviä ja saada vertaistukea. <br><br>Kohderyhmä: espanjankielisten perheiden vanhemmat ja yli 2-vuotiaat lapset<br>Aika: perjantaisin 25.8.-27.10.2023 klo 16.30-17.30 <br>Paikka: Pasilan kirjaston lastenosasto<br>Järjestäjä: <a href=\"https://ninho.fi/\">Kulttuurikeskus Ninho ry</a></p><a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a><br> <p>Te damos la bienvenida a estos encuentros para familias y bebés hablantes de español. En PICNIC podrás conocer otras familias, hacer nuevas amistades, jugar, cantar, aprender juntos y disfrutar de un encuentro seguro alrededor de la colección de literatura infantil en español de Helmet.</p><p>Les esperamos todos los viernes, a partir del 25 de agosto, de 4.30 a 5.30 pm, en la sala verde de la sección infantil de la Biblioteca de Pasila.</p><p>Sean bienvenidas todas las familias. PICNIC lo hacemos entre todos, así que anímate y ¡trae algo para compartir!</p><p>PICNIC es una coproducción entre la comunidad de familias hispanohablantes y las profesionales de Kulttuurikeskus Ninho ry.</p><p>Las sesiones de PICNIC son gratuitas, y están pensadas para peques caminadores, mayores de 2 años.</p><p>Si necesitas más información, puedes escribirnos a <a href=\"mailto:info@ninho.fi\">info@ninho.fi</a>.</p>", "en": "<p>We welcome you to these meetings for Spanish-speaking families and toddlers. At PICNIC you can meet other families, make new friends, play, sing, learn together, and enjoy a safe gathering around Helmet's collection of children's literature in Spanish.</p><p>We look forward to seeing you every Friday, from 25 August, from 4.30 to 5.30 pm, in the green room of the children's section of the Pasila Library.</p><p>All families are welcome. PICNIC is made by all of us, so come along and bring something to share!</p><p>PICNIC is a co-production between the community of Spanish-speaking families and the professionals of Kulttuurikeskus Ninho ry.</p><p>The PICNIC sessions are free of charge, and are designed for little walkers, 2 years and older.</p><p>If you need more information, you can write to us at info@ninho.fi</p><p>Remember to share with your friends, we are waiting for you!</p><p>Organizer: <a href=\"https://ninho.fi/\">Kulttuurikeskus Ninho ry </a><br><br><a href=\"https://www.helmet.fi/en-US/Libraries_and_services/Pasila_Library\">Pasila Library</a><br><br> Te damos la bienvenida a estos encuentros para familias y bebés hablantes de español. En PICNIC podrás conocer otras familias, hacer nuevas amistades, jugar, cantar, aprender juntos y disfrutar de un encuentro seguro alrededor de la colección de literatura infantil en español de Helmet.</p><p>Les esperamos todos los viernes, a partir del 25 de agosto, de 4.30 a 5.30 pm, en la sala verde de la sección infantil de la Biblioteca de Pasila.</p><p>Sean bienvenidas todas las familias. PICNIC lo hacemos entre todos, así que anímate y ¡trae algo para compartir!</p><p>PICNIC es una coproducción entre la comunidad de familias hispanohablantes y las profesionales de Kulttuurikeskus Ninho ry.</p><p>Las sesiones de PICNIC son gratuitas, y están pensadas para peques caminadores, mayores de 2 años.</p><p>Si necesitas más información, puedes escribirnos a <a href=\"mailto:info@ninho.fi\">info@ninho.fi</a>.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266803/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267699", "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: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:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3867, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-04T17:23:39.381111Z", "last_modified_time": "2023-09-04T17:23:39.381133Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F3DF6FD0-0BF3-42AB-AC1C-709199A59E62}/105561", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3867/?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-09-04T17:23:38.195312Z", "last_modified_time": "2023-10-09T12:24:10.521920Z", "date_published": "2023-09-04T15:57:13.063000Z", "start_time": "2023-09-08T07:00:00Z", "end_time": "2023-09-08T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Maijansali, 1. kerros", "en": "Maijansali, 1st floor" }, "name": { "fi": "Together Again -taidefestivaali", "en": "Together Again -taidefestivaali" }, "short_description": { "fi": "Tervetuloa seuraamaan avointa ja ilmaista festivaalia Oodiin Helsinkiin perjantaina 8.9. Klo 10–17.", "en": "The festival is free and open to all!" }, "description": { "fi": "<p>Tervetuloa seuraamaan festivaalia Oodiin Helsinkiin perjantaina 8.9. Klo 10–17 sekä suorana festivaalin verkkosivuilla osoitteessa <a href=\"https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Ftogetheragain.fi%2F&data=05%7C01%7Coodi.tilat%40hel.fi%7C6f03ab54f3ea4341adc308dbaad2e6c3%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638291595058915111%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=PIieh1bvlUO%2BR6m%2Fegjr81WCqJ85OhG3%2Bz8ZrYPdQ6Y%3D&reserved=0\">togetheragain.fi</a>.</p><p>Festivaali on avoin ja ilmainen kaikille. Puheenvuorot ovat englanninkielisiä ja tekstitetään englanniksi reaaliaikaisesti. Verkkosivuilla on myös luettavissa taiteilijoiden ja puhujien esittelyt, tarkempi festivaaliohjelma sekä tiedot festivaalin saavutettavuudesta. </p><p>Festivaalin juontaa kirjailija ja esiintyjä Jani Toivola ja pääpuhujana kuullaan lontoolaista Turner Prize -palkittua Assemble-kollektiivia. Festivaaliohjelmassa nähdään performansseja, keskusteluita ja teosesityksiä ympäri Helsinkiä. Festivaalin tuottaa Suomen maailmalla toimiva kulttuuri- ja tiedeinstituuttien verkosto.</p><p>Helsingin festivaali huipentaa instituuttien tuottaman kaksivuotisen kansainvälisen Together Again -taideohjelman, jossa on luotu yhteisöllistä taidetta Amsterdamissa, Helsingissä, Lontoossa, Madridissa, New Yorkissa, Oslossa, Pariisissa ja Portossa. Ohjelman myötä taiteilijat Matti Aikio, Minna Henriksson, Uwa Iduozee ja Kairos Collective ovat toteuttaneet neljä uutta tilausteosta ja Aapo Nikkanen & Léa Domingues, Post Theatre -kollektiivi sekä Pehmee-kollektiivi ovat jatkaneet jo aiemmin käynnistyneitä kokonaisuuksia. Kaikille teoksille yhteistä on kansainvälinen työskentely paikallisten yhteisöjen kanssa.</p><p>Festivaalipäivän aikana kolmessa sessiossa kulttuurialan ammattilaiset Yvonne Billimore, Lily Hall, Ali Akbar Mehta, Julian Owusu ja Giovanna Esposito Yussif avaavat yhteisöllistä taiteellista työskentelyä ohjelman taiteilijoiden kanssa. Lisäksi taiteilija Enni-Kukka Tuomala tutkii Itä-Helsingissä empatian yhteisöllistä roolia taiteen avulla. Festivaalin avaa Suomen Kulttuurirahaston toimitusjohtaja Susanna Pettersson.</p><p>Together Again on Suomen Benelux-instituutin, Suomen Britannian- ja Irlannin-instituutin, Suomen Madridin-instituutin, Suomen New Yorkin kulttuuri-instituutin, Suomen Ranskan instituutin ja Suomalais-norjalaisen kulttuuri-instituutti FINNOn yhteistyöprojekti. Festivaalia tukevat Suomen Japanin instituutti, Suomen Saksan-instituutti ja Suomen kulttuuri- ja tiedeinstituutit ry (SKTI).</p><p>Together Again -festivaali toteutuu Suomen Kulttuurirahaston Taide2-apurahalla ja Jenny ja Antti Wihurin rahaston tuella ja yhteistyökumppanit ovat Bienal ‘23 Fotografia do Porto, PhotoEspana, Frame Contemporary Art Finland, The Showroom, Vera List Center for Art and Politics, Rikhardinkadun kirjasto ja Embaixada de Portugal na Finlândia.</p>", "en": "<p> <em>Together Again</em> is an expansive art project fostering gatherings, workshops, intercultural dialogues and socially engaged art, organised by the Finnish Cultural and Academic Institutes across the world. Together Again presents six community-based works to audiences in Amsterdam, Helsinki, London, Madrid, New York, Oslo, Paris, and Porto, as well as online. The project takes place throughout 2023 and culminates in a one-day festival held in Helsinki Central Library Oodi, Finland on the 8th of September 2023. The festival is free and open to all!</p><p> <em>Together Again</em> is made possible thanks to the Art² Grant of the Finnish Cultural Foundation and supported by the Jenny and Antti Wihuri Foundation.</p><p> <a href=\"https://togetheragain.fi/\">togetheragain.fi</a> </p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267699/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266207", "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:10594/?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:11687/?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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3520, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T11:24:15.476482Z", "last_modified_time": "2024-02-06T13:38:38.862220Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F52E09C0-3225-4653-B21C-0EF85EB042B3}/101025", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3520/?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" } ], "created_time": "2023-08-22T11:24:15.122075Z", "last_modified_time": "2023-10-09T12:24:09.838482Z", "date_published": "2023-03-06T14:33:00Z", "start_time": "2023-09-08T12:30:00Z", "end_time": "2023-09-08T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Oppimistila 1, 2.krs" }, "name": { "fi": "Avoin eSports -kerho (6.-9.lk)" }, "short_description": { "fi": "Avoin eSports -kerho (6.-9.lk)" }, "description": { "fi": "<p>Tervetuloa mukaan avoimeen eSports harrastusryhmään hiomaan pelinsisäistä ja -ulkoista tietotaitoa sekä tutustumaan uusiin mukaviin joukkue- ja pelitovereihin. Harrastekertoihin sisältyy harjoittelua niin yksilö- kuin joukkuepelaamisessa mm. Fortnitessa. Aiempaa pelikokemusta ei vaadita. Ryhmästä voi varata itselleen paikan ilmoittautumalla tai otamme pelureita vastaan ovella ilman ennakkoilmoittautumista, mikäli ryhmässä on vapaita paikkoja.</p><p> <b>aika:</b> Perjantaisin klo 15:30-17:00 8.9.2023 alkaen.Toimintaa ei järjestetä koulujen lomaviikoilla.<br><b>paikka:</b> Oodin 2. kerros, Oppimistila 1<br><br> Järjestäjä: XRoc Gaming / Harrastamisen Suomen malli </p><p>Ilmoittautuminen: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.xroc.gg%2Fkoulut%2F&data=05%7C01%7Csanna.m.huttunen%40hel.fi%7Cc3c444592b8e420f7adb08db9d5ab109%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638276785060090778%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=tZ5cyCHnj1bgvHumiwtdyNdxYQw4VYPt%2BCcm%2FCyJlIQ%3D&reserved=0\">https://www.xroc.gg/koulut/</a></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266207/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267996", "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: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:10855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4685, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-08T08:23:13.743368Z", "last_modified_time": "2023-09-08T08:23:13.743398Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CC6BF560-8667-4A40-9BDF-72CC4900A581}/105697", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4685/?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-08T08:23:13.158357Z", "last_modified_time": "2023-10-09T11:18:52.921617Z", "date_published": "2023-09-07T21:00:00Z", "start_time": "2023-09-08T06:00:00Z", "end_time": "2023-09-08T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Digitalkkari Viikissä" }, "short_description": { "fi": "Tarvitsetko apua tulostuksessa tai kopioinnissa? Entäpä kännykän tai kannettavan pulmat? Digitalkkari auttaa! David paikalla 13.10.2023 asti aina torstaisin ja perjantaisin klo 9-14 ja 15-16." }, "description": { "fi": "<p>Digipulmia?</p><p>Viikin digitalkkari David auttaa digiongelmissa olipa sitten kyseessä kännykkä tai kannettava. Myös kirjastossa tapahtuva tulostus, skannaus ja kopiointi onnistuu helposti Davidin avustuksella.</p><p>Digitalkkari Viikin kirjastossa 13.10. 2023 asti <strong>aina torstaisin ja perjantaisin klo 9-14 ja 15-16</strong>. Tervetuloa!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267996/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265737", "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:10672/?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:10791/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3325, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-16T13:24:39.760822Z", "last_modified_time": "2023-08-16T13:24:39.760842Z", "name": "", "url": "https://www.helmet.fi/download/noname/{8BF80B82-1677-4A22-BE6B-5854324F5392}/100426", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3325/?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:p6165/?format=api" } ], "created_time": "2023-08-16T13:26:49.288866Z", "last_modified_time": "2023-10-09T11:18:52.244463Z", "date_published": "2023-02-11T22:00:00Z", "start_time": "2023-09-08T07:00:00Z", "end_time": "2023-09-08T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Itäkeskuksen kirjasto" }, "name": { "fi": "Helsinki-info neuvoo" }, "short_description": { "fi": "Kysy kaupungista! Neuvomme ja opastamme, kun etsit tietoa kaupungin palveluista tai maahanmuuttoon liittyvistä asioista." }, "description": { "fi": "<p> <strong>Helsinki-info neuvoo</strong> </p><p>Itäkeskuksen kirjastossa maanantaisin ja keskiviikkoisin klo 9-16 sekä perjantaisin klo 10-16. </p><p>Apua annetaan palveluihin, digiasioihin ja maahanmuuttoon liittyviin kysymyksiin.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265737/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24062, "next": "