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&include=location%2Ckeywords&page=800
{ "meta": { "count": 32755, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=801", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=799" }, "data": [ { "id": "kulke:61171", "has_user_editable_resources": false, "location": { "id": "tprek:7255", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:12:15.976796Z", "last_modified_time": "2025-03-27T09:09:26.704708Z", "custom_data": null, "email": "kanneltalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 559, "image": 414654, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.876202, 60.23885 ] }, "telephone": { "fi": "+358 40 822 8918" }, "street_address": { "fi": "Klaneettitie 5", "sv": "Klarinettvägen 5", "en": "Klaneettitie 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.kanneltalo.fi/", "sv": "https://www.kanneltalo.fi/sv/framsidan", "en": "https://www.kanneltalo.fi/en/frontpage" }, "description": { "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.", "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.", "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre." }, "name": { "fi": "Kanneltalo", "sv": "Gamlasgården", "en": "Cultural Centre Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:41", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.583027Z", "last_modified_time": "2024-02-06T13:19:13.977719Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 554, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:596", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:59.781294Z", "last_modified_time": "2024-02-06T13:19:16.916968Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 325, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 11074, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-27T13:13:55.984305Z", "last_modified_time": "2024-02-27T13:13:55.984322Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738198.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11074/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-27T13:13:55.956511Z", "last_modified_time": "2024-06-12T05:13:17.647910Z", "date_published": null, "start_time": "2024-05-06", "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": "Työväenopiston kevätnäyttelyssä teemana on pelien ja leikkien rooli kulttuurissa.", "sv": "Temat för Arbetarinstitutets vårutställning är spelens och lekarnas roll i kulturen.", "en": "The theme of the Helsinki Finnish Adult Education Centre spring exhibition is the role of play and games in culture." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/396A03330327421558A3315D474C0637/L-E-I-K-K-I", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/396A03330327421558A3315D474C0637/L-E-I-K-K-I_", "en": "http://www.kanneltalo.fi/en/events/event/396A03330327421558A3315D474C0637/L-E-I-K-K-I_P-L-A-Y_" }, "description": { "fi": "<p>Työväenopiston kevätnäyttelyssä teemana on pelien ja leikkien rooli kulttuurissa.</p><p>Esillä on kuvataidekurssilaisten eri tekniikoin tekemiä maalauksia, piirustuksia, grafiikkaa, veistoksia ja keramiikkaa.</p><p>Vapaa pääsy</p>", "sv": "<p>Temat för Arbetarinstitutets vårutställning är spelens och lekarnas roll i kulturen.</p><p>Bildkonstkursens vårutställning presenterar kursdeltagarnas målningar, ritningar, grafik, skulpturer och keramik.</p>", "en": "<p>The theme of the Helsinki Finnish Adult Education Centre spring exhibition is the role of play and games in culture.</p><p>Artworks created by the students using various techniques (paintings, drawings, graphic art, sculptures and ceramics) are showcased.</p>" }, "name": { "fi": "L-E-I-K-K-I – Työväenopiston kevätnäyttely", "sv": "L-E-I-K-K-I – Arbetarinstitutets vårutställning", "en": "L-E-I-K-K-I (P-L-A-Y) – Spring exhibition of Helsinki Finnish Adult Education Centre" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61171/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61562", "has_user_editable_resources": false, "location": { "id": "tprek:7256", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori", "municipality": "Helsinki", "name": { "fi": "Vilhonvuori", "sv": "Vilhemsberg" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen", "municipality": "Helsinki", "name": { "fi": "Sörnäinen", "sv": "Sörnäs" } } ], "created_time": "2023-08-15T08:12:16.104501Z", "last_modified_time": "2026-02-13T06:09:13.632215Z", "custom_data": null, "email": "caisa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 594, "image": 414655, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.959616, 60.183193 ] }, "telephone": { "fi": "+358 9 310 80008" }, "street_address": { "fi": "Kaikukatu 4, Helsinki", "sv": "Ekogatan 4, Helsinki", "en": "Kaikukatu 4, Helsinki" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.caisa.fi/fi/etusivu", "sv": "https://www.caisa.fi/sv/framsidan", "en": "https://www.caisa.fi/en/frontpage" }, "description": { "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.", "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.", "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent." }, "name": { "fi": "Caisa", "sv": "Caisa", "en": "Cultural Centre Caisa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:47", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.667596Z", "last_modified_time": "2024-02-06T13:19:14.083984Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 618, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Caisa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 7539, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-02T15:13:30.086793Z", "last_modified_time": "2024-02-06T13:23:40.045179Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741286.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7539/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-02T15:13:30.063554Z", "last_modified_time": "2024-06-12T05:13:17.037199Z", "date_published": null, "start_time": "2024-05-04T07:00:00Z", "end_time": "2024-05-25T16: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": "Hong Liu-Serttin Kalevalan Metsä -näyttely tutkii kiinalaisen ja suomalaisen kulttuurin vuorovaikutusta.", "sv": "Hong Liu-Serttis utställning Kalevalan Metsä undersöker samspelet mellan de kinesiska och finländska kulturerna.", "en": "The Forest of Kalevala exhibition by Hong Liu-Sertti is an artistic journey that explores the interaction between Chinese and Finnish cultures." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/27A3AFA063694B458656B4C7D6881EA5/Hong_Liu-Sertti_Kalevalan_Metsa_", "sv": "http://www.caisa.fi/sv/evenemang/event/27A3AFA063694B458656B4C7D6881EA5/Hong_Liu-Sertti_Kalevalaskogen", "en": "http://www.caisa.fi/en/events/event/27A3AFA063694B458656B4C7D6881EA5/Hong_Liu-Sertti_The_Forest_of_Kalevala" }, "description": { "fi": "<p>Hong Liu-Serttin Kalevalan Metsä -näyttely tutkii kiinalaisen ja suomalaisen kulttuurin vuorovaikutusta.</p><p>Tämä on Liu-Serttin neljäs Kalevala-näyttely, joka perustuu kolmeen aiempaan ja esittelee uusia teoksia. Yhdessä aiempien näyttelyiden teosten kanssa mukana on yhteensä 64 Kalevala-maalausta.</p><p>Hong Liu-Sertti valaisee kauniisti suhdetta ihmisten ja luonnon välillä, tavoitteenaan edesauttaa arvostusta kulttuurien välillä ja rohkaista pohtimaan yleismaailmallisia arvoja.</p><p>Kansalliseepoksesta inspiroitunut näyttely kutoo yhteen fantastisia kohtauksia ja luonnon mystiikkaa. Se kutsuu sinut pohtimaan ihmisen olemassaolon ydintä.</p><p>Koe perinteisten kiinalaisten tekniikoiden ja nykytaiteen sulautuminen. Monikulttuurisen ilmaisun rikas kudelma resonoi sukupolvelta toiselle.</p>", "sv": "<p>Hong Liu-Serttis utställning Kalevalan Metsä undersöker samspelet mellan de kinesiska och finländska kulturerna.</p><p>Detta är Liu-Serttis fjärde Kalevala-utställning, som baserar sig på de tre tidigare utställningarna och presenterar nya verk. Det finns sammanlagt 64 Kalevala-målningar, inräknat verken från de tidigare utställningarna.</p>", "en": "<p>The Forest of Kalevala exhibition by Hong Liu-Sertti is an artistic journey that explores the interaction between Chinese and Finnish cultures.</p><p>Liu-Sertti’s fourth Kalevala-themed exhibition builds upon her three previous ones and features new pieces. Combined with the works from the previous exhibitions, a total of 64 Kalevala-themed paintings are included.</p>" }, "name": { "fi": "Hong Liu-Sertti: Kalevalan Metsä", "sv": "Hong Liu-Sertti: Kalevalaskogen", "en": "Hong Liu-Sertti: The Forest of Kalevala" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61562/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61568", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:288", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.310840Z", "last_modified_time": "2024-02-06T13:19:14.904029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 50, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muotoilu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 984, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:734", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.481605Z", "last_modified_time": "2024-02-06T13:19:17.895814Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 254, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Nuorille" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25966", "has_user_editable_resources": false, "alt_labels": [ "ekodesign", "sustainable design", "ekologinen muotoilu", "kestävä muotoilu", "ekologisk design", "hållbar design" ], "created_time": "2023-08-16T05:10:50.676134Z", "last_modified_time": "2023-08-16T05:10:50.676153Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 50, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ekomuotoilu", "sv": "ekodesign", "en": "ecological design" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 7019, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-05T14:13:21.390516Z", "last_modified_time": "2024-02-06T13:23:39.756582Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741415.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7019/?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": "2024-01-05T14:13:21.368187Z", "last_modified_time": "2024-06-12T05:13:16.659139Z", "date_published": null, "start_time": "2024-05-03", "end_time": "2024-06-02", "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": "SOS-Lapsikyläsäätiön valokuvanäyttely Oikeus Unelmoida - nuorten elämää Gambiassa esittelee yhdeksän nuoren tarinan heidän itsensä kertomana.", "sv": "SOS Barnbystiftelsens fotoutställning Rätt att drömma – ungdomars liv i Gambia presenterar nio ungdomars historia berättade av dem själva.", "en": "A photography exhibition by SOS Children’s Village Foundation, The Right to Dream – the Lives of Young People in the Gambia presents the stories of nine young people as told by themselves." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/835D82536F7A599FD28CB8F0237B655D/Oikeus_unelmoida_Nuorten_elamaa_Gambiassa", "sv": "http://www.stoa.fi/sv/evenemang/event/835D82536F7A599FD28CB8F0237B655D/Ratt_att_dromma_ungdomars_liv_i_Gambia", "en": "http://www.stoa.fi/en/events/event/835D82536F7A599FD28CB8F0237B655D/The_Right_to_Dream_the_Lives_of_Young_People_in_the_Gambia" }, "description": { "fi": "<p>SOS-Lapsikyläsäätiön valokuvanäyttely Oikeus Unelmoida - nuorten elämää Gambiassa esittelee yhdeksän nuoren tarinan heidän itsensä kertomana.</p><p>Nämä nuoret kertovat millaista on elää maassa, jonka kouluttautumis- ja työllistymismahdollisuudet ovat huonot ja pakolaisuus nähdään usein lähes ainoana reittinä parempaan elämään. He kertovat myös toiveistaan ja unelmistaan, sekä siitä kuinka pienistä asioista lähteminen tai jääminen voi riippua. SOS-Lapsikylän tuella kaikki nuoret ovat voineet kouluttautua ammattiin, josta he saavat toimeentuloa ja merkitystä elämään. Vaikeuksista huolimatta nuoret uskovat toisiinsa ja parempaan tulevaisuuteen.</p><p>2,6 miljoonan asukkaan Gambia on yksi Länsi-Afrikan pienimmistä valtioista. Noin 40 prosenttia väestöstä elää köyhyysrajan alapuolella ja harvalla nuorella on mahdollisuus kouluttautua tai työllistyä kotimaassaan. Pienestä väkiluvusta huolimatta gambialaiset näkyvät yliedustettuna Eurooppaan saapuvien pakolaisten joukossa. SOS-Lapsikylän kehitysyhteistyöhanke tukee haavoittuvassa asemassa olevien nuorten koulutusta ja työelämään pääsemistä.</p><p>Näyttelyn kuvat ja haastattelut: Veera Lehto-Michaud</p>", "sv": "<p>SOS Barnbystiftelsens fotoutställning Rätt att drömma – ungdomars liv i Gambia presenterar nio ungdomars historia berättade av dem själva.</p><p>Dessa ungdomar berättar hur det är att leva i ett land med dåliga möjligheter till utbildning och sysselsättning, där flyktinglivet ofta betraktas som nästan den enda vägen till ett bättre liv. De berättar också om sina önskemål och drömmar. Trots svårigheterna tror ungdomarna på varandra och på en bättre framtid.</p>", "en": "<p>A photography exhibition by SOS Children’s Village Foundation, The Right to Dream – the Lives of Young People in the Gambia presents the stories of nine young people as told by themselves.</p><p>The young people tell what it’s like to live in a country with poor educational and employment opportunities where becoming a refugee is often seen as the only route to a better life. They also share their hopes and dreams. Despite the difficulties, the young people believe in each other and a better future.</p>" }, "name": { "fi": "Oikeus unelmoida – Nuorten elämää Gambiassa", "sv": "Rätt att drömma – ungdomars liv i Gambia", "en": "The Right to Dream – the Lives of Young People in the Gambia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61568/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63361", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 763, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 800, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:668", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.216840Z", "last_modified_time": "2024-02-06T13:19:17.518130Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 102, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Design ja käsityö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1377", "has_user_editable_resources": false, "alt_labels": [ "design", "planning" ], "created_time": "2023-08-16T05:19:46.752636Z", "last_modified_time": "2023-08-16T05:19:46.752653Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 102, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "suunnittelu", "sv": "planering", "en": "planning and design" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p485", "has_user_editable_resources": false, "alt_labels": [ "handarbete", "hantverk", "handarbete och hantverk (arbete)", "hantverk och handarbete (aktivitet)" ], "created_time": "2023-08-16T05:19:43.703641Z", "last_modified_time": "2023-08-16T05:19:43.703658Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 86, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "käsityö (toiminta)", "sv": "handarbete och hantverk (aktivitet)", "en": "handcrafting" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6455", "has_user_editable_resources": false, "alt_labels": [ "design", "design", "design" ], "created_time": "2023-08-16T05:18:25.621979Z", "last_modified_time": "2023-08-16T05:18:25.621998Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 158, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "muotoilu", "sv": "formgivning", "en": "design (artistic creation)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 148995, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-15T06:13:29.122272Z", "last_modified_time": "2024-04-15T06:13:29.122287Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749239.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/148995/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-15T06:13:29.083296Z", "last_modified_time": "2024-06-12T05:13:16.510225Z", "date_published": null, "start_time": "2024-05-02", "end_time": "2024-05-31", "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": "Mikä on pehmeä veistos? Tule katsomaan koskettavia, uljaita ja humoristisia naisveistoksia. Esillä on myös tekijöiden kertomukset teoksistaan." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/04D88FE44C7CD9041642AF05B9DF306F/Pehmeat_veistokset" }, "description": { "fi": "<p>Mikä on pehmeä veistos? Tule katsomaan koskettavia, uljaita ja humoristisia naisveistoksia. Esillä on myös tekijöiden kertomukset teoksistaan.</p><p>Oman naishahmon suunnittelu ja valmistaminen on osa käsityön taiteen perusopetuksen syventävien opintojen ryhmän kevään 2024 opintoja. Kurssin alussa tutustuttiin ja perehdyttiin taidehistorian kautta erilaisiin naiskuviin ja- veistoksiin, leivottiin naispullia ja harjoiteltiin hahmon ja asennon piirtämistä.</p><p>Vitriininäyttely on esillä Vuotalon 2 kerroksen käytävässä 2.-31.5.2024</p><p>Opintokokonaisuutta järjestää Helsingin työväenopisto.</p>" }, "name": { "fi": "Pehmeät veistokset" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63361/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63405", "has_user_editable_resources": false, "location": { "id": "tprek:7255", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:12:15.976796Z", "last_modified_time": "2025-03-27T09:09:26.704708Z", "custom_data": null, "email": "kanneltalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 559, "image": 414654, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.876202, 60.23885 ] }, "telephone": { "fi": "+358 40 822 8918" }, "street_address": { "fi": "Klaneettitie 5", "sv": "Klarinettvägen 5", "en": "Klaneettitie 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.kanneltalo.fi/", "sv": "https://www.kanneltalo.fi/sv/framsidan", "en": "https://www.kanneltalo.fi/en/frontpage" }, "description": { "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.", "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.", "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre." }, "name": { "fi": "Kanneltalo", "sv": "Gamlasgården", "en": "Cultural Centre Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:41", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.583027Z", "last_modified_time": "2024-02-06T13:19:13.977719Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 554, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:596", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:59.781294Z", "last_modified_time": "2024-02-06T13:19:16.916968Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 325, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 150737, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-23T08:13:00.417102Z", "last_modified_time": "2024-04-23T08:13:00.417117Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749499.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150737/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-23T08:13:00.386388Z", "last_modified_time": "2024-06-12T05:13:16.361494Z", "date_published": null, "start_time": "2024-05-02", "end_time": "2024-05-31", "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": "Kanneltalon kahvilassa esillä Raimo Ketolaisen valokuvia." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BD1990A4A540157B276FF88C15DE6BE2/Kevat_Raimo_Ketolaisen_valokuvanayttely" }, "description": { "fi": "<p>Kanneltalon kahvilassa esillä Raimo Ketolaisen valokuvia.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p><p>Lisätiedot https://www.haagantaideseura.com/</p>" }, "name": { "fi": "Kevät – Raimo Ketolaisen valokuvanäyttely – Haagan Taideseura" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63405/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63173", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 763, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 800, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:596", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:59.781294Z", "last_modified_time": "2024-02-06T13:19:16.916968Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 325, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 11853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-12T11:13:19.661627Z", "last_modified_time": "2024-03-12T11:13:19.661641Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739960.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11853/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-12T11:13:19.632567Z", "last_modified_time": "2024-06-12T05:13:13.403881Z", "date_published": null, "start_time": "2024-04-23T11: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": "Kuka saa määritellä millaisia enkelit ovat ja miltä ne näyttävät? Tätä kysytään Helsingin yliopiston Kenen enkelit? -tutkimushankkeessa, jossa luodaan ja tutkitaan nykyaikaisia mielikuvia enkeleistä.", "sv": "Vem får definiera hurudana änglar är och hur de ser ut? Det här frågar man i Helsingfors universitets undervisningsprojekt Vems änglar?, där man skapar och utforskar moderna uppfattningar om änglar.", "en": "Who gets to define what angels are and what they look like? This is the question asked by the University of Helsinki Whose Angels? research project that creates and explores modern impressions of angels." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C65F889FE4A624B2C79E98DB97F83F56/Kenen_enkelit_-luento_nayttelyprojektista_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C65F889FE4A624B2C79E98DB97F83F56/Vems_anglar_en_forelasning_om_utstallningsprojektet", "en": "http://www.vuotalo.fi/en/events/event/C65F889FE4A624B2C79E98DB97F83F56/Whose_Angels_A_lecture_on_an_exhibition_project" }, "description": { "fi": "<p>Kuka saa määritellä millaisia enkelit ovat ja miltä ne näyttävät? Tätä kysytään Helsingin yliopiston Kenen enkelit? -tutkimushankkeessa, jossa luodaan ja tutkitaan nykyaikaisia mielikuvia enkeleistä.</p><p>Projektiin sisältyvä valokuvataidenäyttely toteutetaan Vuotalossa syksyllä 2024. Näyttelyssä esiteltävistä Hanne Kiiverin teoksista kerätään yleisöpalautetta, jota hyödynnetään tutkimuksessa ja enkelikuvien taiteellisessa jatkotyöstössä. Luennolla esitellään projektia ja tulevaa taidenäyttelyä.</p><p>Tiistaimatineat ovat sarja Vuotalon tiistai-iltapäivien tapahtumia. Tiistaimatineoissa on kuultu mm. kahvikonsertteja ja luentoja lähialueen historiasta.</p><p>Kesto noin 1 tunti<br>Vapaa pääsy</p>", "sv": "<p>Vem får definiera hurudana änglar är och hur de ser ut? Det här frågar man i Helsingfors universitets undervisningsprojekt Vems änglar?, där man skapar och utforskar moderna uppfattningar om änglar.</p><p>Den fotokonstutställning som ingår i projektet genomförs i Nordhuset hösten 2024. Publikens respons samlas in om Hanne Kiiveris verk som presenteras på utställningen och utnyttjas sedan i forskningen och i den fortsatta bearbetningen av änglabilderna. På föreläsningen presenteras projektet och den kommande konstutställningen.</p>", "en": "<p>Who gets to define what angels are and what they look like? This is the question asked by the University of Helsinki Whose Angels? research project that creates and explores modern impressions of angels.</p><p>A photographic art exhibition will be arranged as part of the project at Vuosaari House in the autumn of 2024. Feedback from the audience on Hanne Kiiveri’s works presented in the exhibition will be collected to be used in research and further artistic work on angel images. The lecture presents the project and the upcoming art exhibition.</p>" }, "name": { "fi": "Kenen enkelit? -luento näyttelyprojektista – Tiistaimatinea", "sv": "Vems änglar? – en föreläsning om utställningsprojektet – Tisdagsmatiné", "en": "Whose Angels? – A lecture on an exhibition project" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63173/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63174", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:288", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.310840Z", "last_modified_time": "2024-02-06T13:19:14.904029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 50, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muotoilu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1336, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25966", "has_user_editable_resources": false, "alt_labels": [ "ekodesign", "sustainable design", "ekologinen muotoilu", "kestävä muotoilu", "ekologisk design", "hållbar design" ], "created_time": "2023-08-16T05:10:50.676134Z", "last_modified_time": "2023-08-16T05:10:50.676153Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 50, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ekomuotoilu", "sv": "ekodesign", "en": "ecological design" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 12845, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T13:14:09.125134Z", "last_modified_time": "2024-03-15T13:14:09.125153Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745543.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12845/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T13:14:09.073429Z", "last_modified_time": "2024-06-12T05:13:11.863772Z", "date_published": null, "start_time": "2024-04-18", "end_time": "2024-05-11", "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": "Mahdolliset paratiisit on Ainon ja Annan ensimmäinen yhteinen näyttely. Taiteilijat ovat olleet työhuoneystäviä vuosien ajan, ja ajatus yhteisestä näyttelystä on hautunut jo pitkään.", "sv": "Möjliga paradis är vår första gemensamma utställning. Vi har varit ateljévänner för många år och tanken om en gemensam utställning har mognat redan länge.", "en": "Possible paradises is Aino’s and Anna's first exhibition together. They have been working in the same studio for years, and the idea of exhibiting together has been in their minds for a long time." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/72207505689FAE984A199A97CAA7F786/Mahdolliset_paratiisit_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/72207505689FAE984A199A97CAA7F786/Mojliga_paradis", "en": "http://www.malmitalo.fi/en/events/event/72207505689FAE984A199A97CAA7F786/Possible_paradises" }, "description": { "fi": "<p>Mahdolliset paratiisit on Ainon ja Annan ensimmäinen yhteinen näyttely. Taiteilijat ovat olleet työhuoneystäviä vuosien ajan, ja ajatus yhteisestä näyttelystä on hautunut jo pitkään.</p><p>Näyttelyssä on esillä värikkäitä monotypioita ja sekatekniikkamaalauksia paperille vuosilta 2023–2024.</p><p>Aino ja Anna ammentavat kumpikin taiteen tekemiseen omakohtaisista kokemuksista, arjesta, ihmissuhteista ja ihmisenä olemisesta. Työskentelyssä heitä yhdistää tietynlainen rosoisuus, sattumanvaraisuus ja roiskeisuus: taide, kuten arki, ei tapahdu siistissä laboratoriossa, vaan keskellä elämän ennakoimattomia käänteitä. Teoksissa voi havaita tiettyä sukulaisuutta, ne ovat kuin välähdyksiä samasta maailmasta.</p><p>”Töitä tehdessäni kerron itselleni epämääräistä, juonetonta tarinaa, josta saa melkein selvää ja käyn vuoropuhelua teosten kanssa. Sanallistaminen on epämääräistä ja asiaa kiertävää. Työskentelen pääasiassa monotypian parissa. Monotypia on painaen tehty ainutkertainen teos. Olen kutsunut sitä maalauksen ja taidegrafiikan rakkauslapseksi. Prässistä tulee ihmeellisyyksiä ulos ja mikään aiottu ei enää pädekään. Työ kertoo mitä se tarvitsee ja minä vastaan kutsuun”, <b>Aino Jääskeläinen</b> kertoo.</p><p>”Minua kiinnostaa ihmisen universaali samankaltaisuus kasvikunnan kanssa, soluhengityksen ja yhteyttämisen symmetria ja symbioosi, hermoston ja juuriston samankaltaisuus, verisuonet ja rihmastot, kaikki osana elävää kudosta, joka verhoaa planeettaa. Viimeaikaisissa töissäni on esiintynyt usein ihmishahmo, omakuva, joka ei ole täysin inhimillinen, vaan kuuluu osittain kasvien tai hyönteisten maailmaan.</p><p>Mietin, millä tavoin olemme osana maailmaa lajina lajien joukossa, ja kuinka voisimme kääntää inhimillisen kekseliäisyytemme suojelemaan kaikkea sitä haavoittuvaa elämää, jota olemme tuhoamassa. Voisiko empatia ulottua myös niihin elämänmuotoihin, joiden fysikaaliset ominaisuudet ja tietoisuus ovat erilaisia kuin omamme?”, <b>Anna Seppälä</b> pohtii kuvaillessaan teosten taustoja.</p><p>Avajaiset keskiviikkona 17.4. klo 17–19. Vapaa pääsy.</p>", "sv": "<p>Möjliga paradis är vår första gemensamma utställning. Vi har varit ateljévänner för många år och tanken om en gemensam utställning har mognat redan länge.</p><p>I utställningen visar vi färggranna monotypier och målningar med blandteknik på papper från åren 2023–2024. Material till det konstnärliga arbetet öser vi båda ur våra personliga upplevelser, vardagen, relationer och det att vara människa. Gemensamma drag i våra arbetssätt är ett slags skrovlighet och tillfällighet: Konst, såsom vardagen, sker inte i ett prydligt laboratorium utan mitt i livets oförutsägbara omsvängningar. I våra verk kan man se en viss släktskap, de är som glimt ur en och samma värld.</p><p><b>Aino Jääskeläinen</b>: ”När jag arbetar berättar jag för mig själv en suddig historia utan intrig, som man nästan kan förstå, och samtalar med mina verk. Om jag försöker uttrycka det i ord blir det diffust och kringgående. För det mesta arbetar jag med monotypi. En monotypi är en tryckbild men samtidigt ett unikt verk. Jag brukar kalla tekniken för målarkonstens och konstgrafikens kärleksbarn. Ur pressen kommer vidunderliga saker och ingen av mina ursprungliga avsikter gäller längre. Verket berättar själv vad det behöver och jag besvarar uppmaningen.”</p><p><b>Anna Seppälä</b>: ”Jag är fascinerad av människans universella likhet med växtriket, symmetrin och symbiosen i cellandningen och fotosyntesen, likheten mellan nerv- och rotsystemet, blodkärlen och myceliet, allt detta som en del av den levande vävnaden som täcker vår planet. I mina senaste verk har det ofta funnits en människogestalt, en självbild som inte är fullt mänsklig utan hör delvis till växternas och insekternas värld. Jag funderar på hur vi finns till som en del av världen, som en art bland alla andra arter, och hur vi kunde vrida runt vår mänskliga uppfinningsrikedom och börja skydda allt det sårbara och levande som vi är i gång med att förstöra. Skulle vår empati även kunna nå sådana livsformer som har olika fysiska egenskaper och ett annorlunda medvetande än vi själv har?”</p><p>Invigning på onsdagen den 17 april, kl. 17–19. Fri entré.</p>", "en": "<p>Possible paradises is Aino’s and Anna's first exhibition together. They have been working in the same studio for years, and the idea of exhibiting together has been in their minds for a long time.</p><p>They exhibit coloristic mixed media and monotype works from 2023-2024. <br> <br>Both artists take their inspiration from daily life, relationships and being a human in this world. There is a certain similar splattered randomness and gentle roughness that connects their working process. Neither life nor art happens in a clean laboratorium, but rather in the middle of life’s unexpected turns and twists. Their works can be sen as flashes from same world; they are related in an undefined way. <br> <br>Aino: “When I work, it’s like telling myself an indeterminate, plotless story, which I almost comprehend, and I am having conversations with the works. I mostly work with monotype, which is a print making technique, where each picture is unique. I like to call it a love child of painting and print making. Miracles appear out of press, and nothing is like intended. The work tells me what it needs, and I answer.” <br> <br>Anna: ”I am interested in universal likeness between human and plants, symbiosis and symmetry between cellular respiration and photosyntesis. Our blood circulation system reminds us of the branches of a tree. We are physically part of the biosphere, and thus connected to every living thing on this planet. In my paintings there is often a figure that is not completely human, but party belongs to plants or insect world. How are we part of this world? How could we turn the endless human inventiveness to protect all the life we are now destroying? Could our empathy cover also the forms of life that are not like ours?”</p><p>Opening of the exhibition on Wednesday, April 17th, from 5 PM to 7 PM. Free entry.</p>" }, "name": { "fi": "Mahdolliset paratiisit – Aino Jääskeläinen ja Anna Seppälä", "sv": "Möjliga paradis – Aino Jääskeläinen och Anna Seppälä", "en": "Possible paradises – Aino Jääskeläinen and Anna Seppälä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63174/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63100", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 763, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 800, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:52", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.738883Z", "last_modified_time": "2024-02-06T13:19:14.199532Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 618, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:668", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.216840Z", "last_modified_time": "2024-02-06T13:19:17.518130Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 102, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Design ja käsityö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1175, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1377", "has_user_editable_resources": false, "alt_labels": [ "design", "planning" ], "created_time": "2023-08-16T05:19:46.752636Z", "last_modified_time": "2023-08-16T05:19:46.752653Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 102, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "suunnittelu", "sv": "planering", "en": "planning and design" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 673, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1139, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p485", "has_user_editable_resources": false, "alt_labels": [ "handarbete", "hantverk", "handarbete och hantverk (arbete)", "hantverk och handarbete (aktivitet)" ], "created_time": "2023-08-16T05:19:43.703641Z", "last_modified_time": "2023-08-16T05:19:43.703658Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 86, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "käsityö (toiminta)", "sv": "handarbete och hantverk (aktivitet)", "en": "handcrafting" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6455", "has_user_editable_resources": false, "alt_labels": [ "design", "design", "design" ], "created_time": "2023-08-16T05:18:25.621979Z", "last_modified_time": "2023-08-16T05:18:25.621998Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 158, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "muotoilu", "sv": "formgivning", "en": "design (artistic creation)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 10963, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-20T11:12:59.759469Z", "last_modified_time": "2024-02-20T11:12:59.759494Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744873.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10963/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-20T11:12:59.728709Z", "last_modified_time": "2024-06-12T05:13:10.969655Z", "date_published": null, "start_time": "2024-04-16T13:00:00Z", "end_time": "2024-04-16T16:15: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": "Miltä Vuosaari näyttää ryijynä?" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/63979CEDE6FA4D20D3FF1BAA18A89642/Vuosaaren_kartta_-miniryijytyopajat" }, "description": { "fi": "<p>Miltä Vuosaari näyttää ryijynä?</p><p>Tule mukaan tekemään pieniä ryijyjä, joista rakentuu Vuosaaren ryijykartta!</p><p>Ryijyä voi tehdä Vuotalolla</p><p>tiistaina 16.4. klo 16–19.15</p><p>Opetustuokioiden ryijy on yhteinen teos, jota tehdään Vuotalolle lahjoitetuista langoista. Ei ennakkoilmoittautumista.</p><p>Yhteistyössä: Helsingin työväenopisto<br>Opettaja: Ama Essel</p>" }, "name": { "fi": "Vuosaaren kartta -miniryijytyöpajat – Vuotalo <3 ryijy -näyttelyn avoimet työpajat" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63100/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63284", "has_user_editable_resources": false, "location": { "id": "tprek:7256", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori", "municipality": "Helsinki", "name": { "fi": "Vilhonvuori", "sv": "Vilhemsberg" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen", "municipality": "Helsinki", "name": { "fi": "Sörnäinen", "sv": "Sörnäs" } } ], "created_time": "2023-08-15T08:12:16.104501Z", "last_modified_time": "2026-02-13T06:09:13.632215Z", "custom_data": null, "email": "caisa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 594, "image": 414655, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.959616, 60.183193 ] }, "telephone": { "fi": "+358 9 310 80008" }, "street_address": { "fi": "Kaikukatu 4, Helsinki", "sv": "Ekogatan 4, Helsinki", "en": "Kaikukatu 4, Helsinki" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.caisa.fi/fi/etusivu", "sv": "https://www.caisa.fi/sv/framsidan", "en": "https://www.caisa.fi/en/frontpage" }, "description": { "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.", "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.", "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent." }, "name": { "fi": "Caisa", "sv": "Caisa", "en": "Cultural Centre Caisa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:47", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.667596Z", "last_modified_time": "2024-02-06T13:19:14.083984Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 618, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Caisa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:669", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.230765Z", "last_modified_time": "2024-02-06T13:19:17.537912Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 339, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut kulttuuritapahtumat (monitaide)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 31180, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-26T11:13:14.205019Z", "last_modified_time": "2024-03-26T11:13:14.205037Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746421.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/31180/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-26T11:13:14.160898Z", "last_modified_time": "2024-06-12T05:13:09.506786Z", "date_published": null, "start_time": "2024-04-13T10:00:00Z", "end_time": "2024-04-13T11: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 näyttelyn viittomakieliseen opastukseen klo 13-14. Opastus on suomenkielisellä viittomakielellä." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/A3443CD0D65E5549FD596C8920F3866D/Viittomakielinen_opastus_nayttelyyn_-_oppaana_Aino_Laiho", "sv": "http://www.caisa.fi/sv/evenemang/event/A3443CD0D65E5549FD596C8920F3866D/Guidning_pa_teckensprak_pa_finska_Aino_Laiho_som_guide", "en": "http://www.caisa.fi/en/events/event/A3443CD0D65E5549FD596C8920F3866D/_Sign_language_tour_in_Finnish_Aino_Laiho_as_a_guide" }, "description": { "fi": "<p>Tervetuloa näyttelyn viittomakieliseen opastukseen klo 13-14. Opastus on suomenkielisellä viittomakielellä.</p><p>“I AM GOD -projektissa tavoitteeni on ollut antaa realistinen kuva siitä, miltä arki mielenterveysongelmien kanssa voi näyttää. Näillä aiheilla on omat sosiaaliset ja poliittiset ulottuvuutensa, mutta tällaisten melko abstraktien käsitteiden ulkopuolella niillä on myös käytännölliset, konkreettiset ja näkyvät puolensa.</p><p>Konkreettiset ja näkyvät puolet muodostavatkin näyttelyn valokuvien ja videoteosten mielenmaiseman – ne pyrkivät kuvastamaan yhden yksilön elämäntilanteita ja vaikeuksia tuhansien ja taas tuhansien ihmisten joukosta.</p><p>Teosteni katsoja saattaa pohtia omia kokemuksiaan mielenterveydestä sekä niihin liittyvistä ja niiden heijastamista moninaisista ilmiöistä. Voiko mahdollisista pohdinnoista vetää johtopäätöksiä? Voiko niistä löytää merkityksiä tai ymmärrystä?” Taiteilija <b>Christian Rosenlund</b></p><p>Näyttelyssä esillä oleva video sisältää voimakkaita kohtauksia.</p><p>Näyttelyyn järjestetään opastus suomalaisella viittomakielellä la 13.4.2024 klo 13-14.<br>Vapaa pääsy.</p>" }, "name": { "fi": "Viittomakielinen opastus näyttelyyn - oppaana Aino Laiho", "sv": "Guidning på teckenspråk på finska: Aino Laiho som guide", "en": "Sign language tour in Finnish: Aino Laiho as a guide" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63284/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61198", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1319, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:46", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.650020Z", "last_modified_time": "2024-02-06T13:19:14.062702Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 712, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:669", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.230765Z", "last_modified_time": "2024-02-06T13:19:17.537912Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 339, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut kulttuuritapahtumat (monitaide)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:734", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.481605Z", "last_modified_time": "2024-02-06T13:19:17.895814Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 254, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Nuorille" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13451, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 6170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T11:13:42.306918Z", "last_modified_time": "2024-02-06T13:23:34.066249Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738846.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6170/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-23T11:13:42.266608Z", "last_modified_time": "2024-06-12T05:13:09.273361Z", "date_published": null, "start_time": "2024-04-13", "end_time": "2024-08-31", "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": "Miten liikettä voi kuvata? Tapahtuuko nappia painamalla jotain? Mitä tarkoittaa kineettinen? Entä mikä on mobile?", "sv": "Hur beskriver man en rörelse? Händer det nåt om du trycker på knappen? Vad betyder kinetisk? Vad är en mobil?", "en": "How can I describe movement? Will something happen if I push the button? What does kinetic mean? And what is mobile?" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DD81682187C878D28ECDF1E488D85AB2/Liikkuva_laboratorio", "sv": "http://www.annantalo.fi/sv/evenemang/event/DD81682187C878D28ECDF1E488D85AB2/Rorliga_laboratoriet", "en": "http://www.annantalo.fi/en/events/event/DD81682187C878D28ECDF1E488D85AB2/Moving_Laboratory" }, "description": { "fi": "<p>Miten liikettä voi kuvata? Tapahtuuko nappia painamalla jotain? Mitä tarkoittaa kineettinen? Entä mikä on mobile?</p><p>Liikkuva laboratorio tutkii! Kaikenlainen käyminen, kulkeminen, tutina ja liitely, mekaaninen tai muunkaltainen ovat suurennuslasin alla. Näyttelyssä perehdytään taiteeseen, joka on tavalla tai toisella liikkeessä tai saanut innoituksensa liikkeestä.</p><p>Syksyllä 2023 Ihmeellinen kone -näyttely käynnisti Annantalolla liikkeen ja vuorovaikutuksen teeman, joka nyt saa jatkoa Liikkuvan laboratorion muodossa.</p><p>Mukana näyttelyssä on KITA – Kineettisen taiteen talo yhdessä Annantalon oppilasryhmien, Lasten ja nuorten säätiön sekä Helsingin katutaidetoimiston nuorten kanssa.</p><p>Näyttelyn avajaisia vietetään 13.4. klo 11:15 Barnfesten-tapahtuman yhteydessä. Tervetuloa mukaan!</p>", "sv": "<p>Hur beskriver man en rörelse? Händer det nåt om du trycker på knappen? Vad betyder kinetisk? Vad är en mobil?</p><p>Det rörliga laboratoriet undersöker! Alla slags promenerande, vandring, skakande och flyg, mekaniska eller andra är under förstoringsglaset. Utställningen gör oss bekanta med konst som på ett eller annat sätt är i rörelse eller har fått sin inspiration från rörelse.</p>", "en": "<p>How can I describe movement? Will something happen if I push the button? What does kinetic mean? And what is mobile?</p><p>The Moving Laboratory explores! All kinds of movement, walking, trembling and gliding, mechanical or otherwise, are under a magnifying glass. The exhibition explores art that is, in one way or another, in motion or inspired by movement.</p>" }, "name": { "fi": "Liikkuva laboratorio – Näyttely liikkeestä ja vuorovaikutuksesta", "sv": "Rörliga laboratoriet – Utställning om rörelse och växelverkan", "en": "Moving Laboratory – An exhibition about movement and interaction" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61198/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63271", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 763, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 800, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:669", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.230765Z", "last_modified_time": "2024-02-06T13:19:17.537912Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 339, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut kulttuuritapahtumat (monitaide)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 20662, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-22T09:13:58.355885Z", "last_modified_time": "2024-03-22T09:13:58.355900Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744087.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/20662/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-22T09:13:58.316046Z", "last_modified_time": "2024-06-12T05:13:09.172749Z", "date_published": null, "start_time": "2024-03-27", "end_time": "2024-04-16", "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": "Vuotalon yläkerran vitriineissä on esillä Puistopolun peruskoulun taideilmaisupainotuksen 9-luokkalaisten lopputöitä." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FAC6FABD1EB629E1B0C55426683AE7C0/Taideilmaisupainotuksen_lopputyonayttely" }, "description": { "fi": "<p>Vuotalon yläkerran vitriineissä on esillä Puistopolun peruskoulun taideilmaisupainotuksen 9-luokkalaisten lopputöitä.</p><p>Oppilaat ovat koko yläkoulun ajan työskennelleet monimateriaalisesti, eri taide- ja taitoaineiden oppiainerajoja ylittäen. Osa taideilmaisupainotuksen oppilaista on aloittanut painotuksen jo alakoulussa. Viimeisenä vuotenaan oppilaat ovat valinneet lopputöihinsä itse sekä aiheet, materiaalit että tekniikat. Esillä on tekijöidensä näköinen kokoelma maalauksia, veistoksia, käsitöitä, keramiikkaa, kokeellisia tekniikoita sekä yksi novelli.</p><p>Näyttelyn löydät 2. kerroksen käytävästä.</p>" }, "name": { "fi": "Taideilmaisupainotuksen lopputyönäyttely" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Puistopolun peruskoulu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63271/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61475", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 763, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 800, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 6294, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-28T13:12:58.816993Z", "last_modified_time": "2024-02-06T13:22:58.532627Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739358.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6294/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-28T13:12:58.794855Z", "last_modified_time": "2024-06-12T05:13:09.005706Z", "date_published": null, "start_time": "2024-01-29", "end_time": "2024-06-01", "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": "Ryijy valtaa Vuotalon näyttelytilan keväällä 2024. Ryijyjä on tehty käyttöön ja koristeeksi satoja vuosia. Mutta mitä ryijy on nyt?", "sv": "Våren 2024 tar ryorna över utställningslokalen i Nordhuset. Ryor har gjorts för bruk och som utsmyckning i hundratals år. Men vad är ryan nu?", "en": "Wall rugs will take over the exhibition space at Vuosaari House in spring 2024. Wall rugs have been made for daily use and decoration for hundreds of years. But what are modern wall rugs like?" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/716635D90E55D403182677046EB6F38E/Vuotalo_3_ryijy", "sv": "http://www.vuotalo.fi/sv/evenemang/event/716635D90E55D403182677046EB6F38E/Nordhuset_3_ryan", "en": "http://www.vuotalo.fi/en/events/event/716635D90E55D403182677046EB6F38E/Vuosaari_House_3_Wall_Rugs" }, "description": { "fi": "<p>Ryijy valtaa Vuotalon näyttelytilan keväällä 2024. Ryijyjä on tehty käyttöön ja koristeeksi satoja vuosia. Mutta mitä ryijy on nyt?</p><p>Vuotalon näyttelyssä ryijy taipuu moneen – se voi olla solmittu värikkäistä villalangoista tai se rakentuu esimerkiksi kierrätysmuovista. Tärkeintä on, että sen ääressä voidaan kohdata ja tehdä yhdessä käsin.</p><p>Näyttely täydentyy kevään aikana pidettävissä työpajoissa, joissa muun muassa tehdään yhteistä ryijykarttateosta, sekä päästään oppimaan Ragamuf-tekniikkaa.</p><p>Yhteistyössä: Kulttuurikeskus Vuotalo, Helsingin Työväenopisto, Suomen Käsityön ystävät.</p><p>Näyttelyssä mukana:</p><p><b>Ama Essel</b> on käsityötieteilijä ja -opettaja, joka on erikoistunut ryijytekniikkaan. Hän on tutkinut värejä ja niiden merkityksiä suomalaisissa ryijyissä sekä ryijytekniikan ilmenemistä vaatteissa. Tällä hetkellä hän tutkii kovien materiaalien ja ryijytekniikan välistä yhteyttä.</p><p><b>Aino Favén</b> on tekstiilitaiteilija, jonka teosten mittakaava on vaihdellut pienistä koruista suuriin installaatioihin. Teoksille on ominaista keveys, läpikuultavuus sekä liike, valo ja varjot.</p><p><b>Tuula Pöyhönen</b> on muoti- ja konseptisuunnittelija. Vuotalon ryijypajoissa hän ohjaa osallistujia solmimaan hapsutyynyn kehittämänsä Ragamuf-tuoliryijyn tekniikalla.</p><p><b>Johanna Suonpää</b> on Vuosaaressa asuva tekstiilitaiteilija ja kuvanveistäjä.</p><p>Näyttelystä ja sen työpajoista tiedotetaan lisää kevään aikana Vuotalon sivuilla.</p>", "sv": "<p>Våren 2024 tar ryorna över utställningslokalen i Nordhuset. Ryor har gjorts för bruk och som utsmyckning i hundratals år. Men vad är ryan nu?</p><p>I utställningen i Nordhuset visar ryan sin mångsidighet – den kan vara gjord av färgglada ulltrådar eller byggd av t.ex. returplast. Det viktigaste är att man kan mötas vid den och göra den tillsammans för hand.</p><p>I utställningen ingår: <br>Ama Essel<br>Aino Favén<br>Tuula Pöyhönen<br>Johanna Suonpää</p>", "en": "<p>Wall rugs will take over the exhibition space at Vuosaari House in spring 2024. Wall rugs have been made for daily use and decoration for hundreds of years. But what are modern wall rugs like?</p><p>At the exhibition in Vuosaari House, wall rugs transform into many things – they can be tufted from colourful wool or made from recycled plastic, for example. The most important thing is that wall rugs create a space for encounters and doing together by hand.</p><p>The exhibition features: <br>Ama Essel<br>Aino Favén<br>Tuula Pöyhönen<br>Johanna Suonpää</p>" }, "name": { "fi": "Vuotalo <3 ryijy", "sv": "Nordhuset <3 ryan", "en": "Vuosaari House <3 Wall Rugs" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61475/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63479", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 763, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1319, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:33", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.509726Z", "last_modified_time": "2024-02-06T13:19:13.839978Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 761, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:348", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.541371Z", "last_modified_time": "2024-02-06T13:19:15.204233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1061, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 800, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5967, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4820, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5023, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13451, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 150840, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T15:13:55.720529Z", "last_modified_time": "2024-04-25T15:13:55.720548Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737099.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150840/?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": "2024-04-25T15:13:55.665757Z", "last_modified_time": "2024-06-11T13:12:43.256836Z", "date_published": null, "start_time": "2024-06-12T07:00:00Z", "end_time": "2024-06-12T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsinki-päivänä Vuosaaren iloiselle torille kokoontuu niin pienet kuin suuretkin kaupunkilaiset nauttimaan vauhdikkaasta musiikista ja mahtavasta tunnelmasta!", "sv": "På Nordsjö glada torg samlar såväl små och stora stadsbor som njuter av den fartfyllda musiken och den otroliga stämningen!", "en": "The bright Vuotalo square will fill with people of all ages to enjoy the upbeat music and the awesome atmosphere!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsinki-paiva_Vuotorilla", "sv": "http://www.vuotalo.fi/sv/evenemang/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsingforsdagen_i_Nordtorget", "en": "http://www.vuotalo.fi/en/events/event/AD4E9E107013F50CEA11F8F91F3303F6/Helsinki_Day_at_Vuotalo_Square" }, "description": { "fi": "<p>Helsinki-päivänä Vuosaaren iloiselle torille kokoontuu niin pienet kuin suuretkin kaupunkilaiset nauttimaan vauhdikkaasta musiikista ja mahtavasta tunnelmasta!</p><p><b>OHJELMA</b></p><p><b>Klo 10 ja 12<br>Jo's Punch & Judy Show – Nukketeatteria englanniksi</b></p><p>Hauskuutta niin isoille kuin pienillekin lapsille! Aitoa englantilaista käsinukketeatteria, jossa esiintyvät perinteinen Mr. Punch ja monet muut vanhat tutut. Luvassa on hulvatonta pelleilyä! Yleisökin saa osallistua nopeatempoiseen komedianäytökseen. Esitys sopii parhaiten perheille ja 3–11-vuotiaille lapsille.</p><p><b>klo 14 – Mimi ja Kuku</b></p><p>Muusikko Mimi ja hassu pelleleijona Kuku ovat televisiosta tutut hahmot. Mimin ja Kukun liikunnallisessa ja viihdyttävässä esityksessä lapsi kokee onnistumisen ja oivaltamisen riemua. Jokainen lapsi saa olla esityksen sankari omalla tavallaan.</p><p>Vuorovaikutteiset esitykset on erityisesti suunniteltu vahvistamaan pienen ihmisen itsetuntoa, sekä tunne- ja kaveritaitoja. Esityksessä on iloisen vauhdikas meininki, paljon tanssia, tehtäviä, nukketeatteria sekä taikatemppuja. Esitys sopii kaikenikäisille!</p><p><b>klo 16 – Unelmien Helsinki - Tomi Pulkkinen (ruotsiksi) </b></p><p>Tule nauttimaan helsinkiläisten luomista uusista lauluista taiteilija Tomi Pulkkisen vetämissä laulupajoissa!</p><p>Tomi Pulkkinen on pitänyt laulupajoja Helsingissä tänä keväänä. Laulujen lähtökohtana ovat olleet osallistujien lempipaikat, mutta mielikuvitus on virrannut vapaasti, ilman rajoja. Työpajojen osallistujat ovat olleet eri-ikäisiä; luovuus yhdistää meitä kaikkia, myös kieli- ja kulttuuritaustasta riippumatta! Nyt Tomi esittää työpajoissa syntyneitä lauluja, tule mukaan, kuuntele ja laula mukana!</p><p>Tomi Pulkkinen tunnetaan muun muassa Suomen ensimmäisenä kuukausipalkkaisena kirjastotrubaduurina, mutta nykyään hän toimii freelance-lauluntekijänä, esiintyjänä ja kirjailijana. Hän on voittanut Vuoden sillanrakentaja -palkinnon kielirajat ylittävästä kulttuurityöstään. Tomi Pulkkinen on FM Helsingin yliopistosta, pääaineenaan suomalainen kirjallisuus.</p><p>Kesto n. 45 min. Vapaa pääsy</p><p><b>klo 18 – Arppa </b></p><p>Energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämän hetken Suomi-indien kärkinimistä. Arpan ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa. Oivaltavat, vilpittömät ja tarkkanäköisesti kuvatut tunnelmat liikkuvat Kokkolan Ykspihlajasta aina öisen Helsingin kautta Laila Kinnusen kanssa salakapakkaan heinäkuuhun ’58.</p><p>Arpan yhtyeessä vaikuttavat muusikot Ville-Veikko Airaniemi, Eero Seppä ja Okko Saastamoinen.</p>", "sv": "<p>På Nordsjö glada torg samlar såväl små och stora stadsbor som njuter av den fartfyllda musiken och den otroliga stämningen!</p><p><b>PROGRAM</b></p><p><b>kl. 10 och 12<br>Jo's Punch & Judy Show – Dockteater på engelska</b></p><p>Ett spännande skådespel för små och stora barn! Autentisk engelsk handdockteater med den historiskt kända Mr. Punch och hans traditionella vänner i en galen clowndrama! En fartfylld interaktiv komediakt på scenen. Ideal för familjer och barn mellan 3 och 11 eller äldre!</p><p><b>kl. 14 – Mimi och Kuku</b></p><p>Musiker Mimi och det lustiga clownlejonet Kuku är bekanta figurer från tv. I Mimis och Kukus idrottsliga och underhållande föreställning får barnet uppleva glädjen av att lyckas och inse. Varje barn får vara hjälten i föreställningen på sitt eget sätt.</p><p>De interaktiva föreställningarna har särskilt planerats att stärka en liten människas självkänsla samt känslo- och kompiskunskaper. Föreställningen har en glad fartfylld stämning, mycket dans, uppgifter, dockteater samt trollkonst. Föreställningen lämpar sig för alla åldrar!</p><p><b>kl. 16 – Drömmarnas Helsingfors - Nya verkstadssånger med Tomi Pulkkinen </b></p><p>Kom och njut av nya sånger som har skapats av helsingforsbor i sångverkstäder under ledning av artist Tomi Pulkkinen!</p><p>Tomi Pulkkinen har under den gångna våren hållit sångverkstäder i Helsingfors. Utgångspunkten för sångerna har varit i deltagarnas favoritställen, men fantasin har flödat fritt, utan gränser. Verkstädernas deltagare har varit av olika åldrar; kreativiteten förenar oss alla, också oavsett språklig eller kulturell bakgrund! Nu uppträder Tomi med de sånger som skapats under verkstäderna, kom med, lyssna och sjung med!</p><p>Tomi Pulkkinen är bl.a. känd som Finlands första månadsavlönade bibliotekstrubadur, men nuförtiden arbetar han som fri låtskrivare, uppträdare och författare. Han har blivit prisbelönt som Årets brobyggare för sitt kulturarbete över språkgränsen. Tomi Pulkkinen är FM från Helsingfors universitet med inhemsk litteratur som huvudämne.</p><p>Längd ca 45 min. Fri entré. Arr. Nordhuset.</p><p><b>kl. 18 – Arppa</b></p><p>Arppa och hens band är kända för sina energiska gigs som baserar sig på inspiration. Arppa är ett av toppnamnen i dagens indie i Finland. Arppas förtjusande musik är tidlös och texterna är som levande bilder. De insiktsfulla, uppriktiga och skarpsynt beskrivna stämningarna varierar mellan Yxpila i Karleby, det nattliga Helsingfors i Laila Kinnunens sällskap och en hemlig krog i juni 1958.</p><p>I Arppas band medverkar musikerna Ville-Veikko Airaniemi, Eero Seppä och Okko Saastamoinen.</p>", "en": "<p>The bright Vuotalo square will fill with people of all ages to enjoy the upbeat music and the awesome atmosphere!</p><p><b>PROGRAMME</b></p><p><b>10 am and 12 am<br>Jo's Punch & Judy Show – Puppet theatre in English</b></p><p>An exciting treat for children big and small! Authentic English glove puppet theatre with the historically famous Mr. Punch and a cast of traditional friends in crazy clown-like drama! Fast-paced interactive live comedy show. Ideal for families and children aged 3–11 and beyond!</p><p><b>2 pm – Mimi and Kuku</b></p><p>Musician Mimi and hilarious clown-lion Kuku are characters known to many as seen on TV. Mimi and Kuku’s physically entertaining show lets children feel the joy of success and insight. Every child gets to be the main character in their own way.</p><p>These interactive shows are specially planned to reinforce a small one’s confidence as well as emotional and social skills. The show is fun and fast-paced with lots of dancing, things to do, puppet</p><p><b>4 pm - Helsinki of Dreams - New workshop songs with Tomi Pulkkinen (in Swedish) </b></p><p>Come and enjoy new songs created by Helsinki residents in song workshops led by artist Tomi Pulkkinen!</p><p>Tomi Pulkkinen has been holding song workshops in Helsinki this spring. The starting point for the songs has been in the participants' favorite places, but the imagination has flowed freely, without limits. The participants of the workshops have been of different ages; creativity unites us all, also regardless of linguistic or cultural background! Now Tomi will perform the songs created during the workshops, come along, listen and sing along!</p><p>Tomi Pulkkinen is known, among other things, as Finland's first monthly-paid library troubadour, but nowadays he works as a freelance songwriter, performer and author. He has won the Bridge Builder of the Year award for his cultural work across the language border. Tomi Pulkkinen is an FM from the University of Helsinki with a major in Finnish literature.</p><p>Duration approx. 45 min.</p><p><b>6 pm – Arppa</b></p><p>Arppa and his band are known for their high-energy concerts that are heavy on improvisation, and have become one of the top names of the Finnish indie scene. Arppa’s enchanting music is timeless and his lyrics evoke the cinema. His insightful, sincere and laser-sharp depictions of atmospheres go from Ykspihlaja in Kokkola to night-time Helsinki and onward to a July ‘58 speakeasy with Laila Kinnunen.</p><p>Arppa’s band includes musicians Ville-Ville-Veikko Airaniemi, Eero Seppä and Okko Saastamoinen.</p>" }, "name": { "fi": "Helsinki-päivä Vuotorilla – Arppa, Mimi ja Kuku ja paljon muuta", "sv": "Helsingforsdagen i Nordtorget", "en": "Helsinki Day at Vuotalo Square" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiao534aq", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-11T11:43:36.222760Z", "last_modified_time": "2024-06-11T12:18:53.611336Z", "date_published": "2024-06-11T11:42:00Z", "start_time": "2024-06-17T11:00:00Z", "end_time": "2024-06-17T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa " }, "info_url": null, "description": { "fi": "<p>Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa Sellon kirjasto: ti 11.6. ja to 13.6. klo 14-16, la 15.6. klo 12-14Entressen kirjasto: ma: 17.6. ja ti 18.6. klo 14-16Iso Omenan kirjasto: ti 25.6. ja to 27.6. klo 14-16, la 29.6. klo 12-14.<br>Langat ja koukut tarjoaa Novita.<br>Valmiit peitot lahjoitetaan hyväntekeväisyyteen.<br>Tervetuloa!</p>" }, "name": { "fi": "Tilkkujen virkkauspajat Entressen kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiao534aq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiao534mq", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiao534rm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-11T11:42:04.966675Z", "last_modified_time": "2024-06-11T12:18:07.763189Z", "date_published": "2024-06-11T11:32:00Z", "start_time": "2024-06-13T11:00:00Z", "end_time": "2024-06-13T13: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 virkkaamaan tilkkuja peittoihin kirjastossa " }, "info_url": null, "description": { "fi": "<p>Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa Sellon kirjasto: ti 11.6. ja to 13.6. klo 14-16, la 15.6. klo 12-14Entressen kirjasto: ma: 17.6. ja ti 18.6. klo 14-16Iso Omenan kirjasto: ti 25.6. ja to 27.6. klo 14-16, la 29.6. klo 12-14.<br>Langat ja koukut tarjoaa Novita.<br>Valmiit peitot lahjoitetaan hyväntekeväisyyteen.<br>Tervetuloa!</p>" }, "name": { "fi": "Tilkkujen virkkauspajat Sellon kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiao534mq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiao534pi", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiao534rm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-11T11:42:04.796824Z", "last_modified_time": "2024-06-11T12:18:07.645875Z", "date_published": "2024-06-11T11:32:00Z", "start_time": "2024-06-15T09:00:00Z", "end_time": "2024-06-15T11: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 virkkaamaan tilkkuja peittoihin kirjastossa " }, "info_url": null, "description": { "fi": "<p>Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa Sellon kirjasto: ti 11.6. ja to 13.6. klo 14-16, la 15.6. klo 12-14Entressen kirjasto: ma: 17.6. ja ti 18.6. klo 14-16Iso Omenan kirjasto: ti 25.6. ja to 27.6. klo 14-16, la 29.6. klo 12-14.<br>Langat ja koukut tarjoaa Novita.<br>Valmiit peitot lahjoitetaan hyväntekeväisyyteen.<br>Tervetuloa!</p>" }, "name": { "fi": "Tilkkujen virkkauspajat Sellon kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiao534pi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiao534rm", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiao534mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiao534pi/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-11T11:42:04.154191Z", "last_modified_time": "2024-06-11T12:18:06.200760Z", "date_published": "2024-06-11T11:32:00Z", "start_time": "2024-06-13T11:00:00Z", "end_time": "2024-06-15T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa " }, "info_url": null, "description": { "fi": "<p>Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa Sellon kirjasto: ti 11.6. ja to 13.6. klo 14-16, la 15.6. klo 12-14Entressen kirjasto: ma: 17.6. ja ti 18.6. klo 14-16Iso Omenan kirjasto: ti 25.6. ja to 27.6. klo 14-16, la 29.6. klo 12-14.<br>Langat ja koukut tarjoaa Novita.<br>Valmiit peitot lahjoitetaan hyväntekeväisyyteen.<br>Tervetuloa!</p>" }, "name": { "fi": "Tilkkujen virkkauspajat Sellon kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiao534rm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiaoqjc2y", "has_user_editable_resources": false, "location": { "id": "tprek:15395", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:16.199535Z", "last_modified_time": "2024-04-09T05:09:28.197140Z", "custom_data": null, "email": "kirjasto.omena@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02230", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1939, "image": 7942, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.740192, 60.160072 ] }, "telephone": { "fi": "+358 9 8165 7723" }, "street_address": { "fi": "Suomenlahdentie 1", "sv": "Finnviksvägen 1", "en": "Suomenlahdentie 1" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "description": null, "name": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66by", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.052436Z", "last_modified_time": "2023-12-13T11:20:12.052454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1532, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Matinkylä", "sv": "Mattby", "en": "Matinkylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiaoqjdfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiaoqjdie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiaoqjdku/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-11T11:44:57.715804Z", "last_modified_time": "2024-06-11T11:46:18.395553Z", "date_published": "2024-06-11T11:43:00Z", "start_time": "2024-06-25T11:00:00Z", "end_time": "2024-06-27T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa " }, "info_url": null, "description": { "fi": "<p>Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa Sellon kirjasto: ti 11.6. ja to 13.6. klo 14-16, la 15.6. klo 12-14Entressen kirjasto: ma: 17.6. ja ti 18.6. klo 14-16Iso Omenan kirjasto: ti 25.6. ja to 27.6. klo 14-16, la 29.6. klo 12-14.<br>Langat ja koukut tarjoaa Novita.<br>Valmiit peitot lahjoitetaan hyväntekeväisyyteen.<br>Tervetuloa!</p>" }, "name": { "fi": "Tilkkujen virkkauspajat Ison Omenan kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiaoqjc2y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiaoqjdfq", "has_user_editable_resources": false, "location": { "id": "tprek:15395", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:16.199535Z", "last_modified_time": "2024-04-09T05:09:28.197140Z", "custom_data": null, "email": "kirjasto.omena@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02230", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1939, "image": 7942, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.740192, 60.160072 ] }, "telephone": { "fi": "+358 9 8165 7723" }, "street_address": { "fi": "Suomenlahdentie 1", "sv": "Finnviksvägen 1", "en": "Suomenlahdentie 1" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "description": null, "name": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66by", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.052436Z", "last_modified_time": "2023-12-13T11:20:12.052454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1532, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Matinkylä", "sv": "Mattby", "en": "Matinkylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiaoqjc2y/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-11T11:44:58.610538Z", "last_modified_time": "2024-06-11T11:44:58.610562Z", "date_published": "2024-06-11T11:43:00Z", "start_time": "2024-06-25T11:00:00Z", "end_time": "2024-06-25T13: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 virkkaamaan tilkkuja peittoihin kirjastossa " }, "info_url": null, "description": { "fi": "<p>Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa Sellon kirjasto: ti 11.6. ja to 13.6. klo 14-16, la 15.6. klo 12-14Entressen kirjasto: ma: 17.6. ja ti 18.6. klo 14-16Iso Omenan kirjasto: ti 25.6. ja to 27.6. klo 14-16, la 29.6. klo 12-14.<br>Langat ja koukut tarjoaa Novita.<br>Valmiit peitot lahjoitetaan hyväntekeväisyyteen.<br>Tervetuloa!</p>" }, "name": { "fi": "Tilkkujen virkkauspajat kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiaoqjdfq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiaoqjdie", "has_user_editable_resources": false, "location": { "id": "tprek:15395", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:16.199535Z", "last_modified_time": "2024-04-09T05:09:28.197140Z", "custom_data": null, "email": "kirjasto.omena@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02230", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1939, "image": 7942, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.740192, 60.160072 ] }, "telephone": { "fi": "+358 9 8165 7723" }, "street_address": { "fi": "Suomenlahdentie 1", "sv": "Finnviksvägen 1", "en": "Suomenlahdentie 1" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "description": null, "name": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66by", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.052436Z", "last_modified_time": "2023-12-13T11:20:12.052454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1532, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Matinkylä", "sv": "Mattby", "en": "Matinkylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiaoqjc2y/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-11T11:44:58.518688Z", "last_modified_time": "2024-06-11T11:44:58.518877Z", "date_published": "2024-06-11T11:43:00Z", "start_time": "2024-06-29T09:00:00Z", "end_time": "2024-06-29T11: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 virkkaamaan tilkkuja peittoihin kirjastossa " }, "info_url": null, "description": { "fi": "<p>Tervetuloa virkkaamaan tilkkuja peittoihin kirjastossa Sellon kirjasto: ti 11.6. ja to 13.6. klo 14-16, la 15.6. klo 12-14Entressen kirjasto: ma: 17.6. ja ti 18.6. klo 14-16Iso Omenan kirjasto: ti 25.6. ja to 27.6. klo 14-16, la 29.6. klo 12-14.<br>Langat ja koukut tarjoaa Novita.<br>Valmiit peitot lahjoitetaan hyväntekeväisyyteen.<br>Tervetuloa!</p>" }, "name": { "fi": "Tilkkujen virkkauspajat kirjastossa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiaoqjdie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }