Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?division=malmi&format=api&page=80
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=81", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=79" }, "data": [ { "id": "kulke:59783", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4037, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:48.543619Z", "last_modified_time": "2023-09-07T14:19:48.543642Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730128.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4037/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:47.864209Z", "last_modified_time": "2023-10-17T20:14:23.183254Z", "date_published": null, "start_time": "2023-08-18T12:00:00Z", "end_time": "2023-08-18T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut ovat mukana myös Malmin tapahtumakesässä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A7AA67F770DD9CC967B71B663C312B3/Yhteislaulut" }, "description": { "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut ovat mukana myös Malmin tapahtumakesässä.</p><p><b>Jukka Okkosen</b> ja <b>Pauli Kainulaisen</b> johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br> <br>Yhteislauluja järjestetään Ala-Malmin puistossa kesä- ja elokuussa seuraavasti:<br>pe 9.6. klo 15–16<br>pe 16.6. klo 15–16<br>pe 18.8. klo 15–16<br>pe 25.8. klo 15–16</p><p>Soveltuu kaikenikäisille. Ohjaus suomeksi. <br>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "name": { "fi": "Yhteislaulut – Malmin tapahtumakesä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59783/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:259672", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2964, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:37:43.389210Z", "last_modified_time": "2023-08-15T15:37:43.389230Z", "url": "https://www.helmet.fi/download/noname/{6CE61ADB-CF0D-41FD-96F5-2B29FAEA4331}/103043", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2964/?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:37:43.274423Z", "last_modified_time": "2023-10-17T10:30:49.570961Z", "date_published": "2023-06-11T21:00:00Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsingin työväenopiston ja kirjaston kirjailijailta. Vapaa pääsy. Tervetuloa!" }, "info_url": null, "description": { "fi": "<p>Teoksia: Kadonnut aika (2022), Westend (2019)</p><p>Haastattelu: FM <strong>Katri Sola</strong></p><p> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2508654?lang=fin\"> <em>Kadonnut aika</em> </a> on terävästi nähty koronapandemian jälkeinen ajankuva ja vangitseva romaani hankalista perhesuhteista, julkisuudesta ja nykyteknologian vallasta. Pariskunta tuijottaa ruutuja, eikä kykene enää kohtaamaan toisiaan. Lastenhoitaja huomaa palanneensa ajassa taaksepäin. Laiteriippuvainen lapsi karkailee voidakseen pelata älypuhelimellaan. Oton, Iriksen, Lassen ja Alexandran elämäntarinoissa analysoidaan osuvasti aikamme ilmiöitä. </p><p>Suureen suosioon noussut talouden nousukautta ja sitä seurannutta lamaa kuvaava esikoisromaani <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2423242?lang=fin\"><em>Westend</em></a> kertoo Elinan kasvutarinan lapsuusvuosien Tapiolasta kauppakorkeakoulun opiskelijaksi ja uraa luovaksi aikuiseksi. Perheen isän rakennusyritys hakeutuu 1990-luvun alkuvuosina suurten velkojen takia konkurssiin. Kaikki muuttuu suuren nousukiidon päätteeksi. Laman varjo lankeaa perheen elämään vielä pitkään traagisin seurauksin. </p><p>Helsinkiläinen<b> Suvi Vaarla </b>on opiskellut valtiotieteitä kolmessa eri maassa ja suorittanut Kriittisen korkeakoulun kirjoittajakoulun. Hän on työskennellyt viestinnän ja mainonnan suunnittelijana sekä ministeriön ylitarkastajana. </p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Malmin_kirjasto/Yhteystiedot\">Malmin kirjasto</a> </p>" }, "name": { "fi": "Kirjailijavieraana Suvi Vaarla" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:259672/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60690", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:43.598491Z", "last_modified_time": "2023-09-07T14:19:43.598513Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735432.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:43.389704Z", "last_modified_time": "2023-10-16T20:13:18.685845Z", "date_published": null, "start_time": "2023-08-17T12:30:00Z", "end_time": "2023-08-17T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Työväenopiston tiloissa pääset laulamaan yhteislauluja, kokeilemaan dreijausta sekä tekemään origameja." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37B4A6504A7B420AF7BF5F4F0AEFCEBE/Tyovaenopiston_taiteiden_yo_Malmitalossa" }, "description": { "fi": "<p>Työväenopiston tiloissa pääset laulamaan yhteislauluja, kokeilemaan dreijausta sekä tekemään origameja.</p><p>Työväenopisto tarjoaa Malmitalon taiteiden yössä ohjelmaa seuraavasti:</p><p><b>Klo 15.30-18 Origamipaja, työväenopiston aulatila, 2.krs</b><br>Tule tekemään iloisia origamikoristeita paperista ja kankaasta. Sopii kaikenikäisille, alle kouluikäiset aikuisten seurassa.</p><p><b>Klo 15.30-18 Tutustu dreijaukseen, kuvanveistoluokka, 2.krs</b><br>Tule katsomaan ja kokeilemaan dreijausta kokeneen keramiikanopettajan opastuksella.</p><p><b>klo 17-18 Kesän muistoja - Taiteiden yön yhteislaulut / musiikkiluokka 2.krs </b><br> Malmitalolla lauletaan yhdessä Taiteiden yönä. Tule mukaan laulamaan yksin tai ystäväsi kanssa!</p>" }, "name": { "fi": "Työväenopiston taiteiden yö Malmitalossa – Työväenopisto esittelee toimintaansa Taiteiden yönä Malmitalolla" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60690/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60394", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4028, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:42.924357Z", "last_modified_time": "2023-09-07T14:19:42.924380Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730164.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4028/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:42.163560Z", "last_modified_time": "2023-10-16T20:13:17.494053Z", "date_published": null, "start_time": "2023-08-17T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Malmin tapahtumakesän starttaa elokuussa Taiteiden yö, joka tuo puistoon muun muassa maailmanmusiikkia, värikkäitä työpajoja ja lasten diskon." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5BA6FD04409651FEA93C74A32796D254/Malmitalon_Taiteiden_yo" }, "description": { "fi": "<p>Malmin tapahtumakesän starttaa elokuussa Taiteiden yö, joka tuo puistoon muun muassa maailmanmusiikkia, värikkäitä työpajoja ja lasten diskon.</p><p><b>Klo 15-18 Viirityöpaja</b><br>Tule ompelemaan viirejä kierrätysmateriaaleista Taito Etelä-Suomen ohjaajien avustuksella. Viireillä koristellaan puistoa ja voit ottaa yhden myös itsellesi!</p><p>Soveltuu kaikenikäisille. Ohjaus suomeksi. <br>Vapaa pääsy</p><p><b>Klo 15-16 Eläintyöpaja</b><br>Tule askartelemaan värikkäitä eläimiä ja kukkasia kirjastolaisten kanssa! Materiaalina käytämme piipunrasseja.</p><p>Syntyneistä taideteoksista on mahdollista koostaa oma hetkellinen, isompi taideteos laatikon sisälle. Anna luovuudelle ja leikille tilaa, vain taivas on rajana!</p><p>Eläinten askartelu soveltuu kaikenikäisille, kukkaset vaativat hieman pidempää keskittymistä. Ohjaus suomeksi. Vapaa pääsy.</p><p><b>Klo 16–17 Skidit-disko</b><br>Skidit-disko tarjoaa musiikkimatkan lastensävelistä tämän päivän tinkimättömiin hitteihin. Lämminhenkisessä diskossa yhdistyvät tanssittavat bängerit, hauskat leikit, tanssiopetus ja mielikuvituksellinen meno. Hyvä meininki kerää tanssilattialle niin aikuiset kuin lapsetkin. Let’s BAILA!<br> <br>Skidit-disko käynnisti lastendiskobuumin Suomessa tuodessaan maailmalta suosituksi tulleen konseptin koko perheen päivätansseista ykkösklubeilla. Diskon synnyinpaikka on Kuudes Linja ja Kaiku Helsingin Kalliossa, mutta diskoiltu on myös laivoilla, Musiikkitalolla, museossa, Flow Festivalin perhesunnuntaissa ja Oulussa, johon lennätettiin maailman pienin disko.</p><p>Soveltuu kaikenikäisille.<br>Vapaa pääsy.</p><p><b>Klo 15.30-18 Työväenopiston Taiteiden yö Malmitalossa</b><br>Työväenopiston tiloissa Malmitalolla pääset tutustumaan mm. dreijaukseen sekä laulamaan yhteislauluja. Tarkemman ohjelman löydät täältä: https://malmitalo.fi/fi/tapahtumat/event/37B4A6504A7B420AF7BF5F4F0AEFCEBE/Ty_v_enopiston_taiteiden_y__Malmitalossa</p><p><b>klo 19 Jaakko Laitinen ja väärä raha</b><br>Jaakko Laitinen & Väärä Raha on vuodesta 2009 musiikin ystäviä ja elämän rakastajia villinnyt Lapland-Balkan-orkesteri. Sen musiikissa lyövät kättä monenlaiset elementit pääraaka-aineina Balkanin säpäkät rytmit ja vanha suomalainen iskelmä. Musiikilliseen maustehyllyyn on vuosien varrella sattunut vaikutteita niin Gruusiasta, Turkista, Lähi-Idästä kuin Kreikastakin.</p><p>Laitisen sanoitukset kunnioittavat suomalaisen iskelmän parhaimpia perinteitä venyttäen ilmaisua uusille vesille - aiheiden skaala paukkuu perinteisistä lemmenlauluista tietoisuuden ja todellisuuden olemuksen kiperiin pohdintoihin ja pimeän pullon etsintään Peräpohjolan yössä.</p><p>Viisi fanien rakastamaa ja kriitikoiden ylistämää pitkäsoittoa ja yhden live-levyn julkaissut orkesteri tunnetaan kuitenkin ennen kaikkea hurmoksellisena keikkajyränä, ja mainetta on ylläpidetty kiihkeään keikkatahtiin Eirasta Inariin ja ympäri Eurooppaa yli 20 eri maassa niin suurilla festivaaliareenoilla kuin kylähäissä ja savuisissa klubeissa.<br> <br>Jaakko Laitinen · laulu<br>Ilkka Arola · trumpetti, buzuki<br>Marko Roininen · haitari<br>Juho Kanervo · basso<br>Janne Hast · rummut</p>" }, "name": { "fi": "Malmitalon Taiteiden yö" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60394/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60337", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4027, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:41.770973Z", "last_modified_time": "2023-09-07T14:19:41.770994Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734861.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4027/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:41.618263Z", "last_modified_time": "2023-10-16T20:13:17.157356Z", "date_published": null, "start_time": "2023-08-17", "end_time": "2023-08-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille.", "sv": "Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar.", "en": "Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakesa_2023", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakesa_2023", "en": "http://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakesa_2023" }, "description": { "fi": "<p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille.</p><p>Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Malmin tapahtumakesän ohjelma:</b></p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/5BA6FD04409651FEA93C74A32796D254/Malmitalon_Taiteiden_y_\">Taiteiden yö</u></a><br>to 17.8. klo 15–19</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/3A7AA67F770DD9CC967B71B663C312B3/Yhteislaulut\">Yhteislaulut</u></a><br>pe 18.8. klo 15–16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/5CBB04D99F0B4D59D1C50A9F738BFF18/Kaupunkitanssit\">Kaupunkitanssit (ohjaus suomeksi)</u></a><br>pe 18.8. klo 17.30–18.15 tango</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/CC0F161D2E3264D9B32974C6810B5597/Muska___Hot_dogs_\">Muska ja Hot dogs </u></a><br>pe 18.8. klo 19</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/9C6CBA40DE80EEEBB5E40D2AEED3E34B/Hupsansaa_ry__Puutarhajuhlat-ty_paja_\">Hupsansaa ry: Puutarhajuhlat-työpaja </u></a><br>la 19.8. klo 13–16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/46AB99E332C6D65E88591B3142429025/Siivet_ry__Oma_laulusi_-konsertti_ja_ty_paja_\">Siivet ry: Oma laulusi -konsertti ja työpaja</u></a><br>la 19.8. klo 13</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/94E0CE7EBF318CB943F235C2BE7A2C94/Naattiorkesteri\">Naattiorkesteri</u></a><br>la 19.8.2023 klo 15–16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/B703E470D6C8608FBC5A04154E895CB1/Lempikuoro\">Lempikuoro</u></a><br>ke 23.8.2023 klo 16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/43C633E9624A6E9777AB9693C34ABF94/Kaupunkitanssit\">Kaupunkitanssit (ohjaus suomeksi)</u></a><br>ke 23.8. klo 17.30–18.15 fusku</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/83CB058F4590B5C58FC8E654778604DF/Lyyti\">Lyyti</u></a><br>ke 23.8.2023 klo 19</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/447C4CB347599A31AF293B96B5361A91/Luontokylvyt_vauvoille_ja_taaperoille\">Luontokylvyt vauvoille ja taaperoille</u></a><br>pe 25.8. klo 10.30–13</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/DFEFE8DCB1DCA25785CE9D95E6EF34AD/Yhteislaulut\">Yhteislaulut</u></a><br>pe 25.8.2023 klo 15–16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/007EAE9BC2EC3DBC9B6ECC37ED48A25A/Kaupunkitanssit\">Kaupunkitanssit (ohjaus suomeksi)</u></a><br>pe 25.8. klo 17.30–18.15 cha cha</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/1EE8D308092BAADF0316C3ABA4279A31/Scandinavian_Music_Group_Trio\">Scandinavian Music Group Trio</u></a><br>pe 25.8.2023 klo 19</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/76AAD5A65F688F5ED5817C079AF73BDF/Suosikki\">Suosikki</u></a><br>la 26.8.2023 klo 18</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/1C404A044C27F2BE8FE3966299015CB9/Kissa\">Kissa</u></a><br>la 26.8.2023 klo 20</p>", "sv": "<p>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar.</p><p>Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Program</b></p><p>Konstens Natt</u></a><br>tors 17.8 kl. 15–19</p><p>Yhteislaulut</u></a><br>fre 18.8 kl. 15–16</p><p>Kaupunkitanssit (undervisning på finska)</u></a><br>fre 18.8 kl. 17.30–18.15 tango</p><p>Muska ja Hot dogs </u></a><br>fre 18.8 kl. 19</p><p>Hupsansaa ry: Puutarhajuhlat-työpaja </u></a><br>lö 19.8 kl. 13–16</p><p>Siivet ry: Konsert och verkstad Oma laulusi<br>lö 19.8 kl. 13</p><p>Naattiorkesteri</u></a><br>lö 19.8 kl. 15–16</p><p>Kaupunkitanssit (undervisning på finska)</u></a><br>ons 23.8 kl. 17.30–18.15 fusku</p><p>Lempikuoro<br>ons 23.8 kl. 16</p><p>Lyyti</u></a><br>ons 23.8 kl. 19</p><p>Luontokylvyt vauvoille ja taaperoille<br>fre 25.8 kl. 10.30–13</p><p>Yhteislaulut</u></a><br>fre 25.8 kl. 15–16</p><p>Kaupunkitanssit (undervisning på finska)</u></a><br>fre 25.8 kl. 17.30–18.15 cha cha</p><p>Scandinavian Music Group Trio</u></a><br>fre 25.8 kl. 19</p><p>Suosikki</u></a><br>lö 26.8 kl. 18</p><p>Kissa</u></a><br>lö 26.8 kl. 20</p>", "en": "<p>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events!</p><p>The programme includes a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>Programme:</b></p><p>Night of the Arts</u></a><br>Thu 17 Aug at 3–7 p.m.</p><p>Yhteislaulut (Sing along in Finnish)</u></a><br>Fri 18 Aug at 3–4 p.m.</p><p>Kaupunkitanssit (teaching in Finnish)</u></a><br>Fri 18 Aug at 5.30–6.15 p.m. (tango)</p><p>Muska ja Hot dogs </u></a><br>Fri 18 Aug at 7 p.m.</p><p>Hupsansaa ry: Puutarhajuhlat-työpaja </u></a><br>Sat 19 Aug at 1–4 p.m.</p><p>Siivet ry: Oma laulusi – Concert and workshop <br>Sat 19 Aug at 1 pm</p><p>Naattiorkesteri</u></a><br>Sat 19 Aug at 3–4 p.m.</p><p>Lempikuoro <br>Wed 23 Aug at 4 p.m</p><p>Kaupunkitanssit (teaching in Finnish)</u></a><br>Wed 23 Aug at 5.30–6.15 p.m. (fusku)</p><p>Lyyti</u></a><br>Wed 23 Aug at 7 p.m.</p><p>Luontokylvyt vauvoille ja taaperoille<br>Fri 25 Aug from 10.30 am to 1 p.m.</p><p>Yhteislaulut (Sing along in Finnish)</u></a><br>Fri 25 Aug at 3–4 p.m.</p><p>Kaupunkitanssit (teaching in Finnish)</u></a><br>Fri 25 Aug at 5.30–6.15 p.m. (cha cha)</p><p>Scandinavian Music Group Trio</u></a><br>Fri 25 Aug at 7 p.m.</p><p>Suosikki</u></a><br>Sat 26 Aug at 6 p.m.</p><p>Kissa</u></a><br>Sat 26 Aug at 8 p.m.</p>" }, "name": { "fi": "Malmin tapahtumakesä 2023", "sv": "Malmin tapahtumakesä 2023", "en": "Malmin tapahtumakesä 2023" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60337/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267205", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3782, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T13:24:19.993121Z", "last_modified_time": "2023-08-30T13:24:19.993144Z", "url": "https://www.helmet.fi/download/noname/{B4ABBCDD-AF22-42C1-AA22-EE4739CA1BA3}/105395", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3782/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-08-29T18:30:31.205509Z", "last_modified_time": "2023-10-16T06:40:49.481459Z", "date_published": "2023-08-29T15:55:00Z", "start_time": "2023-09-15T07:00:00Z", "end_time": "2023-09-15T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Laulamme yhdessä sekä suomeksi että ruotsiksi joka toinen perjantai klo 10-11, 1.9. alkaen, läpi pimenevän syksyn ja alkutalven. Tervetuloa mukaan! Välkommen med!" }, "info_url": null, "description": { "fi": "<p>Tule mukaan laulamaan lempilaulujasi! Laulamme yhdessä sekä suomeksi että ruotsiksi joka toinen perjantai klo 10-11, 1.9. alkaen.</p><p>Kokoonnumme laulamaan pe 1.9., 15.9., 29.9., 13.10., 27.10., 10.11., 24.11. sekä 8.12.</p><p>Etukäteisilmoittautumista ei tarvita. Tapahtuma on maksuton.</p><p>Lämpimästi tervetuloa mukaan! Välkommen med!</p><p>Lisätietoja: opera.tellus@gmail.com</p><p>Yhteistyössä: Eläkeläiset ry:n Helsingin aluejärjestö, Keski-Helsingin musiikkiopisto, Musik- och kulturskolan Sandels, Opera Tellus, Svenska Pensionärsförbundet</p>" }, "name": { "fi": "Perjantailauluja!" }, "provider_contact_info": null, "location_extra_info": { "fi": "Ala-Malmin tori 1, Helsinki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267205/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266435", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?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:11194/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3526, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T14:25:57.964776Z", "last_modified_time": "2023-08-22T14:25:57.964808Z", "url": "https://www.helmet.fi/download/noname/{F5470EFF-8E13-404E-9C7F-DECA4FF70356}/105162", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3526/?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-22T14:25:56.596987Z", "last_modified_time": "2023-10-15T13:41:54.215069Z", "date_published": "2022-11-22T06:57:00Z", "start_time": "2023-09-14T14:30:00Z", "end_time": "2023-09-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsingin työväenopiston työpajassa saat tukea ja ideoita kirjoitusharrastukseesi, opit muokkaamaan havaintoja ja tuntemuksia tekstiksi sekä tutustut henkilökuvauksen ja tarinankerronnan perusteisiin." }, "info_url": null, "description": { "fi": "<p> <strong>Malmin kirjasto klo 17.30-19.00 (monitoimitila)</strong> </p><p>Avoimet kirjoittajatreffit on kaikille avoin kirjoittamisen työpaja, jossa kirjoitetaan lyhyitä kirjoituksia opettajan tehtävien mukaan.</p><p>Kirjoitetaan, luetaan ääneen tekstejä toisille ja jaetaan yhdessä kannustavaa palautetta. Työpajassa saat tukea ja ideoita kirjoitusharrastukseesi, opit muokkaamaan havaintoja ja tuntemuksia tekstiksi: minuuttinovelleiksi, runoiksi, kertomuksiksi...</p><p>Voit tuoda mukanasi yhden lyhyen tekstin, jonka haluat lukea toisille ääneen, mutta työpajan pääpaino on kuitenkin yhteisissä kirjoitusharjoituksissa.</p><p>Voit osallistua niin moneen Avointen kirjoittajatreffien työpajaan kuin sinulle sopii.</p><p>Tapaamiset: 14.9., 28.9., 12.10. (kieliluokka 1. krs), 2.11., 16.11. ja 30.11. </p><p> <strong>Huom! 12.10. opetuspaikkana työväenopiston kieliluokka</strong> </p><p>Opetuskieli: suomi</p><p>Opettaja: <strong>Sari Pauloma</strong></p><p>Vapaa pääsy. Tervetuloa kokeilemaan ja jatkamaan kirjoittamista.Ota kirjoitusvälineet ja tule mukaan kirjoittamaan! Ei etukäteisilmoittautumista eikä kurssimaksua. Max. osallistujamäärä: 16</p><p>Helsingin työväenopiston <a href=\"https://ilmonet.fi/course/H235292\">https://ilmonet.fi/course/H235292</a></p><p>Kuva: Pixabay</p>" }, "name": { "fi": "Avoimet kirjoittajatreffit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264684", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2941, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:35:59.061398Z", "last_modified_time": "2023-08-15T15:35:59.061421Z", "url": "https://www.helmet.fi/download/noname/{AA76A76A-9D9D-4D0D-9FE1-E7D0D209CFBF}/101824", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2941/?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:35:58.937054Z", "last_modified_time": "2023-10-15T13:41:51.274356Z", "date_published": "2023-08-02T13:12:00Z", "start_time": "2023-09-14T15:00:00Z", "end_time": "2023-09-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule lukemaan, Fanta kuuntelee!" }, "info_url": null, "description": { "fi": "<p>Lukukoira Fanta ottaa vastaan lukijoita 14.9., 12.10., 16.11. ja 14.12. klo 18–19. Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää. Lukukoiratoiminta on ainoastaan lukemista opetteleville ja lukemisen tueksi. </p><p>Muistathan varata 15 minuutin lukuajan kirjaston henkilökunnalta etukäteen. Varaukset kirjaston asiakaspalvelusta tai numerosta: (09) 3108 5073.</p>" }, "name": { "fi": "Lukukoira Fanta" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264684/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265430", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2779, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:47.118243Z", "last_modified_time": "2024-02-06T13:38:35.671638Z", "url": "https://www.helmet.fi/download/noname/{7DE0FD9B-E3A3-42C8-9794-22B07F501D2A}/88205", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2779/?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:35:46.307845Z", "last_modified_time": "2023-10-15T09:46:34.860085Z", "date_published": "2023-08-14T21:00:00Z", "start_time": "2023-09-14T12:00:00Z", "end_time": "2023-09-14T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Malmin kirjaston kielikahvila" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Malmin kirjaston kielikahvilaan!</p><p>Kielikahvilassa keskustelemme suomeksi kiinnostavista aiheista. Osaathan jo jonkin verran suomea?</p><p>Kokoonnumme <strong>torstaisin klo 15-16</strong>. Ensimmäinen tapaaminen on 31.8.</p>" }, "name": { "fi": "Kielikahvila" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265430/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261576", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2618, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:27:59.658852Z", "last_modified_time": "2024-02-06T13:38:10.910269Z", "url": "https://www.helmet.fi/download/noname/{D655650A-BD46-4087-8999-57508B6C8EA2}/99122", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2618/?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-15T15:35:09.579454Z", "last_modified_time": "2023-10-14T09:59:53.972598Z", "date_published": "2023-06-16T08:00:00Z", "start_time": "2023-09-13T10:00:00Z", "end_time": "2023-09-13T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule keskiviikkoisin koulun jälkeen kirjastolle pelaamaan ja askartelemaan!" }, "info_url": null, "description": { "fi": "Tule keskiviikkoisin kirjastolle pelaamaan ja askartelemaan! Kerran viikossa kirjastolla järjestetään iltapäiväohjelmaa koululaisille: pelattavana on lautapelejä ja Nintendo Switch ja lisäksi on vaihtelevasti askartelua tai muuta puuhaa." }, "name": { "fi": "Koululaisten keskiviikot" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261576/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265089", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:10655/?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:10848/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:23/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2917, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:58.762397Z", "last_modified_time": "2023-08-15T15:34:58.762419Z", "url": "https://www.helmet.fi/download/noname/{03BE375A-A949-463E-8AAA-F7766801887B}/104821", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2917/?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:34:58.201026Z", "last_modified_time": "2023-10-13T14:53:26.278029Z", "date_published": "2023-08-09T21:00:00Z", "start_time": "2023-09-12T15:30:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Olli Aarnin improvisoidusta, akustisesta kantelemusiikista koostuva ”Tuokioita” –levy ilmestyi elokuun alussa. Aarni esittää levyn teoksia Tapanilan kirjastossa." }, "info_url": null, "description": { "fi": "<p> <strong>Olli Aarnin </strong>improvisoidusta kantelemusiikista koostuva ”Tuokioita” –levy ilmestyi elokuun alussa. Aarni saapuu esittämään levyn kappaleita Tapanilan kirjastoon.</p><p>Olli Aarni on äänitaiteilija, jonka työskentely koskettaa musiikkia, kirjallisuutta ja kieltä. Hänen tuotantoaan on julkaistu äänitteinä neljässä maanosassa, ja hän on tehnyt lisäksi radioteoksia, installaatioita, internet-teoksia ja skeittausvideoita.</p><p>Olli Aarnin Tuokioita -levyyn voit tutustua esimerkiksi <a href=\"https://olliaarni.bandcamp.com/album/tuokioita\">täältä (bandcamp) </a>ja <a href=\"https://www.youtube.com/watch?v=DRsZgUGMtrw\">täältä (YouTube)</a>.</p><p>Kuva: Mia Tarkela</p>" }, "name": { "fi": "LIVE: Olli Aarni" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapanilan kirjasto" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265089/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262297", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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: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:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?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" }, { "@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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2906, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:27.269403Z", "last_modified_time": "2023-08-15T15:34:27.269426Z", "url": "https://www.helmet.fi/download/noname/{B9AAB1A8-616E-4EB9-8E12-2D2D5CC8483F}/99065", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2906/?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:26.493195Z", "last_modified_time": "2023-10-12T14:09:38.177914Z", "date_published": "2022-12-29T13:00:00Z", "start_time": "2023-09-11T14:00:00Z", "end_time": "2023-09-11T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ratkotaan pulmapelejä yksin tai porukalla! Haasta vaarisi Tetriksessä tai aktivoi aivojasi kiperien lautapelien parissa." }, "info_url": null, "description": { "fi": "<p>Tervetuloa Tapanilan kirjastoon ratkomaan pulmapelejä yksin tai porukalla! Haasta vaarisi Tetriksessä tai aktivoi aivojasi kiperien lautapelien parissa. Peli-illoissa ei ole ala- eikä yläikärajaa.Pelattavana on Tetris Effect (Nintendo Switch) valkokankaalla ja lautapeleinä esimerkiksi Katamino, RushHour ja IQ Puzzler. </p><p>Pulmapeli-iltoja järjestetään klo 17-19 kerran kuussa maanantaisin: 11.9., 16.10., 13.11. ja 18.12.</p><p>Kuva: Unsplash</p>" }, "name": { "fi": "Pulmapeli-ilta" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262297/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:259599", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:10848/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2899, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:10.560602Z", "last_modified_time": "2023-08-15T15:34:10.560625Z", "url": "https://www.helmet.fi/download/noname/{47E85EF6-4B6E-431A-A4AC-43962812BF67}/102720", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2899/?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:34:10.441762Z", "last_modified_time": "2023-10-10T09:14:45.914821Z", "date_published": "2023-05-22T13:20:00Z", "start_time": "2023-09-09T10:00:00Z", "end_time": "2023-09-09T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Keskustelua dokumentaarisista valokuvista: Normaalitila -valokuvakirja. Miten koronapandemia vaikutti yhteiskuntaan ja sen toimintoihin? Tilaisuudessa keskustelemassa Normaalitila –valokuvakirjaan kuvanneet Heli Blåfield ja Milka Alanen." }, "info_url": null, "description": { "fi": "<p>Keväällä 2020 käynnistyi valokuvaaja <strong>Hannamari Shakyan</strong> johdolla dokumentaarinen valokuvahanke <em>Poikkeustila 2020</em>. Hankkeessa 160 valokuvaajaa käänsi kameransa yksityistä kohti koronapandemian alussa.</p><p>Pian Poikkeustila 2020 -teoksen julkistamisen jälkeen ryhdyttiin työstämään pienemmällä ydinryhmällä jatko-osaa <em>Normaalitila</em>. Siinä kuvaajat tarkastelevat pidemmällä aikavälillä koronapandemian vaikutusta yhteiskuntaan ja sen toimintoihin.</p><p>Tapanilan kirjastoon saapuvat vierailemaan projektiin osallistuneet valokuvaajat <strong>Heli Blåfield </strong>sekä <strong>Milka Alanen</strong>. Heli Blåfield jakaa tuoreessa kirjassa yksityisen kokemuksensa hedelmöityshoidoista, kun lapsettomuushoidot jatkuivat koronapandemian aiheuttaman, parin kuukauden mittaisen tauon jälkeen. Milka Alanen kuvasi puolestaan nuoria ystävyksiä, joiden elämä jäi koronan takia tauolle. Kaikki oli kiellettyä, eikä mihinkään päässyt.</p><p>Tilaisuudessa kuvaajat keskustelevat projektin taustoista sekä pohtivat omien projektiensa kautta miten dokumentaarisia valokuvaprojekteja toteutetaan. Haastattelijana Juho Liukkonen.</p><p>Tilaisuus järjestetään Tapanilan kirjastossa lauantaina 9.9. klo 13 alkaen.</p><p>Kuva: <strong>Anna Autio </strong></p><p>Poikkeustila-projektin valokuviin voit tutustua osoitteessa: <a href=\"https://www.poikkeustila2020.fi/\">https://www.poikkeustila2020.fi/</a></p>" }, "name": { "fi": "Keskustelutilaisuus: valokuvia pandemia-ajalta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapanilan kirjasto" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:259599/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267367", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3808, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T09:32:31.952252Z", "last_modified_time": "2023-08-31T09:32:31.952271Z", "url": "https://www.helmet.fi/download/noname/{351AA096-5F5D-409F-AFAF-A79DA74A86AC}/105410", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3808/?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-31T09:32:31.828320Z", "last_modified_time": "2023-10-10T06:17:17.723702Z", "date_published": "2023-08-31T07:00:00Z", "start_time": "2023-10-09T15:30:00Z", "end_time": "2023-10-09T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suvi Ahola kertoo tuoreesta kirjastaan \"Mitä Helvi Hämäläinen todella sanoi?\" Tapanilan kirjaston lokakuun kirjailijaillassa." }, "info_url": null, "description": { "fi": "Tervetuloa lokakuun kirjailijailtaan Tapanilan kirjastoon! Kirjailija, toimittaja Suvi Ahola kertoo tuoreesta teoksestaan \"Mitä Helvi Hämäläinen todella sanoi?\". Hämäläisen laajasta kirjallisesta tuotannosta, kirjeenvaihdosta ja jäämistön aarteista koostuva antologia tuo uutta särmää kirjailijan muotokuvaan. <a href=\"https://www.wsoy.fi/kirja/suvi-ahola/mita-helvi-hamalainen-todella-sanoi/9789510487235\">Lue lisää kustantajan sivuilta</a> ja tule paikan päälle kuuntelemaan!<br><br><br> Kirjailijan kuva: WSOY / Veikko Somerpuro" }, "name": { "fi": "Kirjailijailta: Mitä Helvi Hämäläinen todella sanoi?" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267367/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267002", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3742, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-28T17:24:56.418904Z", "last_modified_time": "2023-08-28T17:24:56.418926Z", "url": "https://www.helmet.fi/download/noname/{E3305FE6-F313-4877-836D-E8B167B82090}/105284", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3742/?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-28T17:24:56.274177Z", "last_modified_time": "2023-10-09T06:29:20.426736Z", "date_published": "2023-08-28T15:59:00Z", "start_time": "2023-09-08T07:00:00Z", "end_time": "2023-09-08T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa vauvojen omaan tuokioon Malmin kirjastoon!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa vauvojen omaan tuokioon loruleikkimään, maistelemaan kirjoja ja viettämään leppoisasti aikaa yhdessä! Tuokioissa on vaihtuvia teemoja, mukaan voi tulla vaikka joka kerta tai silloin, kun vauvan rytmiin sopii. Tuokiot sopivat noin 4-14 kuukauden ikäisille oman aikuisen seurassa. Lisätietoa Suvilta <a href=\"mailto:suvi.vehmas@hel.fi\">suvi.vehmas@hel.fi</a>. </p><p>Koko syksyn teemat: </p><p>8.9. Loruleikkejä </p><p>22.9. Mustikassa! -sosemaalausta </p><p>6.10. Vauvojen luontokylpy (sään salliessa ulkona) </p><p>20.10. Loruja ja kirjavinkkejä pienille </p><p>3.11. Vauvojen luontokylpy (sään salliessa ulkona) </p><p>17.11. Värileikkejä ja musiikkia </p><p>1.12. Punastuu! -sosemaalausta </p><p>15.12. Pienet tontut liikkuu! Jouluiset lorut ja kahvittelua </p>" }, "name": { "fi": "Vauvojen loruaamut" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262298", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3000, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:43:46.257949Z", "last_modified_time": "2023-08-15T15:43:46.257971Z", "url": "https://www.helmet.fi/download/noname/{CE093797-9273-4846-B387-B929BCF9BFAC}/104297", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3000/?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:43:45.892669Z", "last_modified_time": "2023-10-08T12:32:43.914894Z", "date_published": "2023-06-27T13:00:00Z", "start_time": "2023-10-07T09:00:00Z", "end_time": "2023-10-07T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa tutustumaan yhdessä 3D-tulostamisen mahdollisuuksiin nukkekotiharrastuksessa." }, "info_url": null, "description": { "fi": "Kaipaako nukkekotisi kirjahyllyä tai Barbie kainalosauvoja? Tervetuloa tutustumaan yhdessä 3D-tulostamisen mahdollisuuksiin nukkekotiharrastuksessa. Kahden tunnin opastuksessa käydään läpi 3D-tulostamisen alkeet, mallien etsiminen, mittakaavat eri kokoisiin projekteihin ja tulostettujen esineiden jatkotyöstäminen. Alle 13-vuotiailla osallistujilla on hyvä olla aikuinen mukana.<br><br> Lisätiedot: anni.forselius@hel.fi" }, "name": { "fi": "Nukkekotikurssi 3D-tulostimella" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262298/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265429", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2779, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:47.118243Z", "last_modified_time": "2024-02-06T13:38:35.671638Z", "url": "https://www.helmet.fi/download/noname/{7DE0FD9B-E3A3-42C8-9794-22B07F501D2A}/88205", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2779/?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:33:43.394060Z", "last_modified_time": "2023-10-08T10:06:52.219906Z", "date_published": "2023-08-14T21:00:00Z", "start_time": "2023-09-07T12:00:00Z", "end_time": "2023-09-07T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Malmin kirjaston kielikahvila" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Malmin kirjaston kielikahvilaan!</p><p>Kielikahvilassa keskustelemme suomeksi kiinnostavista aiheista. Osaathan jo jonkin verran suomea?</p><p>Kokoonnumme <strong>torstaisin klo 15-16</strong>. Ensimmäinen tapaaminen on 31.8.</p>" }, "name": { "fi": "Kielikahvila" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265429/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264227", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?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:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2849, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:10.064961Z", "last_modified_time": "2024-02-06T13:38:30.366207Z", "url": "https://www.helmet.fi/download/noname/{46CA06C7-85A2-4F4E-9219-6C30D1D1CC84}/104597", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2849/?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-15T15:33:09.797569Z", "last_modified_time": "2023-10-07T09:57:31.944958Z", "date_published": "2023-07-24T13:10:50.867000Z", "start_time": "2023-09-06T11:00:00Z", "end_time": "2023-09-06T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Keskiviikkokerho Malmin kirjaston monitoimitilassa joka toinen keskiviikko klo 14-15 Keskiviikkokerhossa askarrellaan, taiteillaan, väkerretään, leikitään ja pidetään hauskaa yhdessä." }, "info_url": null, "description": { "fi": "<p>Malmin kirjaston monitoimitilassa joka toinen keskiviikko klo 14-15</p><p>Keskiviikkokerhossa askarrellaan, taiteillaan, väkerretään, leikitään ja pidetään hauskaa yhdessä.</p><p>6.9., 20.9., 4.10., 18.10., 1.11., 15.11., 29.11. ja 13.12.<br><br> Tervetuloa mukaan!</p>" }, "name": { "fi": "Koululaisten keskiviikot" }, "provider_contact_info": null, "location_extra_info": { "fi": "Monitoimitila" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264227/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261561", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2618, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:27:59.658852Z", "last_modified_time": "2024-02-06T13:38:10.910269Z", "url": "https://www.helmet.fi/download/noname/{D655650A-BD46-4087-8999-57508B6C8EA2}/99122", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2618/?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-15T15:33:08.114067Z", "last_modified_time": "2023-10-07T09:57:29.961337Z", "date_published": "2023-06-16T08:00:00Z", "start_time": "2023-09-06T10:00:00Z", "end_time": "2023-09-06T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule keskiviikkoisin koulun jälkeen kirjastolle pelaamaan ja askartelemaan!" }, "info_url": null, "description": { "fi": "Tule keskiviikkoisin kirjastolle pelaamaan ja askartelemaan! Kerran viikossa kirjastolla järjestetään iltapäiväohjelmaa koululaisille: pelattavana on lautapelejä ja Nintendo Switch ja lisäksi on vaihtelevasti askartelua tai muuta puuhaa." }, "name": { "fi": "Koululaisten keskiviikot" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261561/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267369", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:10848/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3805, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T09:25:22.835273Z", "last_modified_time": "2023-08-31T09:25:22.835294Z", "url": "https://www.helmet.fi/download/noname/{B477B9D6-A363-4CD4-BEEF-7D6F288F2353}/105415", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3805/?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-31T09:25:22.679163Z", "last_modified_time": "2023-10-07T05:32:18.414888Z", "date_published": "2023-08-31T06:00:00Z", "start_time": "2023-09-13T14:00:00Z", "end_time": "2023-09-13T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsingin kaupunki laatii Tapaninkylän kaupunginosassa sijaitsevan Sammalpolun välillä Jäkälätie - Helluntairaitti katusuunnitelmaa. Katusuunnitelmien luonnokset esitellään asukkaille keskiviikkona 13.9.2023 klo 17–19 Tapanilan kirjastossa. Luonnoksia esittelee Helsingin kaupunkiympäristön projektipäällikkö Heikki Takainen." }, "info_url": null, "description": { "fi": "<p>Helsingin kaupunki laatii katusuunnitelmaa Tapaninkylän kaupunginosassa sijaitsevan Sammalpolun osuudelle Jäkälätie - Helluntairaitti.</p><p>Katusuunnitelmien luonnokset esitellään asukkaille keskiviikkona 13.9.2023 klo 17–19 Tapanilan kirjastossa. Tilaisuudessa on paikalla Helsingin kaupunkiympäristön projektipäällikkö <strong>Heikki Takainen</strong>.</p><p>Katusuunnitelmaluonnokseen voit tutustua myös 13.9.–26.9.2023 välisenä aikana Helsingin kaupungin verkkosivulla osoitteessa <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpaatokset.hel.fi%2Ffi%2Fkuulutukset-ja-ilmoitukset%2Fsammalpolku-valilla-jakalatie-helluntairaitti-katusuunnitelmaluonnos&data=05%7C01%7Cjuho.liukkonen%40hel.fi%7C011d0c01b6b54b3d102208dbb4736d2e%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638302180061203900%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=LgeYgiHt6QOTCMGuElUss%2BRc5pitzt1kKCdShA4SFoY%3D&reserved=0\" title=\"Alkuperäinen URL-osoite: https://paatokset.hel.fi/fi/kuulutukset-ja-ilmoitukset/sammalpolku-valilla-jakalatie-helluntairaitti-katusuunnitelmaluonnos. Napsauta tai napauta, jos luotat tähän linkkiin.\">https://paatokset.hel.fi/fi/kuulutukset-ja-ilmoitukset/sammalpolku-valilla-jakalatie-helluntairaitti-katusuunnitelmaluonnos</a></p>" }, "name": { "fi": "Esittelytilaisuus Tapaninkylän katusuunnitelmille" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267369/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }