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=77
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=78", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=76" }, "data": [ { "id": "helmet:266436", "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:33:10.593312Z", "last_modified_time": "2023-11-12T15:21:14.989338Z", "date_published": "2022-11-22T06:57:00Z", "start_time": "2023-10-12T14:30:00Z", "end_time": "2023-10-12T16: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:266436/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264683", "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:46:05.840930Z", "last_modified_time": "2023-11-12T15:21:14.747471Z", "date_published": "2023-08-02T13:12:00Z", "start_time": "2023-10-12T15:00:00Z", "end_time": "2023-10-12T16: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:264683/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265420", "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:45:53.076966Z", "last_modified_time": "2023-11-12T11:20:38.332916Z", "date_published": "2023-08-14T21:00:00Z", "start_time": "2023-10-12T12:00:00Z", "end_time": "2023-10-12T12: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:265420/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60959", "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" }, { "@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" } ], "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": 5130, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:27:29.653664Z", "last_modified_time": "2023-10-09T13:27:29.653685Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730882.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5130/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:27:29.297062Z", "last_modified_time": "2023-11-11T21:13:25.561404Z", "date_published": null, "start_time": "2023-09-12T14:00:00Z", "end_time": "2023-09-12T15: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": "Malmitalon yhteislaulut – kuukauden paras tiistai!", "sv": "Allsång på Malms kulturhus - den bästa tisdagen i månaden!", "en": "Sing-alongs at Malmitalo – best Tuesday of the month!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AF7998CDE1928164BFC2F66CF385D440/Malmitalon_yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/AF7998CDE1928164BFC2F66CF385D440/Allsang_pa_Malms_kulturhus", "en": "http://www.malmitalo.fi/en/events/event/AF7998CDE1928164BFC2F66CF385D440/Sing-alongs_at_Malmitalo" }, "description": { "fi": "<p>Malmitalon yhteislaulut – kuukauden paras tiistai!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla saa Malmisalissa taas laulaa ihan sydämensä kyllyydestä!</p><p>Syksyn yhteislaulut järjestetään 12.9., 17.10., 14.11. sekä 19.12. klo 17.00 Malmisalissa. Tervetuloa!</p>", "sv": "<p>Allsång på Malms kulturhus - den bästa tisdagen i månaden!</p><p>Nu får publiken åter sjunga för full hals i Malmsalen under ledning av Jukka Okkonen och Pauli Kainulainen!</p><p>Vårens allsång ordnas 12.9, 17.10, 14.11 samt 19.12 kl. 17.00 i Malmsalen.</p><p>Välkommen!</p>", "en": "<p>Sing-alongs at Malmitalo – best Tuesday of the month!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, you can once again sing your heart out in Malmisali!</p><p>Spring sing-alongs are held in Malmisali on 12 September, 17 October, 14 November and 19 December at 17.00.</p><p>We look forward to seeing you!</p>" }, "name": { "fi": "Malmitalon yhteislaulut", "sv": "Allsång på Malms kulturhus", "en": "Sing-alongs at Malmitalo" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60959/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266605", "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:10673/?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:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 3595, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-24T14:31:30.339981Z", "last_modified_time": "2023-08-24T14:31:30.340003Z", "url": "https://www.helmet.fi/download/noname/{79AE7F4B-64F6-4DFF-87DD-428FC40A1B93}/105149", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3595/?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:p11617/?format=api" } ], "created_time": "2023-08-24T14:36:49.162041Z", "last_modified_time": "2023-11-11T15:20:44.731713Z", "date_published": "2023-08-24T13:28:27.410000Z", "start_time": "2023-10-11T13:00:00Z", "end_time": "2023-10-11T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsingin pohjoisen alueen kirjastot järjestävät yhteisen FIFA-turnauksen 13-18 vuotiaille nuorille.\nKuusi eri kirjastoa ottavat mittaa toisistaan tässä kisassa, jossa selviää alueen paras pelaaja." }, "info_url": null, "description": { "fi": "<p>Helsingin pohjoisen alueen kirjastot järjestävät yhteisen FIFA-turnauksen <strong>13-18 vuotiaille nuorille</strong>.<br> Kuusi eri kirjastoa ottavat mittaa toisistaan tässä kisassa, jossa selviää alueen paras FIFA-pelaaja!</p><p> <br> Kunkin kirjaston karsintapelien voittaja etenee finaaliin, joka järjestetään Malmin kirjastossa.<br> Finaalin parhaimmistolle on luvassa palkintoja.<br> </p><p> <strong>Ilmoittautuminen</strong> alkaa 18.9. osoitteessa <strong><a href=\"http://bit.ly/kirjastonfifa\">bit.ly/kirjastonfifa</a></strong>. Voit halutessasi ilmoittautua mukaan myös turnaukseen osallistuvassa kirjastossa.<br> Kuhunkin karsintaan mahtuu mukaan noin 8 pelaajaa. Pelinä toimii FIFA23 (Playstation 4, Viikin kirjastossa Playstation 5).</p><p> <br> <strong>Turnauksen aikataulu</strong> </p><p>Karsinnat:<br> Malmi ti 26.9. klo 16-19.45 <br> Viikki ke 27.9. klo 16-19.45 <br> Tapuli ke 27.9. klo 16-19.45 <br> Puistola to 28.9. klo 16-19.45 <br> Pukinmäki ti 3.10. klo 16-19.45 <br> Jakomäki ke 4.10. klo 16-19.45 <br> <br> Finaali:<br> Malmi ke 11.10. klo 16-19.45 </p>" }, "name": { "fi": "FIFA-turnauksen finaali Malmin kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "monitoimitila" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266605/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269323", "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:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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: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": 5065, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-07T08:24:48.702449Z", "last_modified_time": "2023-10-07T08:24:48.702471Z", "url": "https://www.helmet.fi/download/noname/{58269C23-610D-45BA-932C-BC5B5DF1F030}/106579", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5065/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-07T08:24:48.115683Z", "last_modified_time": "2023-11-11T11:20:53.716688Z", "date_published": "2023-10-07T05:00:00Z", "start_time": "2023-11-03T12:00:00Z", "end_time": "2023-11-03T13: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": "Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää. Muistathan varata 15 minuutin lukuajan kirjaston henkilökunnalta etukäteen." }, "info_url": null, "description": { "fi": "<p>Lukukoira Konsta ottaa vastaan 30.11. & 28.12. klo 18-19 </p><p>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 Konsta" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269323/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261560", "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:45:09.186684Z", "last_modified_time": "2023-11-11T11:20:03.045175Z", "date_published": "2023-06-16T08:00:00Z", "start_time": "2023-10-11T10:00:00Z", "end_time": "2023-10-11T12: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:261560/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269849", "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": 5565, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-20T09:23:51.318887Z", "last_modified_time": "2023-10-20T09:23:51.318902Z", "url": "https://www.helmet.fi/download/noname/{3295F753-F656-4DC1-813E-80BA82ADA76C}/106931", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5565/?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-10-20T09:23:51.300136Z", "last_modified_time": "2023-11-11T06:20:52.459212Z", "date_published": "2023-10-20T08:00:00Z", "start_time": "2023-11-10T15:00:00Z", "end_time": "2023-11-10T18: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": "Lukuretriitti kutsuu kirjojen äärelle!" }, "info_url": null, "description": { "fi": "Lukuretriitti kutsuu kirjojen äärelle! Tapanilan kirjasto hiljentyy lukemaan kirjaston sulkeuduttua perjantaina 10.11. klo 17-20. Tarjolla mukavia lukupaikkoja, lukemattomia kirjoja sekä teetä. Tervetuloa!" }, "name": { "fi": "Lukuretriitti" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269849/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268798", "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: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": 4897, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-25T11:44:37.244316Z", "last_modified_time": "2023-09-25T11:44:37.244333Z", "url": "https://www.helmet.fi/download/noname/{B029FF6E-15AE-4153-8004-968178737ED6}/106167", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4897/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-25T11:44:36.378686Z", "last_modified_time": "2023-11-10T15:20:04.906367Z", "date_published": "2023-09-25T10:13:00Z", "start_time": "2023-10-10T15:00:00Z", "end_time": "2023-10-10T16: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": "Valtio-opin dosentti, varadekaani Hanna Wass ja politiikan toimittaja Marko Junkkari keskustelevat." }, "info_url": null, "description": { "fi": "<p>Yleisen valtio-opin dosentti, Helsingin yliopiston valtiotieteellisen tiedekunnan varadekaani <strong>Hanna Wass</strong> ja Helsingin Sanomien politiikan toimittaja <strong>Marko Junkkari</strong> keskustelevat.</p><p>Tule kuuntelemaan pohdintaa uuden hallituksen alkutaipaleesta ja päätösten yhteiskunnallisista vaikutuksista.</p><p>Tilaisuuden juontaa Malmin srk:n yhteiskunnallisen työn pastori <strong>Kirsi Ojansuu-Kaunisto</strong>.</p><p>Vapaa pääsy. Tervetuloa!</p><p>Tapahtuma järjestetään yhteistyössä Malmin seurakunnan kanssa.</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Malmin_kirjasto/Yhteystiedot\">Malmin kirjasto</a> </p>" }, "name": { "fi": "Mitä tarjoaa Orpon hallitus?" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268798/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60401", "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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 4169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:19.041798Z", "last_modified_time": "2023-09-07T14:21:19.041830Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_722820.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:21:18.882453Z", "last_modified_time": "2023-11-08T21:13:41.730010Z", "date_published": null, "start_time": "2023-09-09T09:00:00Z", "end_time": "2023-09-09T15: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": "Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla", "sv": "Nezumicon är ett cosplayevenemang som unga producerar på Malms kulturhus 9.9.2023!", "en": "Nezumicon is a cosplay event organised by young people at Malmitalo on 9 September 2023!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F7A6C1BC4B089438B2F18D9A90FA8706/Nezumicon", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F7A6C1BC4B089438B2F18D9A90FA8706/Nezumicon", "en": "http://www.malmitalo.fi/en/events/event/F7A6C1BC4B089438B2F18D9A90FA8706/Nezumicon" }, "description": { "fi": "<p>Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla</p><p>Tapahtuma on maksuton ja suunnattu 12–18-vuotiaille nuorille. Tapahtuman tuottamisessa nuoria auttaa Operaatio Pulssi! Pohjoinen, Malmitalo, Malmin kirjasto ja Malmin nuorisotyöyksikkö.</p><p>Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä. Nezumiconissa järjestetään muun muassa AMV, edittikilpailu, tanssikilpailu ja pukukilpailu. Ilmoittautuminen myyntipisteille tapahtuu sähköpostilla pulssi.pohjoinen@hel.fi</p><p>Tarkemmat tiedot ja ilmoittautuminen oheisen linkin takaa:</p><p>https://nuorten.hel.fi/yleinen/nezumicon/</p>", "sv": "<p>Nezumicon är ett cosplayevenemang som unga producerar på Malms kulturhus 9.9.2023!</p><p>I evenemanget ingår program och aktiviteter med manga- och animetema samt tävlingar. Du kan anmäla dig till tävlingarna och programmet på förhand via webbplatsen hel.fi.</p><p>Evenemanget är gratis och avsett för ungdomar i åldern 12–18 år.</p>", "en": "<p>Nezumicon is a cosplay event organised by young people at Malmitalo on 9 September 2023!</p><p>The event focuses on manga- and anime-themed programme and competitions. You can register in advance for the competitions and the programme via nuorten.hel.fi.</p><p>The event is free of charge and intended for people aged 12–18.</p>" }, "name": { "fi": "Nezumicon", "sv": "Nezumicon", "en": "Nezumicon" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60401/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60402", "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" }, { "@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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/alamalmi/", "sv": "https://www.lippu.fi/artist/alamalmi/", "en": "https://www.lippu.fi/artist/alamalmi/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4168, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:18.626611Z", "last_modified_time": "2023-09-07T14:21:18.626633Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732253.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4168/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:18.477878Z", "last_modified_time": "2023-11-07T21:13:27.396223Z", "date_published": null, "start_time": "2023-09-08T16: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": "Vuonna 2011 Jyväskylässä perustettu kolmihenkinen Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan.", "sv": "Räjäyttäjät är ett band med tre personer som bildades 2011 i Jyväskylä, och de har blivit kända för sina fartfyllda liveframträdanden och finskspråkig dånande rock.", "en": "Founded in Jyväskylä in 2011, the three-piece Räjäyttäjät have become known for their fast-paced live performances and Finnish-language rock." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6502ABE56B9C2CEB18ACB0D298CA2CAF/Rajayttajat", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6502ABE56B9C2CEB18ACB0D298CA2CAF/Rajayttajat", "en": "http://www.malmitalo.fi/en/events/event/6502ABE56B9C2CEB18ACB0D298CA2CAF/Rajayttajat" }, "description": { "fi": "<p>Vuonna 2011 Jyväskylässä perustettu kolmihenkinen Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan.</p><p>Yli kymmenvuotisella urallaan yhtye on ansaitusti vakiinnuttanut paikkansa aikamme kotimaisen indieskenen kaanonissa. ”Räjä ’n’ rollia” soittavan yhtyeen ilmaisussa on juuri sopiva ripaus hölmöä tee-se-itse-tykittelyä, kunnon meininkiä sekä tarkkanäköisen rehellistä rokkia. Räjäyttäjät räjäyttää! Pauhu mahtava kertoo totuuden!</p><p>Räjäyttäjien jytäskaala on mieletön. Yhtyeen alkupään tuotanto on arvaamattomana kaahaavaa rupista ja nopeaa jytäävää garagerockia. Albumillaan Räjä Elektrik Millenium (2016) bändi kaivoi esiin puoleestaan syntetisaattorit, ja irtaantui perinteisen rockbändin ja edellisten levyjensä kaavoista. Tuoreimmalla III (2019) -albumilla yhtye istahtaa perinteisten svengaavien rock- ja blueskulkujen äärelle. Albumi on täynnä monenkirjavia sävyjä, lisäravinteita on nappailtu glam rockista, progesta sekä ensimmäisen britti-invaasion jälkihäröilyistä.</p><p>Räjäyttäjät on koheesion asialla. Rock on ikuinen, uusi vesimiehen aika koittaa, kaikki kukat kukkivat, värit pärisevät.</p><p>Räjäyttäjät:<br>Jukka Nousiainen<br>Alex Reed<br>Mikko Siltanen</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia upeissa mutta silti kodikkaissa konserttisalipuitteissa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät, joita maa päällään kantaa.</p>", "sv": "<p>Räjäyttäjät är ett band med tre personer som bildades 2011 i Jyväskylä, och de har blivit kända för sina fartfyllda liveframträdanden och finskspråkig dånande rock.</p><p>Under sin mer än tioåriga karriär har bandet välförtjänt etablerat sin plats i förgrunden av den inhemska indiescenen.</p>", "en": "<p>Founded in Jyväskylä in 2011, the three-piece Räjäyttäjät have become known for their fast-paced live performances and Finnish-language rock.</p><p>With a career spanning more than ten years, the band has deservedly established itself in the Finnish indie scene canon of our time.</p>" }, "name": { "fi": "Räjäyttäjät – A la Malmi", "sv": "Räjäyttäjät – A la Malmi", "en": "Räjäyttäjät – A la Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60402/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60699", "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:29/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4164, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:15.624819Z", "last_modified_time": "2023-09-07T14:21:15.624838Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735126.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4164/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:15.475997Z", "last_modified_time": "2023-11-07T21:13:27.119257Z", "date_published": null, "start_time": "2023-09-08T15: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": "Rock-musiikki räjähti kuin supernova, kun Little Richard astui lavalle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49985724F5DAD1B75C314DB357A31021/Little_Richard_12_" }, "description": { "fi": "<p>Rock-musiikki räjähti kuin supernova, kun Little Richard astui lavalle.</p><p>Samalla tavalla Lisa Cortesin dokumentti räjäyttää valkoiseksi kalkittua amerikkalaista pophistoriaa ja korostaa sekä legendaarisen rock-ikonin vaikutusta että koko pophistorian afroamerikkalaisia juuria.</p><p>Eksklusiivisen arkistomateriaalin kautta tähdet, kuten Mick Jagger, Paul McCartney ja Nile Rodgers, sekä mustan populaarikulttuurin tutkijat ja queer-historioitsijat kuvaavat Richardin ainutlaatuista uraa ja elämää.</p><p>Ikäraja: 12<br>Kesto 101 min</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>" }, "name": { "fi": "Little Richard (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60699/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60700", "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:29/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4163, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:15.229735Z", "last_modified_time": "2023-09-07T14:21:15.229757Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735128.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4163/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:14.884946Z", "last_modified_time": "2023-11-07T21:13:27.026543Z", "date_published": null, "start_time": "2023-09-08T12:00:00Z", "end_time": "2023-09-08T13: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": "Evan elämä juuri eläkkeelle jäätyään voisi olla paremminkin.", "sv": "Livet som nybliven pensionär kunde vara bättre." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/68DB0E7909264AAA6404A72029AA1D4D/Andra_Akten_toinen_naytos_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/68DB0E7909264AAA6404A72029AA1D4D/Andra_Akten_-_toinen_naytos_S_" }, "description": { "fi": "<p>Evan elämä juuri eläkkeelle jäätyään voisi olla paremminkin.</p><p>Evan ex-mies on muuttanut kadun toiselle puolelle uuden vaimonsa kanssa. Evan aikuinen poika on jostain käsittämättömästä syystä kyllästynyt ylisuojelevan äitinsä paapomiseen ja haluaakin enemmän omaa aikaa. Mitä Evan pitäisi tehdä kaikella vapaa-ajallaan?</p><p>Evalle tarjoutuu yllättäen mahdollisuus työkeikkaan, josta hän ei voi kieltäytyä – suuri tähtinäyttelijä, hieman erikoinen Harald Skoog, on saanut aivohalvauksen ja tarvitsee kuntoutusta omassa kodissaan. Se mikä alkaa katastrofina, kasvaa lämpimäksi ystävyydeksi, orastavaksi elämäniloksi ja toivoksi siitä, ettei elämä olekaan vielä ohitse. Itse asiassa se ei ehkä ole edes vielä alkanut.</p><p>Ikäraja: sallittu<br>Kesto 114 min<br>Ensi-ilta 11.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia)</i></p>", "sv": "<p>Livet som nybliven pensionär kunde vara bättre.</p><p>Evas exman flyttar in tvärs över gatan med sin nya fru och Evas son verkar obegripligt nog tröttna på sin mammas daltande och vill ha mer egen tid, utan hennes överbeskyddande hjälp. Vad ska Eva göra av all tid?</p><p>Ett extraknäck dyker upp som Eva inte kan motstå – den store stjärnskådespelaren, den excentriske Harald Skoog, har drabbats av en stroke och behöver rehabilitering i sitt eget hem. Vad som börjar som en katastrof växer till varm vänskap, spirande livsglädje och till ett hopp om att livet inte är över. Faktum är att det kanske inte ens har börjat.</p><p>Åldersgränsen: T<br>Längd 114 min<br>Premiär 11.8.2023</p>" }, "name": { "fi": "Andra Akten – toinen näytös (S) – Kino Helios", "sv": "Andra Akten - toinen näytös (S) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60700/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268929", "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": 4930, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-28T10:34:48.435559Z", "last_modified_time": "2023-09-28T10:34:48.435624Z", "url": "https://www.helmet.fi/download/noname/{B8272C0F-67FA-42C3-9D73-829FE232C576}/106258", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4930/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-28T10:34:47.354186Z", "last_modified_time": "2023-11-06T06:20:33.118038Z", "date_published": "2023-09-28T08:27:00Z", "start_time": "2023-10-06T07:00:00Z", "end_time": "2023-10-06T08: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 vauvan omalle retkelle lähiluontoon!" }, "info_url": null, "description": { "fi": "<p>LUONTOKYLPY PERUTTU SAIRASTUMISEN VUOKSI!</p><p> <br> <br> Tervetuloa vauvojen omalle retkelle lähiluontoon! </p><p>Luontokylvyssä vauva saa tutustua luontoon moniaistisesti leikkien ja tutkien. Vauvantahtisesti aistitaan ympäröivää luontoa, tutustutaan luonnosta löytyviin elementteihin ja leikitään vuorovaikutuksellisia leikkejä vauvan kassa. Toimintaan ovat tervetulleita kaikenlaiset perheet ja vauvan lähipiiri! Tuokion aikana saadaan luonnon hyvinvointivaikutuksia kaikille osallistujille. </p><p>Kokoonnume Malmitalon aulassa kirjaston edessä, josta siirrymme kauniiseen lähipuistoon. Kehnolla säällä luontokylvemme kirjaston rauhallisessa monitoimitilassa. Tuokioon kannattaa varata vaatteet, joiden pieni likaantuminen ei haittaa. Luontokylvyt sopivat noin 4-18 kuukauden ikäisille oman aikuisen/aikuisten seurassa. </p><p>Vauvojen luontokylvyt ovat osa Malmin kirjaston <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Malmin_kirjasto/Tapahtumat/Vauvojen_loruaamut(266997)\">vauva-aamuja</a>, joissa on vaihtuvaa ohjelmaa joka toinen perjantai klo 10. Tervetuloa mukaan touhuilemaan! Lisätiedot suvi.vehmas@hel.fi </p>" }, "name": { "fi": "Vauvojen luontokylpy PERUTTU" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268929/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60404", "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" }, { "@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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/malmijazz/", "sv": "https://www.lippu.fi/artist/malmijazz/", "en": "https://www.lippu.fi/artist/malmijazz/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4153, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:07.737721Z", "last_modified_time": "2023-09-07T14:21:07.737743Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732165.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4153/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:06.866406Z", "last_modified_time": "2023-11-05T21:13:03.509702Z", "date_published": null, "start_time": "2023-09-06T16: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": "Masa Orpana Honk tuo keikoillensa rhythm and bluesin riemun.", "sv": "Masa Orpana Honk fyller sina framträdanden med glädjen i rhythm and blues.", "en": "Masa Orpana Honk brings the joy of rhythm and blues to its gigs." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6ED7F1F273ED2965AE7378521D4B9B40/MalmiJazz_Masa_Orpana_Honk", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6ED7F1F273ED2965AE7378521D4B9B40/MalmiJazz_Masa_Orpana_Honk", "en": "http://www.malmitalo.fi/en/events/event/6ED7F1F273ED2965AE7378521D4B9B40/MalmiJazz_Masa_Orpana_Honk" }, "description": { "fi": "<p>Masa Orpana Honk tuo keikoillensa rhythm and bluesin riemun.</p><p>Yhtyeen valtti on kolmen saksofonin sektio, jota komppaa New Orleansin hengessä sykkivä rytmiryhmä. Bändin persoonallisessa musiikissa yhdistyvät blues, afroamerikkalainen juurimusiikki sekä jazzin kieli pitkälle vietyjen improvisaatioiden, omien sävellysten ja hiottujen sovitusten muodossa.</p><p>Alun perin Honk perustettiin vuonna 2012 ja se on esiintynyt aiemmin kvartettina Orpanan ollessa ainoa puhaltaja. Kahdella saksofonistilla vahvistettu kokoonpano on syntynyt ideasta soittaa keikoilla Orpanan useamman puhaltajan sovituksia.</p><p>Joulukuussa 2021 Masa Orpanalle myönnettiin Jemma-palkinto työstään bluesin ja muun rytmimusiikin parissa. Palkinnon ovat aiemmin saaneet muun muassa Marjo Leinonen, Pepe Ahlqvist ja Jo' Buddy.</p><p>Honk julkaisi toukokuussa 2023 pitkäsoittolevyn The Chase!, jolle koottiin uusien äänitysten ohella aiemmin vain diginä julkaistua musiikkia. Vuonna -21 bändiltä ilmestyi kaksi digi-EP:tä, The BigB ja Shakin' (Alba Records) ja 2022 kaksi digisingleä. Aiemmin Honk on julkaissut kaksi kriitikoiden kehumaa albumia: Honk (2018) sekä Travelin' Home (2014).</p><p>Kokoonpano:<br>Johnny Gideon: kitara ja laulu<br>Masa Orpana: tenorisaksofoni,<br>Tuomas Heinonen: altto- ja tenorisaksofoni<br>Aino Heikkonen: baritonisaksofoni<br>Ville Vallila: basso ja stemmalaulu<br>Juppo Paavola: rummut</p>", "sv": "<p>Masa Orpana Honk fyller sina framträdanden med glädjen i rhythm and blues.</p><p>Bandets stora fördel är sektionen med tre saxofoner, som kompas av en rytmgrupp som andas New Orleans. I bandets personliga musik kombineras blues, musik med afroamerikanska rötter och jazzens språk genom avancerade improvisationer, egna kompositioner och bearbetade arrangemang.</p>", "en": "<p>Masa Orpana Honk brings the joy of rhythm and blues to its gigs.</p><p>The trump card of the ensemble is a three-saxophone section that is completed by a New Orleans-esque rhythm section. The band’s personal music combines blues, African-American roots music and the language of jazz in the form of elaborate improvisations, original compositions and polished arrangements.</p>" }, "name": { "fi": "MalmiJazz: Masa Orpana Honk", "sv": "MalmiJazz: Masa Orpana Honk", "en": "MalmiJazz: Masa Orpana Honk" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60404/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60698", "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:29/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4150, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:05.659730Z", "last_modified_time": "2023-09-07T14:21:05.659753Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735124.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4150/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:05.503809Z", "last_modified_time": "2023-11-05T21:13:03.325170Z", "date_published": null, "start_time": "2023-09-06T15: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": "Rock-musiikki räjähti kuin supernova, kun Little Richard astui lavalle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8BF0F296F2AE59CE916033BADBA3679C/Little_Richard_12_" }, "description": { "fi": "<p>Rock-musiikki räjähti kuin supernova, kun Little Richard astui lavalle.</p><p>Samalla tavalla Lisa Cortesin dokumentti räjäyttää valkoiseksi kalkittua amerikkalaista pophistoriaa ja korostaa sekä legendaarisen rock-ikonin vaikutusta että koko pophistorian afroamerikkalaisia juuria.</p><p>Eksklusiivisen arkistomateriaalin kautta tähdet, kuten Mick Jagger, Paul McCartney ja Nile Rodgers, sekä mustan populaarikulttuurin tutkijat ja queer-historioitsijat kuvaavat Richardin ainutlaatuista uraa ja elämää.</p><p>Ikäraja: 12<br>Kesto 101 min</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>" }, "name": { "fi": "Little Richard (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60698/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60697", "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:29/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4146, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:02.885566Z", "last_modified_time": "2023-09-07T14:21:02.885588Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735119.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4146/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:02.712051Z", "last_modified_time": "2023-11-05T21:13:03.163057Z", "date_published": null, "start_time": "2023-09-06T12: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": "Harold Fryn toiveikas taival ei ole tavallinen sankaritarina.", "sv": "Harolds och Maureens stillsamma tillvaro präglas av händelser i det förflutna som de aldrig kunnat prata om." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/24122996EAECACB56AD67700E84183BF/Harold_Fryn_toiveikas_taival_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/24122996EAECACB56AD67700E84183BF/Harold_Fryn_toiveikas_taival_12_" }, "description": { "fi": "<p>Harold Fryn toiveikas taival ei ole tavallinen sankaritarina.</p><p>Harold on huomaamaton mies, joka on epäonnistunut elämässään kaikessa tärkeässä: aviomiehenä, isänä ja ystävänä. Nyt reilusti yli 60-vuotiaana Harold kuitenkin yllättää niin itsensä, vaimonsa, kuin kaikki muutkin. Kun Harold kuulee vanhan ystävänsä olevan saattohoidossa, hän tahtoo lähettää tälle surunvalittelunsa. Postiin käveltyään Haroldista kuitenkin tuntuu, ettei kirje ole tarpeeksi.</p><p>Hetken mielijohteesta Harold lähtee jalan matkaan ystävänsä luo, ja pian matka koko maan halki tekee hänet tunnetuksi ympäri Englannin. Harold toivoo pelastavansa matkanteolla ystävänsä, mutta löytää samalla myös tien takaisin itseensä, ja lopulta kotiin.</p><p>Harold Fryn toiveikas taival on koskettava kertomus itsensä löytämisestä, anteeksiannosta ja hetkeen tarttumisesta. Hettie McDonaldin (Normal People) elokuvan nimiroolissa nähdään Oscar-palkittu Jim Broadbent yhdessä ylistetyn Penelope Wiltonin (Downton Abbey) kanssa. Elokuva pohjautuu Rachel Joycen bestselleriin.</p><p>Ikäraja: 12<br>Kesto 107 min</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>", "sv": "<p>Harolds och Maureens stillsamma tillvaro präglas av händelser i det förflutna som de aldrig kunnat prata om.</p><p>En dag får Harold brev från en gammal kollega som ligger på hospice hundra mil därifrån. På väg till brevlådan med ett svar får han ingivelsen att istället besöka henne, och ger sig av direkt till fots utan vettiga kläder eller mobil. När Maureen inser vad han gjort blir hon både orolig och arg.</p><p>Under sin vandring genom England möter Harold många människor, får oväntade följare och nya insikter. Han förstår att det han egentligen försöker nå är försoning både med sig själv, med Maureen och deras förflutna. Kan Harolds nya livssyn få honom och Maureen att hitta tillbaka till varandra?</p><p>I huvudrollerna ser vi Oscarsbelönade Jim Broadbent och Penelope Wilton från \"Downton Abbey\", \"Hotel Marigold\" och \"After Life\".</p><p>Åldersgränsen: 12<br>Längd 107 min</p>" }, "name": { "fi": "Harold Fryn toiveikas taival (12) – Kino Helios", "sv": "Harold Fryn toiveikas taival (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60697/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264336", "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": 2998, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:43:29.369330Z", "last_modified_time": "2023-08-15T15:43:29.369352Z", "url": "https://www.helmet.fi/download/noname/{488DFE6E-12B3-4E36-BEC5-D1652C388458}/104611", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2998/?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:29.251193Z", "last_modified_time": "2023-11-05T15:20:40.139623Z", "date_published": "2023-07-26T11:13:00Z", "start_time": "2023-10-05T15:00:00Z", "end_time": "2023-10-05T16: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": "Muusikko, taiteilija ja tutkija Petri Kuljuntausta saapuu kertomaan Tapanilan soitinrakentajista ja elektronisen musiikin edelläkävijöistä. Alueella on vaikuttanut henkilöitä, joiden osaaminen soittimien rakentamisen saralla on jäänyt toistaiseksi huomioimatta." }, "info_url": null, "description": { "fi": "<p>Muusikko, taiteilija ja tutkija <strong>Petri Kuljuntausta</strong> saapuu kertomaan Tapanilan soitinrakentajista ja elektronisen musiikin edelläkävijöistä. Alueella on vaikuttanut henkilöitä, joiden osaaminen soittimien rakentamisen saralla on jäänyt toistaiseksi huomioimatta.</p><p>Paikalle saapuu myös muita paikallisia muistelemaan Tapanilan paikallishistoriaa Kuljuntaustan kanssa.</p><p>Tilaisuus järjestetään Tapanilan kirjastossa torstaina 5.10. klo 18-19.30. </p><p>Kuva: Keijo Lindgren + Tapanilan kirjasto</p>" }, "name": { "fi": "Keskustelutilaisuus: Tapanilan musiikkihistoriaa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264336/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265426", "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:43:12.394559Z", "last_modified_time": "2023-11-05T10:21:44.807569Z", "date_published": "2023-08-14T21:00:00Z", "start_time": "2023-10-05T12:00:00Z", "end_time": "2023-10-05T12: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:265426/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264229", "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:42:27.982982Z", "last_modified_time": "2023-11-04T10:21:47.757740Z", "date_published": "2023-07-24T13:10:50.867000Z", "start_time": "2023-10-04T11:00:00Z", "end_time": "2023-10-04T12: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:264229/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }