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/?format=api&page=310&weekday=6%2C7
{ "meta": { "count": 6457, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=311&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=309&weekday=6%2C7" }, "data": [ { "id": "helmet:267247", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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": 3771, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T09:27:41.084394Z", "last_modified_time": "2023-08-30T09:27:41.084415Z", "url": "https://www.helmet.fi/download/noname/{6F254997-81DA-40ED-9F66-22375922B09D}/105363", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3771/?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-30T09:27:40.925683Z", "last_modified_time": "2023-10-24T10:23:49.531980Z", "date_published": "2023-08-30T08:33:00Z", "start_time": "2023-09-23T12:00:00Z", "end_time": "2023-09-23T12: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": "Pikkulin Laululeikkishow tulee Myyrmäen kirjastoon lauantaina 23.9. klo 15-15.30." }, "info_url": null, "description": { "fi": "<p>Tervetuloa laulamaan ja leikkimään yhdessä Pikkulin kanssa Myyrmäen kirjastoon! Pikkuli touhuaa mukana koko shown ajan. Saamme kuulla esimerkiksi millaisia kavereita Pikkulilla on ja mitä he tykkäävät leikkiä yhdessä.</p><p>Osallistavan esityksen lauluista ja leikityksestä vastaavat Pikkulin lisäksi Pikkulin tekijät Metsämarja ja Antti Aittokoski.</p><p>Tapahtuman mahdollistaa aluehallintoviraston rahoittama <em>Makuja kielelle – lukuintoa lapsiperheille</em> -hanke. Tapahtumaan on vapaa pääsy.</p><p>Kuva: Pasi Leino<br> Asiasana: lastenkulttuuri</p>" }, "name": { "fi": "Pikkulin Laululeikki-show" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumatila, 1. kerros" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267247/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267784", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8308/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12031/?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": 3895, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-05T13:30:43.295049Z", "last_modified_time": "2023-09-05T13:30:43.295070Z", "url": "https://www.helmet.fi/download/noname/{5CDD22E6-A471-47C5-A015-47F9F662AA81}/105616", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3895/?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-05T13:30:43.167693Z", "last_modified_time": "2023-10-24T10:23:49.442783Z", "date_published": "2023-09-05T12:07:00Z", "start_time": "2023-09-23T08:00:00Z", "end_time": "2023-09-23T12: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": "Helsinkiläiset kehrääjäharrastajat tuovat rukit ja värttinät Elopeltoon ja kokoontuvat kirjastoon kehräämään. Piipahda tutustumassa kehräämiseen ja kaikkiin sen eri työvaiheisiin. Taitojärjestö on valinnut kehräyksen vuoden 2023 käsityötekniikaksi." }, "info_url": null, "description": { "fi": "<p>Helsinkiläiset kehrääjäharrastajat tuovat rukit ja värttinät Elopeltoon ja kokoontuvat kirjastoon kehräämään. Piipahda tutustumassa kehräämiseen ja kaikkiin sen eri työvaiheisiin. Taitojärjestö on valinnut kehräyksen vuoden 2023 käsityötekniikaksi.</p><p> <em>Kuva: Taitojärjestö</em> </p>" }, "name": { "fi": "Pop up -kehräämö" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elopelto" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267784/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266607", "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": 3597, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-24T16:30:30.216434Z", "last_modified_time": "2023-08-24T16:30:30.216455Z", "url": "https://www.helmet.fi/download/noname/{1259E0F5-9DC0-45CA-AC03-57D490766B20}/105212", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3597/?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-24T16:30:30.001895Z", "last_modified_time": "2023-10-24T10:23:49.329867Z", "date_published": "2023-08-24T15:16:00Z", "start_time": "2023-09-23T08:00:00Z", "end_time": "2023-09-23T12: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": "Lapsiperheille suunnatussa robottipäivässä askarrellaan, tanssitaan ja testaillaan robotteja." }, "info_url": null, "description": { "fi": "Lapsiperheille suunnatun Robottipäivän ohjelmassa: Robottitanssipaja klo 11-11.30 (suositusikä 5-10v.) Robottiaskartelua klo 11-13 Robottien kilparata klo 13.30-15 Robottimaisia tehtäviä koko tapahtuman ajan Tervetuloa!" }, "name": { "fi": "Robottipäivä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266607/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265454", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?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: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": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:38:42.516216Z", "last_modified_time": "2023-10-24T10:23:49.213888Z", "date_published": "2023-08-15T09:00:00Z", "start_time": "2023-09-23T07:00:00Z", "end_time": "2023-09-23T12: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": "italiankielinen lauantai tikkurilan kirjaston lastenosastolla 23.9." }, "info_url": null, "description": { "fi": "<h3>Italiankielinen lauantai Tikkurilan kirjaston lastenosastolla 23.9.2023</h3></p> <p>Benvenuti al sabato italiano, che si terra' il 23.9.2023 nella Biblioteca di Tikkurila, Reparto bambini!</p><p>Programma:</p><p>* ore 10.00 - 11.00 letture animate in italiano con Lia<br> * ore 11.00-12.00 Giocar Cantando con Renata<br> * ore 13.30-14.30 laboratorio creativo con Albena: realizza la tua pizza preferita con carta e cartoncino</p><p>Il Circolo degli italiani in Finlandia offre un piccolo rinfresco ai partecipanti nella Sala Voimala al secondo piano della biblioteca, dalle 12:15 alle 13:15</p><p> <a href=\"https://www.facebook.com/CircoloItalianiFinlandia?__cft__[0]=AZUSSHVoQG_Sj-au0aA1Js8Keh1NGQXqA6ElGXjk0-hCy3-MCalLC_E7zBT6dOn_nnt9zqIDwXsMoesTzkXo5Pwf8seKn7VnPL08DV0ghXkWISHAGlUHreT6Acde-a2jHqc&__tn__=q\">https://www.facebook.com/CircoloItalianiFinlandia</a> </p> <h3></h3><p>Tervetuloa osallistumaan italiankielisen lauantain ohjelmaan Tikkurilan kirjaston lastenosastolla!<br><br> Ohjelma:</p><p> Klo 10.00 - 11.00 ... italiankielinen satutunti Lian kanssa</p><p> Klo 11.00 - 12.00 ... iltaliankieliset muskarit \"Giocar Cantando\" Renatan kanssa</p><p> Klo 13.30 - 14.30 ... askartelua: tee oma paperipizza Albenan kanssa</p><p>Yhteistyökumppani: <a href=\"https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2FCircoloItalianiFinlandia&data=05%7C01%7Cpetrus.jauhiainen%40vantaa.fi%7C6636efbe17df47aeab3c08dba9512ad1%7Cdad5d62c98304db09c1589befcc5cf3e%7C0%7C0%7C638289938290318705%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=CTo4TMRagDkiE%2BVQa5QIlBXM7HVrPsj6sf07sWmXmas%3D&reserved=0\" title=\"\">https://www.facebook.com/CircoloItalianiFinlandia</a></p>" }, "name": { "fi": "Italiankielinen lauantai" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tikkurilan kirjasto, lastenosasto, 1 krs." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265454/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267420", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?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:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3803, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T09:22:34.384974Z", "last_modified_time": "2023-08-31T09:22:34.384996Z", "url": "https://www.helmet.fi/download/noname/{DADF70AC-EC34-4592-AA15-7D2A0C6E4EFF}/77539", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3803/?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-31T13:29:00.339522Z", "last_modified_time": "2023-10-24T09:21:43.027588Z", "date_published": "2023-08-31T07:48:00Z", "start_time": "2023-09-23T11:00:00Z", "end_time": "2023-09-23T11: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": "Tervetuloa kuuntelemaan satuja ja tarinoita." }, "info_url": null, "description": { "fi": "<p>Kirjaston satuhuoneessa järjestetään avoimia satuhetkiä. Tervetuloa!</p><p>Syksyn 2023 satuhetket ovat:</p> <strong>5.9., 26.9., 12.12., 13.12. ja 19.12.</strong> <p> <strong>klo 9.15-9.30</strong> ja <strong>klo 9.30-9.45</strong></p><p> <strong>La 23.9. klo 14</strong> </p><p> <strong>La 14.10. klo 10 ja 10.30</strong> </p><p> <strong>Ti 7.11. klo 9 ja 9.45</strong> </p><p> Tuokiot on suunnattu kolme vuotta täyttäneille. </p><p>Ilmoittautuminen: anneli.outinen@vantaa.fi</p><p>\"Asiasana: Lastenkulttuuri\"</p><p> <em>Kuva: Hanna Lehtonen</em> </p>" }, "name": { "fi": "Satuhetki" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267420/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265439", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:14432/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2977, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:38:42.281790Z", "last_modified_time": "2023-08-15T15:38:42.281811Z", "url": "https://www.helmet.fi/download/noname/{6B490954-8EB8-4AD2-B408-13448BC8361D}/104930", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2977/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:38:42.139171Z", "last_modified_time": "2023-10-24T09:21:42.947276Z", "date_published": "2023-08-15T09:56:02.360000Z", "start_time": "2023-09-23T09:30:00Z", "end_time": "2023-09-23T11: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": "Lukukoira Emil ottaa pieniä lukijoita vastaan kirjaston lastenosastolla.", "sv": "Läshunden Emil tar emot läsande barn på bibliotekets barnavdelning." }, "info_url": null, "description": { "fi": "<p>Lukukoira Emil ottaa pieniä lukijoita vastaan kirjaston lastenosastolla. Jos opettelet juuri lukemaan, voit tulla harjoittelemaan ääneen lukemista Emilin kanssa. Emil kuuntelee rauhassa, eikä koskaan korjaa virheitä.</p><p>Voit tulla rapsuttamaan Emiliä klo 12.30 ja 13.00 välillä.</p><p>Jos haluat myös lukea Eemilille, varaa 10 min lukuaika kirjaston asiakaspalvelusta (050 411 6504).</p>", "sv": "<p>Läshunden Emil tar emot läsande barn på bibliotekets barnavdelning. Om du håller på att lära dig läsa, kan du komma och öva högläsning med Emil. Emil lyssnar i lugn och ro och rättar aldrig några fel.</p><p>Du kan komma och klappa Emil mellan kl. 12.30 och 13.00.</p><p>Om du också vill läsa för Emil kan du boka en 10 min lästid i bibbans kundtjänst (050 411 6504). </p>" }, "name": { "fi": "Lukukoira Emil", "sv": "Läshunden Emil" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265439/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264150", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2629, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:22.474612Z", "last_modified_time": "2023-08-15T15:28:22.474634Z", "url": "https://www.helmet.fi/download/noname/{09A3471A-BF1D-432C-9E00-A10C7D2ECA94}/104550", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2629/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:38:41.492667Z", "last_modified_time": "2023-10-24T09:21:42.880920Z", "date_published": "2023-07-19T10:55:00Z", "start_time": "2023-09-23T10:00:00Z", "end_time": "2023-09-23T11: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 Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.", "en": "Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture." }, "info_url": null, "description": { "fi": "<p>Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.</p><p>Kiinankielinen satutunti on suunnattu kiinankielisille lapsille, jotka ovat kiinnostuneita kiinan kielen oppimisesta. Satutunnit järjestetään kirjaston lastenosastolla.</p>", "en": "<p>Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture.</p><p>The story times are arranged at the library's children's section.</p>" }, "name": { "fi": "Kiinankielinen satutunti", "en": "Chinese Story Time" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264150/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266731", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11202/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11756/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3708, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T08:43:50.656069Z", "last_modified_time": "2023-08-25T08:43:50.656091Z", "url": "https://www.helmet.fi/download/noname/{52525431-DA01-47BF-9A07-A406040AAF0A}/105213", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3708/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [], "created_time": "2023-08-25T08:52:15.100587Z", "last_modified_time": "2023-10-24T08:24:06.306897Z", "date_published": "2023-08-25T06:00:00Z", "start_time": "2023-09-23T09:00:00Z", "end_time": "2023-09-23T10: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": { "ru": "Добро пожаловать в наш книжный клуб!" }, "info_url": null, "description": { "ru": "<p>Добро пожаловать в книжный клуб ! </p><p>Приглашаем тебя, 10-14 летний подросток, если ты любишь читать и общаться на разные темы. Книжный клуб бесплатный и к нему не нужно готовиться заранее.</p><p>На встрече мы все вместе читаем/слушаем короткий текст на русском языке, а потом разговариваем об этом тексте и просто о жизни. Каждый участник имеет право высказать то, что он думает, или просто послушать других, думая о своём.</p><p>В осеннем сезоне 2023 встречи книжного клуба проходят три раза в месяц <strong>по субботам с 12 до 13:30.</strong></p><p> <strong>Место встреч:</strong> Robohuone, Tikkurilan kirjasto.</p><p> <strong>Даты встреч:</strong> 2, 9 и 23 сентября </p><p> 7, 21 и 28 октября</p><p> 4, 11 и 18 ноября</p><p> 2, 9 и 16 декабря</p><p>Ведущие клуба: переводчик с английского Анастасия Басова и детский писатель Анна Анисимова.</p><p>Photo by <a href=\"https://unsplash.com/@tommyskywalker?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Qihao Wang</a> on <a href=\"https://unsplash.com/photos/BEeC31IpMEg?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Unsplash</a></p>" }, "name": { "ru": "Книжный клуб для подростков" }, "provider_contact_info": null, "location_extra_info": { "ru": "Robohuone, Tikkurilan kirjasto." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266731/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267869", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3914, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-06T17:28:59.491907Z", "last_modified_time": "2023-09-06T17:28:59.491927Z", "url": "https://www.helmet.fi/download/noname/{B0A5FD87-1203-428C-9004-4F68676506FD}/105659", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3914/?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-06T17:28:58.572422Z", "last_modified_time": "2023-10-24T08:24:06.189451Z", "date_published": "2023-09-06T16:00:00Z", "start_time": "2023-09-23T09:30:00Z", "end_time": "2023-09-23T10: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": "pikkuli laululeikkishow 23.9. lummesalissa tikkurilan kirjastolla" }, "info_url": null, "description": { "fi": "<p>Tervetuloa laulamaan ja leikkimään yhdessä Pikkulin kanssa Lummesaliin Tikkurilan kirjastotalon 1. kerroksessa! Pikkuli touhuaa mukana koko shown ajan. Saamme kuulla esimerkiksi millaisia kavereita Pikkulilla on ja mitä he tykkäävät leikkiä yhdessä.</p><p>Osallistavan esityksen lauluista ja leikityksestä vastaavat Pikkulin lisäksi Pikkulin tekijät Metsämarja ja Antti Aittokoski.</p><p>Tapahtuman mahdollistaa aluehallintoviraston rahoittama <em>Makuja kielelle – lukuintoa lapsiperheille</em> -hanke. Tapahtumaan on vapaa pääsy.</p><p>Kuva: Pasi Leino<br> Asiasana: lastenkulttuuri</p>" }, "name": { "fi": "Pikkulin Laululeikki-show" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lummesali, Tikkurilan kirjaston ala-aula" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267869/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264963", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2893, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:06.083504Z", "last_modified_time": "2023-08-15T15:34:06.083527Z", "url": "https://www.helmet.fi/download/noname/{6A3244E3-26B8-416C-AB80-86A803D047BC}/90824", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2893/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:38:39.701855Z", "last_modified_time": "2023-10-24T07:24:55.095553Z", "date_published": "2023-08-08T13:02:00Z", "start_time": "2023-09-23T08:00:00Z", "end_time": "2023-09-23T09: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 lukukoira Freialle!" }, "info_url": null, "description": { "fi": "<p>Tule tapaamaan kirjaston parasta kuuntelijaa, lukukoira Freiaa.</p><p>Lukukoira pitää kovasti siitä, kun sille luetaan ja sitä rapsutetaan. Freian turkki on tosi pehmeä ja sillä on iloinen ja rauhallinen luonne.</p><p>Kaikki tarinat ja lukemisen Freia palkitsee hännän heilutuksella.</p><p>Freian tapaat lauantaisin 9.9., 23.9., 30.9., 21.10., 4.11., 18.11. ja 2.12. klo 11-12.</p><p>Freia tutustuu mieluiten yli 5-vuotiaisiin...</p>" }, "name": { "fi": "Lukukoira Freia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264963/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:260534", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:09.862678Z", "last_modified_time": "2024-02-06T13:38:39.450870Z", "url": "https://www.helmet.fi/download/noname/{B92373FF-BD23-428F-B5E2-D3E9EC134C70}/93620", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2791/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:38:39.059762Z", "last_modified_time": "2023-10-24T06:23:29.785114Z", "date_published": "2022-12-12T22:00:00Z", "start_time": "2023-09-23T08:00:00Z", "end_time": "2023-09-23T08: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": "Tervetuloa virittäytymään tarinoiden taajuudelle!" }, "info_url": null, "description": { "fi": "<p>Munkan kirjastossa virittäydytään taas tarinoiden taajudelle, kun satutuokio pyörähtää käyntiin tuttuun tapaan lauantaina klo 11:00. Satutuokio on suunnattu erityisesti 3 - 6-vuotiaille, mutta kaikki sadunnälkäiset ovat tottakai tervetulleita kuuntelemaan!</p>" }, "name": { "fi": "Satutuokio lauantaisin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260534/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267626", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10829/?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": 3854, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-04T10:28:58.256383Z", "last_modified_time": "2023-09-04T10:28:58.256409Z", "url": "https://www.helmet.fi/download/noname/{2F7E7540-BA66-4C7A-B34A-D0CB5E90A729}/105522", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3854/?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-04T10:28:58.117166Z", "last_modified_time": "2023-10-24T06:23:29.685481Z", "date_published": "2023-09-04T08:51:00Z", "start_time": "2023-09-23T07:30:00Z", "end_time": "2023-09-23T08: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 3-6-vuotiaat ja heidän aikuisensa satujen maailmaan helppojen joogaliikkeiden saattelemana! Ilmoittaudu mukaan!" }, "info_url": null, "description": { "fi": "<p>Sukelletaan satujen maailmaan helppojen joogaliikkeiden saattelemana.</p><p>Tunti on suunnattu 3-6-vuotialle ja heidän aikuiselleen. (Huom. näissä tuokioissa myös aikuiset osallistuvat!)</p><p>Voit ilmoittautua mukaan Oulunkylän kirjastossa tai sähköpostilla iri.myller@hel.fi.</p><p>Kuva: pixabay.com / RealMotion</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Oulunkylan_kirjasto\">Oulunkylän kirjasto</a> </p>" }, "name": { "fi": "Satujoogaa perheille" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267626/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agfvxs3fxe", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/1/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "" }, "description": null, "price": null } ], "data_source": "helsinki", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 5591, "has_user_editable_resources": true, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-23T09:08:08.542440Z", "last_modified_time": "2024-07-09T06:40:41.120980Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/ahma_BbGduv8.jpg", "name": "Ahma on karhun serkku", "cropping": "382,0,1898,1517", "photographer_name": "", "alt_text": "Ahma makaa selällään", "data_source": "helsinki", "publisher": "ahjo:00001", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5591/?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-10-23T09:08:58.435390Z", "last_modified_time": "2023-10-23T10:50:09.651953Z", "date_published": null, "start_time": "2023-01-01T10:00:00Z", "end_time": "2023-12-31T13:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "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": "2023-01-01T12:00:00+02:00", "enrolment_end_time": "2023-12-31T12:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "Ilmoittautumisen testaaminen" }, "info_url": { "fi": "" }, "description": { "fi": "<p>Ilmoittautumisen testaaminen</p>" }, "name": { "fi": "Ilmoittautumisen testaaminen" }, "provider_contact_info": null, "location_extra_info": { "fi": "" }, "provider": { "fi": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agfvxs3fxe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269207", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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": 5034, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-05T13:02:59.589926Z", "last_modified_time": "2023-10-05T13:02:59.589952Z", "url": "https://www.helmet.fi/download/noname/{16B5F7A1-372F-40D2-A541-B9B38137C254}/106507", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5034/?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-10-05T13:02:59.421892Z", "last_modified_time": "2023-10-21T17:24:59.467480Z", "date_published": "2023-10-05T11:30:00Z", "start_time": "2023-10-21T15:30:00Z", "end_time": "2023-10-21T17: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": "Liity mukaan juhlistamaan Pointin 10-vuotista taivalta!" }, "info_url": null, "description": { "fi": "<p>Liity mukaan juhlistamaan Pointin 10-vuotista taivalta! Tämä iloinen tilaisuus on järjestetty yhteistyössä Nuori Espoon osallisuusryhmän kanssa. Luvassa on herkullista tarjoiluja, mahtavaa musiikkia ja pieniä kilpailuja!</p><p>Tapahtuma on suunnattu 12-20-vuotiaille nuorille ja se on täysin maksuton sekä päihteetön. Sisäänkäynti tapahtumaan on Sellosalin puolelta.</p><p>Nähdään Nuortentila Pointissa. Tervetuloa mukaan juhlimaan!🎈 #PointinSynttärit</p><p>Kuva: <a href=\"https://www.pexels.com/fi-fi/kuva/hauska-juhlinta-syntymapaiva-onnellisuus-5805042/\">Tima Miroshnichenko</a></p>" }, "name": { "fi": "Pointin 10v. syntymäpäiväjuhlat" }, "provider_contact_info": null, "location_extra_info": { "fi": "Nuortentila Pointti" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269207/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269731", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "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": 5495, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-17T13:46:32.451422Z", "last_modified_time": "2023-10-17T13:46:32.451452Z", "url": "https://www.helmet.fi/download/noname/{9622999C-727A-4DE7-A55E-5BDB23F8376F}/106847", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5495/?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-17T13:46:31.863033Z", "last_modified_time": "2023-10-21T14:25:15.549088Z", "date_published": "2023-10-17T11:15:22.737000Z", "start_time": "2023-10-21T08:00:00Z", "end_time": "2023-10-21T10: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": "Digiopastusta. Apua digiasioiden kanssa." }, "info_url": null, "description": { "fi": "<h3>Lauantaina 21.10. klo 11-13 aulassa</h3></p><p>Digiopastusta. Apua digiasioiden kanssa. Otathan mukaan oman mobiililaitteesi ja pankkitunnuksesi.</p><p>Lisätietoja nordea.fi/digineuvonta</p>" }, "name": { "fi": "Nordea tarjoaa digiopastusta" }, "provider_contact_info": null, "location_extra_info": { "fi": "aula" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269731/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269118", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8178/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?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:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p6165/?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": 4995, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-03T12:46:24.890198Z", "last_modified_time": "2023-10-03T12:46:24.890218Z", "url": "https://www.helmet.fi/download/noname/{BA6ACD13-A4AC-4FB7-A9AC-C81138D04C7D}/106406", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4995/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-10-03T12:46:24.665251Z", "last_modified_time": "2023-10-21T12:24:55.753527Z", "date_published": "2023-10-03T11:51:00Z", "start_time": "2023-10-21T10:00:00Z", "end_time": "2023-10-21T11: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": "Mainio Pelle Moo esiintyy Kontulan kirjaston lastenpuolella." }, "info_url": null, "description": { "fi": "<p>Moi kaverit!<br><br> Mä oon se legendaarinen pelle nimeltä Moo, ja oon täällä tuomassa teille ripauksen iloa ja naurua!<br><br> Mä puhun suomea esitysten aikana, mutta heitän mukaan myös muutamia sanoja arabiaa, turkkia, somaliaa ja englantia. <br><br> Esityksen jälkeen jaan ilmapalloja esitykseen osallistuneille lapsille ja lapsenmielisille. <br><br> Tule mukaan naurun ja ilon maailmaan! </p><p>Esitys sopii kaikenikäisille. Vapaa pääsy. </p><p>***</p><p>Pelle Moo eli Mohammad Manla on helsinkiläinen, syyrialaistaustainen teatteritaiteilija, klovni, näyttelijä ja koulunkäyntiavustaja.<br><br> Pelle Moo on esiintynyt mm. vastaanottokeskuksissa Turkissa ja Kreikassa ja monissa eri tapahtumissa Suomessa. </p><p>Kuva: moo-clown.com<br><br> </p>" }, "name": { "fi": "Pelle Moo Kontulan kirjastossa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269118/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60651", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": 4046, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:54.241957Z", "last_modified_time": "2023-09-07T14:19:54.241982Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730526.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4046/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:53.664639Z", "last_modified_time": "2023-10-19T20:13:28.760161Z", "date_published": null, "start_time": "2023-08-20T10: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": "Suomen Taidetanssin tuki ry, tanssiesitykset kello 13.00 ja 15.00.", "sv": "Suomen Taidetanssin tuki ry, dansföreställningar kl 13.00 och 15.00.", "en": "Suomen Taidetanssin tuki ry, dance performances at 1 pm. and 3 pm." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F118DEB5B720C99D279CDD363A77578B/Tanssikeskus_Footlight", "sv": "http://www.espanlava.fi/sv/evenemang/event/F118DEB5B720C99D279CDD363A77578B/Tanssikeskus_Footlight", "en": "http://www.espanlava.fi/en/events/event/F118DEB5B720C99D279CDD363A77578B/Tanssikeskus_Footlight" }, "description": { "fi": "<p>Suomen Taidetanssin tuki ry, tanssiesitykset kello 13.00 ja 15.00.</p>", "sv": "<p>Suomen Taidetanssin tuki ry, dansföreställningar kl 13.00 och 15.00.</p>", "en": "<p>Suomen Taidetanssin tuki ry, dance performances at 1 pm. and 3 pm.</p>" }, "name": { "fi": "Tanssikeskus Footlight", "sv": "Tanssikeskus Footlight", "en": "Tanssikeskus Footlight" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60651/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59799", "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:105/?format=api" }, { "@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" }, { "@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": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4045, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:53.280565Z", "last_modified_time": "2023-09-07T14:19:53.280589Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730190.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4045/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:19:53.138696Z", "last_modified_time": "2023-10-18T20:30:08.106416Z", "date_published": null, "start_time": "2023-08-19T12:00:00Z", "end_time": "2023-08-19T13: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": "Naattiorkesterin mukaansatempaavalla musiikkimatkalla lounastetaan Loiskiaisen kanssa, ampaistaan avaruuteen asti ja mennään metsään mietiskelemään.", "sv": "Naattiorkesteris medryckande musikresa tar med publiken på en lunch med Loiskiainen, en utflykt i raketfart ända upp i rymden och meditation i skogen.", "en": "On the Naattiorkesteri band’s magical musical journey, you will have lunch with the creature they call Loiskiainen, fly up to space and head to the forest for some reflection." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/94E0CE7EBF318CB943F235C2BE7A2C94/Naattiorkesteri", "sv": "http://www.malmitalo.fi/sv/evenemang/event/94E0CE7EBF318CB943F235C2BE7A2C94/Naattiorkesteri", "en": "http://www.malmitalo.fi/en/events/event/94E0CE7EBF318CB943F235C2BE7A2C94/Naattiorkesteri" }, "description": { "fi": "<p>Naattiorkesterin mukaansatempaavalla musiikkimatkalla lounastetaan Loiskiaisen kanssa, ampaistaan avaruuteen asti ja mennään metsään mietiskelemään.</p><p>Joskus sanat sekoittuvat suussa suhmuraksi ja pissahätäkin voi yhtäkkiä yllättää. Yhtyeen sanoitukset kumpuavat lasten maailmasta, jossa kaikki on mahdollista!</p><p>Soveltuu kaikenikäisille. Konsertin kieli on suomi.</p><p>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "sv": "<p>Naattiorkesteris medryckande musikresa tar med publiken på en lunch med Loiskiainen, en utflykt i raketfart ända upp i rymden och meditation i skogen.</p><p>Ibland blir orden en enda röra i munnen och det händer väl också att man blir akut kissnödig mitt i allt. Orkesterns låttexter hämtar inspiration från barnens värld där allt kan hända!</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "en": "<p>On the Naattiorkesteri band’s magical musical journey, you will have lunch with the creature they call Loiskiainen, fly up to space and head to the forest for some reflection.</p><p>Sometimes words will get jumbled up in your mouth, and you may even unexpectedly have to pee. The band’s lyrics are derived from the world of children where everything is possible!</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "name": { "fi": "Naattiorkesteri – Malmin tapahtumakesä", "sv": "Naattiorkesteri – Malms evenemangssommar", "en": "Naattiorkesteri – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59799/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60398", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4042, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:52.055385Z", "last_modified_time": "2023-09-07T14:19:52.055407Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730189.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4042/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:51.662847Z", "last_modified_time": "2023-10-18T20:30:05.818265Z", "date_published": null, "start_time": "2023-08-19T10: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": "Oma laulusi on konsertti 0–100-vuotiaille.", "sv": "Oma laulusi är en konsert för alla mellan 0 och 100 år.", "en": "The ‘Oma laulusi’ concert is intended for people of all ages." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/46AB99E332C6D65E88591B3142429025/Siivet_ry_Oma_laulusi_-konsertti_ja_tyopaja_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/46AB99E332C6D65E88591B3142429025/Siivet_ry_Konsert_och_verkstad_Oma_laulusi", "en": "http://www.malmitalo.fi/en/events/event/46AB99E332C6D65E88591B3142429025/Siivet_ry_Oma_laulusi_-_Concert_and_workshop" }, "description": { "fi": "<p>Oma laulusi on konsertti 0–100-vuotiaille.</p><p>Siivet ry tarjoaa energisen ja välillä pehmeästi sointuvan musiikki-, laulu- rytmi- ja afrikkalaistanssin esityksen. Esitys huipentuu workshoppiin esityksen jälkeen. Lapset vanhempineen saavat tulla tekemään omia laulujaan traditionaalisen goni-soittimen säestyksellä omalla kielellään. Kokeilemme myös suomalaista perinnelaulua afrikkalaiseen musiikkiin.</p><p>Esiintyjät: Pitkän linjan tanssi- sekä kuvataiteilija ja muusikko Sanna Karlsson-Sutisna Suomesta ja muusikko-tanssija Lassina Ouattara Burkina Fasosta.</p><p>Valokuvaaja: Anni Sirkka</p><p>Soveltuu kaikenikäisille. Ohjaus suomeksi. <br>Vapaa pääsy</p>", "sv": "<p>Oma laulusi är en konsert för alla mellan 0 och 100 år.</p><p>Siivet ry serverar en energisk och emellanåt mjukt klingande föreställning med musik, sång, rytm och afrikansk dans. Föreställningen kulminerar i en workshop efteråt. Barnen och deras föräldrar är välkomna att skapa egna låtar på sitt eget språk till det traditionella instrumentet ngoni. Vi testar också på finländsk traditionssång till afrikansk musik.</p><p>Språk: finska</p>", "en": "<p>The ‘Oma laulusi’ concert is intended for people of all ages.</p><p>Siivet ry provides an energetic yet gentle performance of African music, song, rhythm and dance. As a cherry on top, a workshop will be held after the performance. Children and their parents can come and make their own songs accompanied by the traditional ngoni instrument in their own language. We will also try traditional Finnish signing to traditional music.</p><p>Language of instruction: Finnish</p>" }, "name": { "fi": "Siivet ry: Oma laulusi -konsertti ja työpaja – Malmin tapahtumakesä", "sv": "Siivet ry: Konsert och verkstad Oma laulusi – Malms evenemangssommar", "en": "Siivet ry: Oma laulusi - Concert and workshop – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60398/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59951", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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": 4044, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:52.913935Z", "last_modified_time": "2023-09-07T14:19:52.913955Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731864.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4044/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:52.762923Z", "last_modified_time": "2023-10-18T20:30:03.801205Z", "date_published": null, "start_time": "2023-08-19T10:00:00Z", "end_time": "2023-08-19T11: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": "Gabriella ja Kristian Presnalin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.", "sv": "Gabriella och Kristian Presnals utställnings guidning tolkas på finskt teckenspråk.", "en": "A guided tour of Gabriella and Kristian Pesnals exhibition interpreted into Finnish sign language." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/07E8BFBAED439BD2A2658E7EFB67BD95/Viittomakielinen_opastus_Emergent_Properties", "sv": "http://www.caisa.fi/sv/evenemang/event/07E8BFBAED439BD2A2658E7EFB67BD95/Guidning_pa_teckensprak_Emergent_Properties", "en": "http://www.caisa.fi/en/events/event/07E8BFBAED439BD2A2658E7EFB67BD95/Sign_language_tour_Emergent_Properties" }, "description": { "fi": "<p>Gabriella ja Kristian Presnalin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.</p><p>Opastus järjestetään yhteistyössä Ursa Minorin kanssa. Oppaana Aino Laiho.</p><p>Termiä emergentit ominaisuudet käytetään biologiassa ja muilla aloilla kuvaamaan, kuinka järjestelmän yksittäiset osat eivät riitä selittämään, miten koko järjestelmä toimii, kuten ihmiskeho elimineen.</p><p>Tämä tarjoaa myös vertauskuvan siitä, miten alamme ymmärtää omaa identiteettiämme.</p><p>Näyttelyn teoksia ovat inspiroineet taiteilijasisarusten Gabriella ja Kristian Presnalin tekemät haastattelut. Kaksikko esittelee taiteellista tutkimustaan ja havainnollistaa videon, valokuvauksen ja maalauksen avulla Uudenmaan queer-nomadien kertomia tarinoita.</p><p>Suomalais-amerikkalaiset taiteilijasisarukset ovat asuneet Suomessa viimeiset kuusi vuotta. Sitä ennen he ovat asuneet Kanadassa ja useissa Yhdysvaltojen osavaltioissa sekä Ruotsissa.</p>", "sv": "<p>Gabriella och Kristian Presnals utställnings guidning tolkas på finskt teckenspråk.</p><p>Termen framväxande egenskaper används inom biologi och andra områden för att beskriva hur enskilda delar av ett system inte räcker till för att veta hur hela systemet fungerar, liksom organen i en kropp. Detta ger också en analogi till hur vi börjar förstå våra identiteter.</p><p>Detta ger också en analogi till hur vi börjar förstå våra identiteter.</p><p>Verken i denna utställning har inspirerats av intervjuer gjorda av konstnärssyskonen Gabriella och Kristian Presnal. Duon presenterar sin konstnärliga forskning med hjälp av video, fotografi och måleri för att illustrera berättelserna som berättas av queernomader bosatta i Nyland.</p><p>De finsk-amerikanska konstnärssyskonen har bott i Finland de senaste sex åren. Under sin barndom har de bott i Kanada, flera delstater i USA och i Sverige.</p>", "en": "<p>A guided tour of Gabriella and Kristian Pesnals exhibition interpreted into Finnish sign language.</p><p>The term emergent properties is used in biology as well as other fields to describe how isolated individual parts of a system are not enough to know how the entire system itself functions, like organs in a body.</p><p>This also offers an analogy on how we begin to understand our identities as well. The works within this exhibition are inspired by interviews conducted by the pair of artist siblings, Gabriella and Kristian Presnal. The duo presents their artistic research using video, photography, and painting to illustrate the stories told by queer nomadic persons living in Uusimaa.</p><p>The artist siblings are Finnish-American and have lived in Finland for the past 6 years. Previously in their childhood they lived in Canada; multiple states in the U.S., and Sweden.</p>" }, "name": { "fi": "Viittomakielinen opastus: Emergent Properties", "sv": "Guidning på teckenspråk: Emergent Properties", "en": "Sign language tour: Emergent Properties" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59951/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }