Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=781&show_all=true
{ "meta": { "count": 32760, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=782&show_all=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=780&show_all=true" }, "data": [ { "id": "espoo_le:agih3ndlci", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlry/?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-07-04T12:02:59.486951Z", "last_modified_time": "2024-07-04T12:02:59.487092Z", "date_published": "2024-07-04T11:47:00Z", "start_time": "2024-08-28T11:00:00Z", "end_time": "2024-08-28T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "en": "Join the Fun at the Sello Library English Book Club!" }, "info_url": null, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!<br>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!<br>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30.<br>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.<br>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.<br>Nähdään!<br><br><br>Kirjat<br>ke 28.08.2024 Mexican Gothic by Silvia Moreno-Garcia<br>ke 25.09.2024 My Dark Vanessa by Kate Elizabeth Russell<br>ke 30.10.2024 Piranesi by Susanna Clarke<br>ke 27.11.2024 The Last Devil to Die by Richard Osman<br>ke 11.12.2024 Breakfast at Tiffany's by Truman Capote<br><br><br></p>", "en": "<p>Join the Fun at the Sello Library English Book Club!<br>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!<br> <br>📚 **What:** Sello Library English Book Club<br>📅 **When:** Last Wednesdays of the month<br>🕑 **Time:** 2 PM to 3:30 PM<br>📍 **Where:** Elina Room<br><br><br>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.<br>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.<br>See you there!<br><br><br>Books<br>28 August Mexican Gothic by Silvia Moreno-Garcia<br>25 September My Dark Vanessa by Kate Elizabeth Russell<br>30 October Piranesi by Susanna Clarke<br>27 November The Last Devil to Die by Richard Osman<br>11 December Breakfast at Tiffany's by Truman Capote<br></p>" }, "name": { "fi": "Englanninkielinen lukupiiri", "en": "English Book Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlci/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agih3ndlfm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlry/?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-07-04T12:02:59.379211Z", "last_modified_time": "2024-07-04T12:02:59.379245Z", "date_published": "2024-07-04T11:47:00Z", "start_time": "2024-12-11T12:00:00Z", "end_time": "2024-12-11T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "en": "Join the Fun at the Sello Library English Book Club!" }, "info_url": null, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!<br>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!<br>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30.<br>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.<br>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.<br>Nähdään!<br><br><br>Kirjat<br>ke 28.08.2024 Mexican Gothic by Silvia Moreno-Garcia<br>ke 25.09.2024 My Dark Vanessa by Kate Elizabeth Russell<br>ke 30.10.2024 Piranesi by Susanna Clarke<br>ke 27.11.2024 The Last Devil to Die by Richard Osman<br>ke 11.12.2024 Breakfast at Tiffany's by Truman Capote<br><br><br></p>", "en": "<p>Join the Fun at the Sello Library English Book Club!<br>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!<br> <br>📚 **What:** Sello Library English Book Club<br>📅 **When:** Last Wednesdays of the month<br>🕑 **Time:** 2 PM to 3:30 PM<br>📍 **Where:** Elina Room<br><br><br>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.<br>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.<br>See you there!<br><br><br>Books<br>28 August Mexican Gothic by Silvia Moreno-Garcia<br>25 September My Dark Vanessa by Kate Elizabeth Russell<br>30 October Piranesi by Susanna Clarke<br>27 November The Last Devil to Die by Richard Osman<br>11 December Breakfast at Tiffany's by Truman Capote<br></p>" }, "name": { "fi": "Englanninkielinen lukupiiri", "en": "English Book Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlfm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agih3ndllm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlry/?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-07-04T12:02:59.146655Z", "last_modified_time": "2024-07-04T12:02:59.146680Z", "date_published": "2024-07-04T11:47:00Z", "start_time": "2024-10-30T12:00:00Z", "end_time": "2024-10-30T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "en": "Join the Fun at the Sello Library English Book Club!" }, "info_url": null, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!<br>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!<br>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30.<br>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.<br>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.<br>Nähdään!<br><br><br>Kirjat<br>ke 28.08.2024 Mexican Gothic by Silvia Moreno-Garcia<br>ke 25.09.2024 My Dark Vanessa by Kate Elizabeth Russell<br>ke 30.10.2024 Piranesi by Susanna Clarke<br>ke 27.11.2024 The Last Devil to Die by Richard Osman<br>ke 11.12.2024 Breakfast at Tiffany's by Truman Capote<br><br><br></p>", "en": "<p>Join the Fun at the Sello Library English Book Club!<br>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!<br> <br>📚 **What:** Sello Library English Book Club<br>📅 **When:** Last Wednesdays of the month<br>🕑 **Time:** 2 PM to 3:30 PM<br>📍 **Where:** Elina Room<br><br><br>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.<br>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.<br>See you there!<br><br><br>Books<br>28 August Mexican Gothic by Silvia Moreno-Garcia<br>25 September My Dark Vanessa by Kate Elizabeth Russell<br>30 October Piranesi by Susanna Clarke<br>27 November The Last Devil to Die by Richard Osman<br>11 December Breakfast at Tiffany's by Truman Capote<br></p>" }, "name": { "fi": "Englanninkielinen lukupiiri", "en": "English Book Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndllm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agih3ndloy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlry/?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-07-04T12:02:59.008708Z", "last_modified_time": "2024-07-04T12:02:59.008731Z", "date_published": "2024-07-04T11:47:00Z", "start_time": "2024-09-25T11:00:00Z", "end_time": "2024-09-25T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "en": "Join the Fun at the Sello Library English Book Club!" }, "info_url": null, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!<br>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!<br>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30.<br>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.<br>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.<br>Nähdään!<br><br><br>Kirjat<br>ke 28.08.2024 Mexican Gothic by Silvia Moreno-Garcia<br>ke 25.09.2024 My Dark Vanessa by Kate Elizabeth Russell<br>ke 30.10.2024 Piranesi by Susanna Clarke<br>ke 27.11.2024 The Last Devil to Die by Richard Osman<br>ke 11.12.2024 Breakfast at Tiffany's by Truman Capote<br><br><br></p>", "en": "<p>Join the Fun at the Sello Library English Book Club!<br>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!<br> <br>📚 **What:** Sello Library English Book Club<br>📅 **When:** Last Wednesdays of the month<br>🕑 **Time:** 2 PM to 3:30 PM<br>📍 **Where:** Elina Room<br><br><br>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.<br>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.<br>See you there!<br><br><br>Books<br>28 August Mexican Gothic by Silvia Moreno-Garcia<br>25 September My Dark Vanessa by Kate Elizabeth Russell<br>30 October Piranesi by Susanna Clarke<br>27 November The Last Devil to Die by Richard Osman<br>11 December Breakfast at Tiffany's by Truman Capote<br></p>" }, "name": { "fi": "Englanninkielinen lukupiiri", "en": "English Book Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndloy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agih3ndlry", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "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:agih3ndlci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndliq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndllm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndloy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj54fibfe/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-04T12:02:58.117041Z", "last_modified_time": "2024-07-04T12:02:58.117066Z", "date_published": "2024-07-04T11:47:00Z", "start_time": "2024-08-28T11:00:00Z", "end_time": "2024-11-27T13:30: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": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "en": "Join the Fun at the Sello Library English Book Club!" }, "info_url": null, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!<br>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!<br>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30.<br>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.<br>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.<br>Nähdään!<br><br><br>Kirjat<br>ke 28.08.2024 Mexican Gothic by Silvia Moreno-Garcia<br>ke 25.09.2024 My Dark Vanessa by Kate Elizabeth Russell<br>ke 30.10.2024 Piranesi by Susanna Clarke<br>ke 27.11.2024 The Last Devil to Die by Richard Osman<br>ke 11.12.2024 Breakfast at Tiffany's by Truman Capote<br><br><br></p>", "en": "<p>Join the Fun at the Sello Library English Book Club!<br>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!<br> <br>📚 **What:** Sello Library English Book Club<br>📅 **When:** Last Wednesdays of the month<br>🕑 **Time:** 2 PM to 3:30 PM<br>📍 **Where:** Elina Room<br><br><br>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.<br>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.<br>See you there!<br><br><br>Books<br>28 August Mexican Gothic by Silvia Moreno-Garcia<br>25 September My Dark Vanessa by Kate Elizabeth Russell<br>30 October Piranesi by Susanna Clarke<br>27 November The Last Devil to Die by Richard Osman<br>11 December Breakfast at Tiffany's by Truman Capote<br></p>" }, "name": { "fi": "Englanninkielinen lukupiiri", "en": "English Book Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndlry/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agih3ndluu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-07-04T11:37:53.420707Z", "last_modified_time": "2024-07-04T11:37:53.420731Z", "date_published": "2024-07-04T11:31:00Z", "start_time": "2024-08-31T13:00:00Z", "end_time": "2024-08-31T14: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": "Esitys on interaktiivinen musiikkimatka lapsille. Se perustuu instrumentaaliseen improvisaatioon ja monikielisyyteen. ", "en": "An interactive performance with kids based on instrumental improvisation and multilingualism. " }, "info_url": null, "description": { "fi": "<p>Esitys on interaktiivinen musiikkimatka lapsille. Se perustuu instrumentaaliseen improvisaatioon ja monikielisyyteen. Esityksessä huilisti Livia Schweizer ja kitaristi Yunjia Liu käyvät vuoropuhelua sekä keskenään että yleisön kanssa. Tämä dialogi tapahtuu vapaan improvisaation keinoin, ja se johdattaa niin esiintyjät kuin yleisönkin itsensä etsimisen, uteliaisuuden ja aktiivisen kuuntelun maailmaan äänen, värien ja liikkeen avulla.<br>“Awaken through Improvisation” on elämyksellinen kokemus sekä yleisölle että esiintyjille. <br>Esitys on monikielinen (englanti, suomi, ruotsi, kiina, saksa, italia), tule rohkeasti mukaan!<br></p>", "en": "<p>An interactive performance with kids based on instrumental improvisation and multilingualism. A dialog created between the musicians flutist Livia Schweizer and guitarist Yunjia Liu and with the audience, using free improvisation as a way of communication and entering a world of self search, curiosity and active listening through sound, colors and movement. A journey of awaken with free improvisation for both audience and performers.<br>The performance is multilingual (English, Finnish, Swedish, Chinese, German, Italian), feel free to join us!<br></p>" }, "name": { "fi": "Awaken through improvisation", "en": "Awaken through improvisation" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "en": "Heikki" }, "provider": { "fi": " Livia Schweizer ja Yunjia Liu", "en": " Livia Schweizer and Yunjia Liu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agih3ndluu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63197", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150615, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T15:13:06.465829Z", "last_modified_time": "2024-04-16T15:13:06.465842Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745870.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150615/?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-16T15:13:06.447840Z", "last_modified_time": "2024-07-04T09:13:33.220608Z", "date_published": null, "start_time": "2024-06-03", "end_time": "2024-08-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": "Annantalolla järjestetään Taidejuttuja joka arkipäivä klo 10–12 ja 13–15.", "sv": "Avgiftsfria Konstgrejer ordnas på Annegården varje vardag kl. 10–12 och 13–15.", "en": "Annantalo arranges free-of-charge Art Things every weekday at 10 am–12 noon and 1–3 pm." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DF713FC6794FDCC187D20058C91184B2/Tule_tekemaan_Taidejuttuja_", "sv": "http://www.annantalo.fi/sv/evenemang/event/DF713FC6794FDCC187D20058C91184B2/Kom_och_gor_Konstgrejer_", "en": "http://www.annantalo.fi/en/events/event/DF713FC6794FDCC187D20058C91184B2/Come_make_Art_Things_" }, "description": { "fi": "<p>Annantalolla järjestetään Taidejuttuja joka arkipäivä klo 10–12 ja 13–15.</p><p>Taidejutut tapahtuvat kesällä 2024 Annantalon pihapiirissä tai sisätiloissa. Ohjattu toiminta sopii alle 8-vuotiaille yhdessä oman aikuisen kanssa, ja sitä vanhemmille lapsille myös ilman omaa aikuista. Taidejutuissa voi pistäytyä mihin aikaan vaan tai viipyä pidempäänkin. Toiminnassa yhdistellään eri taidemuotoja ja ohjaajana toimivat Annantalon taidekasvattajat.</p><p>Toiminta on maksutonta eikä siihen ole ennakkoilmoittautumista.</p><p><b>Taidejuttujen teemat</b></p><p><b>3.–7.6.<br>Hyönteiselämää</b><br>Bzzz.. Millainen hyönteinen sinä olisit? Pajassa valmistetaan päälle puettavia hyönteisen osia. Omaa hyönteishahmoaan pääsee täydentämään Annantalon puvuston aarteita hyödyntäen. Kun oma hahmo on valmis, se voi seikkailla Annantalon pihalla tai sateen sattuessa tutkia sisällä talomme sopukoita.</p><p><b>4.–5.6.<br>Superluonto</b><br>Voiko hyönteisellä olla robotin jalat? Tai koneen kädet? Työpajassa rakennetaan tulevaisuuden ötököitä! Toimintaa ohjaajaa taiteilija Christelle Mas, jonka näyttely on koettavissa Annantalon 2. kerroksen lasigalleriassa.</p><p><b>10.–14.6. & 17.–20.6. <br>Perheiden kesäkeidas</b><br>Mitä ihmettä Annantalon pihalla tapahtuu? Hyppää maalarin takkiin ja nappaa pihalta maalausteline kainaloon. Perheiden kesäkeidas kutsuu hengähtämään kaupungin vilinän keskellä. Tiedossa on maalaamista, rooleihin heittäytymistä ja hulluttelua. Jokainen päivä sisältää yllättäviä asioita ja kesäkeitaalle saa tulla niin usein kuin haluaa. Alle seitsemänvuotiaat ovat tervetulleita osallistumaan toimintaan aikuisen kanssa.</p><p>HUOM! Juhannusaattona pe 21.6. kesäkeidas on poikkeuksellisesti suljettu.</p><p><b>24.–28.6.<br>Sarjakuvatestaajat</b><br>Sarjakuvat on perinteisesti luotu paperille, mutta tässä nonstop-pajassa heittäydytään ja testaillaan rohkeasti. Kokeilemme luovuuden rajoja yhdistelemällä sarjakuvaa muihin taidemuotoihin. Viikon aikana työpajassa kokeillaan mm. millainen sarjakuva syntyy pihapiiristä löytyvien pikkukivien ja ruohonkorsien avulla?<br> <br><b>1.–5.7. & 8.–12.7.<br>Kaupunki versoo </b><br>Liity seuraamme rakentamaan ihmeellisiä kaupunkinäkymiä ja toisenlaisia todellisuuksia! Työpajassa yhdistämme kollaasitekniikalla lehdistä leikattuja kuvia vanhoihin Helsinki-valokuviin. Halutessasi voit lisätä kuvaan tekstin. Teksti voi olla toivotus, muistutus tai tervehdys joko itsellesi tai jollekin toiselle.<br><b>Pe 12.7. työpaja on peruttu. </b></p><p><b>15.–19.7.<br>Säkenöiviä hahmoja</b><br>Tule luomaan salaperäinen säkenöivä hahmo! Anna mielikuvituksesi lentää: maalaa, eläydy ja leiki! Luodaan maalaten ja rakentaen mustavalossa säkenöiviä naamioita tai pöytäteatterihahmoja. Pääset lisäksi kokeilemaan hahmosi esittämistä teatteritilassa.</p><p><b>22.–26.7.<br>Jäniksen korvia ja käpykruunuja</b><br>Non-stop työpajassa valmistamme Kirsi Kunnaksen inspiroimina eloisan leikitteleviä, lennokkaan luovia ja rehevän rohkeita runollisia päähineitä. Hyödynnämme päähineiden teossa luonnonmateriaaleja. Mitä kaikkea luonto meille tarjoaakaan - oksia, varpuja, kukkia, sulkia, lehtiä ja metsätähtiä. Pääset myös tutustumaan Kirsi Kunnaksen Runo-olohuone -näyttelyyn Annantalon 2. kerroksessa.</p><p><b>29.7.–2.8.<br>Lorujen hahmot </b><br>Loihditaan yhdessä hahmoja pöytäteatteriin ja opitaan, miten pieni marionettinukke rakennetaan. Innoituksena hahmojen luomiseen toimivat Kirsi Kunnaksen riemukkaat lorut. <br>Voit hakea inspiraatiota Kirsi Kunnaksen Runo-olohuone -näyttelystä Annantalon 2. kerroksesta.<br> <br>Nähdään tänä kesänä Annantalolla!</p><p>Kieli: suomi, ruotsi, englanti<br>Ikäsuositus: Kaikenikäisille, alle 8-vuotiaat oman aikuisen kanssa</p>", "sv": "<p>Avgiftsfria Konstgrejer ordnas på Annegården varje vardag kl. 10–12 och 13–15.</p><p>Konstgrejerna äger rum under sommaren 2024 på Annegårdens gård eller inomhus. Den handledda verksamheten passar för under 8-åringar i sällskap av en egen vuxen, och för äldre barn även utan en egen vuxen. Du kan sticka dig in på Konstgrejerna när som helst, eller dröja kvar en längre stund. I verksamheten kombineras olika konstarter och Annegårdens konstpedagoger fungerar som handledare.</p><p>Verksamheten är avgiftsfri och har ingen förhandsanmälan.</p><p><b>Teman för Konstgrejerna</b></p><p><b>3–7.6.<br>Insektliv</b><br>Bzzz... En hurudan insekt skulle du vara? I workshoppen lagar vi insektdelar som man kan klä på sig. Du kan komplettera din egen insektfigur genom att utnyttja skatterna i Annegårdens garderob. När din figur är färdig kan den vara med om äventyr på Annegårdens gård, eller om det regnar så kan den undersöka skrymslen och vrår inomhus.</p><p><b>4–5.6.<br>Supernatur</b><br>Kan en insekt ha robotben? Eller maskinarmar? I workshoppen bygger vi framtidens insekter! Verksamheten handleds av konstnär Christelle Mas, vars utställning du kan uppleva i glasgalleriet på 2. våningen i Annegården.</p><p><b>10–14.6. & 17–20.6. <br>Sommaroas för familjer</b><br>Vad sker på Annegårdens gård? Dra på dig en målarrock och ta med dig ett staffli från gården. Sommaroasen för familjer inbjuder att andas ut mitt i stadens vimmel. Måleri, att hänge sig till roller och skoj utlovas. Varje dag innefattar överraskande moment och man får komma till sommaroasen så ofta man vill. Under sjuåringar är välkomna att delta i verksamheten i sällskap av en vuxen. <br><b>Obs! På midsommarafton fre 21.6 är sommaroasen stängd.</b></p><p><b>24–28.6.<br>Serietestarna </b><br>Traditionellt har serier skapats på papper, men i denna nonstop-workshopp kastar vi oss modigt med och testar. Vi prövar kreativitetens gränser genom att kombinera serier med andra konstarter. Under workshoppveckan undersöker vi huruvida det går att äta serier? Vilka slags serier går det att laga med småstenar och grässtrån från gården?</p><p><b>1–5.7. & 8–12.7.<br>Staden gror</b> <br>Kom med oss och bygg förunderliga stadsvyer och annorlunda verkligheter! I workshoppen kombinerar vi urklippta bilder från tidningar med gamla Helsingforsfotografier genom collageteknik. Om du vill kan du lägga text till bilden. Texten kan vara en tillönskan, påminnelse eller hälsning till dig själv eller någon annan.</p><p><b>15–19.7.<br>Glimmande figurer</b><br>Kom och skapa en mystisk glimmande figur! Låt fantasin flöda: måla, lev dig in och lek! Genom att bygga och måla skapar vi masker eller bordsteaterfigurer som glimmar i svartljus. Du får dessutom pröva på att förevisa din figur i teaterutrymmet.</p><p><b>22–26.7.<br>Haröron och kottkronor</b><br>I den här nonstop-workshoppen låter vi oss inspireras av Kirsi Kunnas och lagar livligt lekfulla, fartfyllt kreativa och frodigt modiga poetiska huvudbonader. Vi utnyttjar naturmaterial för huvudbonaderna. Naturen har så mycket att bjuda på – grenar, kvistar, blommor, fjädrar, blad och skogsstjärnor. Du får även ta del av Kirsi Kunnas utställning Diktvardagsrum på andra våningen i Annegården.</p><p><b>29.7.–2.8.<br>Ramsornas figurer</b> <br>Tillsammans trollar vi fram figurer för bordsteater och lär oss att bygga en liten marionettdocka. Kirsi Kunnas glädjerika ramsor fungerar som inspiration då vi skapar figurerna. <br>Du kan inhämta inspiration på Kirsi Kunnas utställning Diktvardagsrum på andra våningen i Annegården.<br> <br>Vi ses på Annegården i sommar!</p><p>Språk: finska, svenska, engelska<br>Åldersrekommendation: För alla åldrar, under 8-åringar ska ha sällskap av en egen vuxen</p>", "en": "<p>Annantalo arranges free-of-charge Art Things every weekday at 10 am–12 noon and 1–3 pm.</p><p>In summer 2024, Art Things happen in the Annantalo yards or inside the Art Centre. These guided activities are suited for children under 8 years old under the supervision of an adult, and for older children on their own. You can pop by an Art Thing at any time and even stay longer. These activities combine various forms of art with instruction by Annantalo’s art educators.</p><p>The activities are free of charge, and no prior registration is required.</p><p><b>Art Thing themes</b></p><p><b>3–7 June<br>A Bug’s Life</b><br>Buzzzz... What kind of insect would you be? This is a workshop for making wearable insect parts. You will get to complete your insect character with the treasure troves of Annantalo’s costume collection. When your character is ready, you can go on an adventure on the Annantalo yard (or explore the inside of the Art Centre, in case of rain).</p><p><b>4–5 June<br>Supernature</b><br>Can an insect have robot legs? Or the hands of a machine? This is a workshop for creating future insects! The instructor is artist Christelle Mas whose exhibition is available for viewing in the Art Centre’s 2nd floor glass gallery.</p><p><b>10–14 June & 17–20 June <br>Summer Oasis for families</b><br>What on earth is happening in the Annantalo courtyard? Put on a painter’s coat and grab an easel. The Summer Oasis for families is an invitation to take a breather in the busy city centre. Painting, roleplay and fooling around are what’s on the menu. There’s something surprising every day, and you will get to rest at the oasis as often as you’d like. Children under the age of 7 are welcome to participate under the supervision of an adult.</p><p><b>Please note! The Summer Oasis is closed on Midsummer Eve (21 June).</b></p><p><b>24–28 June<br>Experiments on comics</b><br>Comics have traditionally been drawn on paper, but this nonstop workshop takes the plunge to test new things. Push the boundaries of creativity by combining comics with other forms of art. This week’s workshop looks into if you could, possibly, eat a comic? What kind of comics can you make with the pebbles and grasses of your yard?<br> <br><b>1–5 July & 8–12 July<br>Growing city</b> <br>Join us in creating wondrous cityscapes and alternate realities! This workshop is about creating collages of newspaper clippings with old photos of Helsinki. You can add text to your creation if you like. It can be a greeting or reminder to yourself or someone else.</p><p><b>15–19 July<br>Dazzling characters</b><br>Come and create your own dazzling character! Let your imagination loose: paint, become, and play! Create masks or tabletop theatre characters that dazzle under a blacklight through painting and building. You will also get to try out presenting your character in a theatre space.</p><p><b>22–26 July<br>Rabbit ears and pinecone crowns</b><br>This nonstop workshop focuses on creating playful, creative and courageous headpieces, inspired by Kirsi Kunnas’ poetry. The headpieces will be made of natural materials. Whatever is nature's bounty – branches, sprouts, flowers, feathers, leaves and starflowers. You will also get to tour Kirsi Kunnas’ Runo-olohuone exhibition on the Art Centre’s 2nd floor.<br> <br><b>29 July – 2 August<br>Storybook characters</b> <br>Let’s create tabletop characters together and learn how to build a small marionette. We will be using Kirsi Kunnas’ joyful poems to create these characters.</p><p>You can seek inspiration from Kirsi Kunnas’ Runo-olohuone exhibition on the Art Centre’s 2nd floor.<br> <br>See you at Annantalo this summer!</p><p>Language: Finnish, Swedish, English<br>Age recommendation: All ages, children under 8 with an adult</p>" }, "name": { "fi": "Tule tekemään Taidejuttuja! – Nonstop-toimintaa arkisin läpi kesän", "sv": "Kom och gör Konstgrejer! – Nonstop-verksamhet vardagar under hela sommaren", "en": "Come make Art Things! – Nonstop activities on summer weekdays" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63197/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agihzh7lny", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/97/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/97/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/97/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/97/signup-group/create" }, "description": null, "price": null } ], "data_source": "helsinki", "publisher": "ahjo:00001", "sub_events": [], "images": [ { "id": 151647, "has_user_editable_resources": true, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-04T07:05:50.414871Z", "last_modified_time": "2024-07-04T07:18:09.366664Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/Motor1.png", "name": "tämmöstä ois sitte luvassa", "cropping": "100,0,500,401", "photographer_name": "", "alt_text": "koristeellinen kuva, josta ei välity tietoa", "data_source": "helsinki", "publisher": "ahjo:u02100", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151647/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" } ], "created_time": "2024-07-04T07:22:53.729791Z", "last_modified_time": "2024-07-04T07:29:17.095182Z", "date_published": null, "start_time": "2024-07-13T15:00:00Z", "end_time": "2024-07-14T01:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": 10, "audience_max_age": 20, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 200, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-07-04T00:47:00+03:00", "enrolment_end_time": "2024-07-21T01:07:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Testausta", "en": "short description" }, "info_url": { "fi": "", "en": "" }, "description": { "fi": "<p>Testausta</p>", "en": "<p>this would be a longer description</p>" }, "name": { "fi": "LinkedTest", "en": "test event" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sivuovest sisään", "en": "Use the side entráncé" }, "provider": { "fi": "", "en": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agihzh7lny/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aginrz3l4u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "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-07-03T12:37:44.559314Z", "last_modified_time": "2024-07-04T07:01:41.969659Z", "date_published": "2024-07-22T04:59:00Z", "start_time": "2024-07-22T05:00:00Z", "end_time": "2024-08-11T15: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": "Claudia Varjotien taidenäyttely \"Tender Contemplation\" Entressen kirjaston Galleria Betonissa 22.7.-11.8.2024. Tervetuloa!", "sv": "Claudia Varjoties utställning \"Tender Contemplation\" i Entressebiblioteket under tiden 22.7.-11.8.2024.", "en": "Art exhibition \"Tender Contempation\" by Claudia Varjotie in Entresse Library during 22.7.-11.8.2024." }, "info_url": null, "description": { "fi": "<p>Tender Contemplation is a collection of works inspired by colours, shapes, flowers, leaves, and birds in soft and oil pastels, coloring pencils, and acrylic paint. It portrays the beauty of simple things. The intention in each piece is to elevate the spirit and take the spectator to that cozy time and place in memory, like a childhood moment when looking at grandma's table with fresh-cut flowers, or listening to a bird chirping on the fence on a calm rainy day.<br><br><br>All the works are available for purchase. They will remain in show till the end of the exhibition, but you can already reserve pieces via e-mail: cvarjotie@yahoo.com.<br><br><br>www.claudiavarjotie.com<br>https://www.facebook.com/claudiaillustrates/<br></p>", "sv": "<p>Välkommen att besöka Claudia Varjoties utställning \"Tendet Contemplation\" i Entressebiblioteket under tiden 22.7.-11.8.2024. Utställningen kan ses under bibliotekets öpettider.<br><br><br>www.claudiavarjotie.com<br>https://www.facebook.com/claudiaillustrates/<br></p>", "en": "<p>Tender Contemplation is a collection of works inspired by colours, shapes, flowers, leaves, and birds in soft and oil pastels, coloring pencils, and acrylic paint. It portrays the beauty of simple things. The intention in each piece is to elevate the spirit and take the spectator to that cozy time and place in memory, like a childhood moment when looking at grandma's table with fresh-cut flowers, or listening to a bird chirping on the fence on a calm rainy day.<br><br><br>All the works are available for purchase. They will remain in show till the end of the exhibition, but you can already reserve pieces via e-mail: cvarjotie@yahoo.com.<br><br><br>www.claudiavarjotie.com<br>https://www.facebook.com/claudiaillustrates/<br></p>" }, "name": { "fi": "Claudia Varjotie: Tender Contemplation 22.7.-11.8.2024", "sv": "Claudia Varjotie: Tender Contemplation 22.7.-11.8.2024", "en": "Claudia Varjotie: Tender Contemplation 22.7.-11.8.2024" }, "provider_contact_info": null, "location_extra_info": { "fi": "Galleria Betoni" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aginrz3l4u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63704", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151621, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T13:13:22.080586Z", "last_modified_time": "2024-07-03T13:13:22.080599Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752130.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151621/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T13:13:22.066794Z", "last_modified_time": "2024-07-03T14:13:19.542734Z", "date_published": null, "start_time": "2024-09-11T11: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": "Malminkartanon vanhan sotilasvirkatalon mailla toimi vuosikymmeniä yliopiston koetila, joka väistyi 1980-luvulla kunnianhimoisesti, uusien ihanteiden mukaan suunnitellun kaupunginosan tieltä.", "sv": "I flera årtionden fungerade universitetets försöksgård på markerna för den gamla militärtjänstebostaden i Malmgård, men på 1980-talet fick den ge vika för den nya stadsdelen som planerades enligt ambitiösa, nya ideal.", "en": "For decades, the premises of the old military office building in Malminkartano served as a test farm for the university, which, in the 1980s, gave way to the bold, new ideas of the newly planned district." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CBA3A6AAFE488BF2DB4C52CE551A44A4/Malminkartanon_vaiheita_kavellen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CBA3A6AAFE488BF2DB4C52CE551A44A4/Malmgards_skeden_genom_promenad", "en": "http://www.kanneltalo.fi/en/events/event/CBA3A6AAFE488BF2DB4C52CE551A44A4/A_walk_through_the_history_of_Malminkartano" }, "description": { "fi": "<p>Malminkartanon vanhan sotilasvirkatalon mailla toimi vuosikymmeniä yliopiston koetila, joka väistyi 1980-luvulla kunnianhimoisesti, uusien ihanteiden mukaan suunnitellun kaupunginosan tieltä.</p><p>Nyt Malminkartanoa uudistetaan, ja on aika luoda silmäys kaupunginosan kerrokselliseen historiaan, jonka arvot ovat hiljalleen hahmottumassa.</p><p>Kävely on toteutettu yhteistyössä WalkHelsingin, liikuntapalveluiden, Helsingin kaupunginmuseon ja Kanneltalon kesken, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 Helsingin kaupunginmuseon päärakennuksessa, Aleksanterinkatu 16.</p><p>Kesto: noin 90 min</p><p>Vapaa pääsy, ilmoittaudu mukaan kävelylle etukäteen: https://walkhelsinki.fi/yleisoopastukset/</p>", "sv": "<p>I flera årtionden fungerade universitetets försöksgård på markerna för den gamla militärtjänstebostaden i Malmgård, men på 1980-talet fick den ge vika för den nya stadsdelen som planerades enligt ambitiösa, nya ideal.</p><p>Nu förnyas Malmgård och det är dags att ta en titt på stadsdelens skiktade historia, vars värderingar långsamt börjar ta form.</p><p>Promenaden har genomförts i samarbete mellan WalkHelsinki, idrottstjänsterna, Helsingfors stadsmuseum och Gamlasgården, och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p><p>Längd: ca 90 min.<br>Språk: finska</p>", "en": "<p>For decades, the premises of the old military office building in Malminkartano served as a test farm for the university, which, in the 1980s, gave way to the bold, new ideas of the newly planned district.</p><p>Now that Malminkartano is being renovated, it is time to take a look at the layered history of the district, whose values are slowly beginning to emerge.</p><p>The walk has been carried out in cooperation between WalkHelsinki, sports services, the Helsinki City Museum and Kanneltalo, and it is related to the Mestat ja huudit – See Helsinki Differently exhibition, which is on display from 9 May to 15 September 2024 in the main building of the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Duration: approx. 90 mins.<br>Language: Finnish</p>" }, "name": { "fi": "Malminkartanon vaiheita kävellen", "sv": "Malmgårds skeden genom promenad", "en": "A walk through the history of Malminkartano" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63704/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63703", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151620, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T13:13:21.474916Z", "last_modified_time": "2024-07-03T13:13:21.474931Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752129.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151620/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T13:13:21.455916Z", "last_modified_time": "2024-07-03T14:13:18.834343Z", "date_published": null, "start_time": "2024-09-04T15: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": "Malminkartanon vanhan sotilasvirkatalon mailla toimi vuosikymmeniä yliopiston koetila, joka väistyi 1980-luvulla kunnianhimoisesti, uusien ihanteiden mukaan suunnitellun kaupunginosan tieltä.", "sv": "I flera årtionden fungerade universitetets försöksgård på markerna för den gamla militärtjänstebostaden i Malmgård, men på 1980-talet fick den ge vika för den nya stadsdelen som planerades enligt ambitiösa, nya ideal.", "en": "For decades, the premises of the old military office building in Malminkartano served as a test farm for the university, which, in the 1980s, gave way to the bold, new ideas of the newly planned district." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E545CA8821483AAFC2A1DC7EEFAEDFB2/Malminkartanon_vaiheita_kavellen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E545CA8821483AAFC2A1DC7EEFAEDFB2/Malmgards_skeden_genom_promenad", "en": "http://www.kanneltalo.fi/en/events/event/E545CA8821483AAFC2A1DC7EEFAEDFB2/A_walk_through_the_history_of_Malminkartano" }, "description": { "fi": "<p>Malminkartanon vanhan sotilasvirkatalon mailla toimi vuosikymmeniä yliopiston koetila, joka väistyi 1980-luvulla kunnianhimoisesti, uusien ihanteiden mukaan suunnitellun kaupunginosan tieltä.</p><p>Nyt Malminkartanoa uudistetaan, ja on aika luoda silmäys kaupunginosan kerrokselliseen historiaan, jonka arvot ovat hiljalleen hahmottumassa.</p><p>Kävely on toteutettu yhteistyössä WalkHelsingin, liikuntapalveluiden, Helsingin kaupunginmuseon ja Kanneltalon kesken, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 Helsingin kaupunginmuseon päärakennuksessa, Aleksanterinkatu 16.</p><p>Kesto: noin 90 min</p><p>Vapaa pääsy, ilmoittaudu mukaan kävelylle etukäteen: https://walkhelsinki.fi/yleisoopastukset/</p>", "sv": "<p>I flera årtionden fungerade universitetets försöksgård på markerna för den gamla militärtjänstebostaden i Malmgård, men på 1980-talet fick den ge vika för den nya stadsdelen som planerades enligt ambitiösa, nya ideal.</p><p>Nu förnyas Malmgård och det är dags att ta en titt på stadsdelens skiktade historia, vars värderingar långsamt börjar ta form.</p><p>Promenaden har genomförts i samarbete mellan WalkHelsinki, idrottstjänsterna, Helsingfors stadsmuseum och Gamlasgården, och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p><p>Längd: ca 90 min.<br>Språk: finska</p>", "en": "<p>For decades, the premises of the old military office building in Malminkartano served as a test farm for the university, which, in the 1980s, gave way to the bold, new ideas of the newly planned district.</p><p>Now that Malminkartano is being renovated, it is time to take a look at the layered history of the district, whose values are slowly beginning to emerge.</p><p>The walk has been carried out in cooperation between WalkHelsinki, sports services, the Helsinki City Museum and Kanneltalo, and it is related to the Mestat ja huudit – See Helsinki Differently exhibition, which is on display from 9 May to 15 September 2024 in the main building of the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Duration: approx. 90 mins.<br>Language: Finnish</p>" }, "name": { "fi": "Malminkartanon vaiheita kävellen", "sv": "Malmgårds skeden genom promenad", "en": "A walk through the history of Malminkartano" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63703/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63675", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151635, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T14:13:18.624043Z", "last_modified_time": "2024-07-03T14:13:18.624058Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751970.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151635/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T14:13:18.573580Z", "last_modified_time": "2024-07-03T14:13:18.688631Z", "date_published": null, "start_time": "2024-09-04", "end_time": "2024-09-27", "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": "Ihmisiksi on Elviira Davidowin luoma rauhankasvatuksellinen näyttely-, esitys- ja työpajakokonaisuus. Kuinka elää hyvää elämää tavalla, joka olisi hyväksi myös muille ihmisille ja planeetallemme?", "sv": "Ihmisiksi är en utställnings-, performans- och workshophelhet om fredsfostran skapad av Elviira Davidow. Hur lever man ett gott liv på ett sätt som också är bra för andra människor och vår planet?", "en": "Ihmisiksi is an exhibition, performance and workshop ensemble on peace education by Elviira Davidow. How do you live a good life in a way that is also good for other people and our planet?" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2D05CBFE1813A3813BD8E600E71A7722/Elviira_Davidow_Ihmisiksi", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2D05CBFE1813A3813BD8E600E71A7722/Elviira_Davidow_Ihmisiksi_Vara_som_folk_", "en": "http://www.kanneltalo.fi/en/events/event/2D05CBFE1813A3813BD8E600E71A7722/Elvira_Davidow_Ihmisiksi" }, "description": { "fi": "<p>Ihmisiksi on Elviira Davidowin luoma rauhankasvatuksellinen näyttely-, esitys- ja työpajakokonaisuus. Kuinka elää hyvää elämää tavalla, joka olisi hyväksi myös muille ihmisille ja planeetallemme?</p><p>Kuinka löytää keinoja vaikuttaa asioihin, jotka liittyvät minun kotimaahani, sen yhteiskuntaan ja ympäristöön – tai jopa koko maapalloon?</p><p>Paperinukketeatterin sekä varjoteatterin keinoin toteutettava näyttely koostuu pienoisnäyttämöistä, sätkynukeista, kurkistuslaatikoista, työpajojen kautta syntyneestä materiaalista sekä informatiivisesta osiosta.</p><p>Näyttely sukeltaa Hanna Niittymäen kirjan <i>Ihmisiksi elämisen taito</i> (Umpihanki, 2021) teemoihin, joita ovat esimerkiksi ihmisyys, arvot, dialogisuus, syrjintä, sota ja rauha sekä ekokriisi ja rakkaus.</p><p>Yhteistyössä: Suomen Rauhapuolustajat, Aura of puppets ry, PAND – taiteilijat rauhan puolesta sekä Rauhankasvatusneuvola</p>", "sv": "<p>Ihmisiksi är en utställnings-, performans- och workshophelhet om fredsfostran skapad av Elviira Davidow. Hur lever man ett gott liv på ett sätt som också är bra för andra människor och vår planet?</p><p>Hur hittar man sätt att påverka frågor som relaterar till ens land, dess samhälle och miljö – eller till och med hela planeten?</p><p>Utställningen som genomförs med hjälp av pappersdockteater och skuggteater består av miniscener, marionetter, tittskåp, material som skapats vid workshoppar och en informativ del.</p><p>Utställningen fördjupar sig i teman från Hanna Niittymäkis bok <i>Ihmisiksi elämisen taito</i> (Umpihanki, 2021), såsom mänsklighet, värderingar, dialogicitet, diskriminering, krig och fred, ekokrisen och kärlek.</p><p>I samarbete: Fredskämparna i Finland, Aura of puppets ry, PAND – konstnärer för fred och Rauhankasvatusneuvola</p>", "en": "<p>Ihmisiksi is an exhibition, performance and workshop ensemble on peace education by Elviira Davidow. How do you live a good life in a way that is also good for other people and our planet?</p><p>How do you find ways to influence issues that impact your home country, its society and environment – or even the whole planet?</p><p>The exhibition, which is carried out by means of paper puppet theatre and shadow play, consists of mini stages, puppets, peek boxes, material created in the workshops, as well as an informative section.</p><p>The exhibition is a deep dive into the themes of Hanna Niittymäki’s book <I>Ihmisiksi elämisen taito</I> (Umpihanki, 2021), such as humanity, values, dialogue, discrimination, war and peace, as well as the climate crisis and love.</p><p>In cooperation with: Suomen Rauhanpuolustajat, Aura of puppets ry, PAND – Artists for Peace and the Peace Education Clinic</p>" }, "name": { "fi": "Elviira Davidow: Ihmisiksi", "sv": "Elviira Davidow: Ihmisiksi (Vara som folk)", "en": "Elvira Davidow: Ihmisiksi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63675/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63860", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151616, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T13:13:11.466345Z", "last_modified_time": "2024-07-03T13:13:11.466360Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753235.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151616/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T13:13:11.426863Z", "last_modified_time": "2024-07-03T13:13:11.526269Z", "date_published": null, "start_time": "2024-06-03", "end_time": "2024-07-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": "Kesän vitriininäyttely on omistettu modernin tanssin ja tanssiterapian äidille Riitta Vainiolle." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F33236985AA3DA8C7CD99BA00267E887/Aija_Johanssonin_batiikkiteoksia" }, "description": { "fi": "<p>Kesän vitriininäyttely on omistettu modernin tanssin ja tanssiterapian äidille Riitta Vainiolle.</p><p>Taiteilijana Aija Johansson Haagan Taideseurasta.<br> <br>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura</p>" }, "name": { "fi": "Aija Johanssonin batiikkiteoksia – Haagan Taideseura" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63860/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:4e42cd1d-6a26-4ea7-9fb8-c41dfc062b6d", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=TL-DG020720241572087713" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151615, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-03T06:57:05.366985Z", "last_modified_time": "2024-07-03T06:57:05.367002Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e15bb5dd-9b16-ef11-9f89-0022489e55b1", "name": "Testi", "cropping": "", "photographer_name": "Testi", "alt_text": "Testi", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151615/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-07-03T06:40:59.818754Z", "last_modified_time": "2024-07-03T06:57:06.179337Z", "date_published": "2024-07-03T06:30:15Z", "start_time": "2024-09-01T10:28:00Z", "end_time": "2024-09-01T12:28:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-07-02T08:00:00+03:00", "enrolment_end_time": "2024-08-26T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "TL-DG.03.07.2024" }, "info_url": null, "description": { "fi": "<div><p>TL-DG.03.07.2024</p></div>" }, "name": { "fi": "TL-DG.03.07.2024" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Tomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:4e42cd1d-6a26-4ea7-9fb8-c41dfc062b6d/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:6a56deb6-854d-4028-8e70-f5d14558495c", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TL-DG020720242404307361" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-07-02T10:21:34.047502Z", "last_modified_time": "2024-07-02T14:32:12.176780Z", "date_published": "2024-07-02T10:20:31Z", "start_time": "2024-09-01T10:28:00Z", "end_time": "2024-09-01T12:28:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-07-02T08:00:00+03:00", "enrolment_end_time": "2024-08-26T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "TL-DG.02.07.2024" }, "info_url": null, "description": { "fi": "<div><p>TL-DG.02.07.2024</p></div>" }, "name": { "fi": "TL-DG.02.07.2024" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Tomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:6a56deb6-854d-4028-8e70-f5d14558495c/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64161", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151612, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:11.885666Z", "last_modified_time": "2024-07-02T13:13:11.885677Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751208.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151612/?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-07-02T13:13:11.876287Z", "last_modified_time": "2024-07-02T13:13:11.928142Z", "date_published": null, "start_time": "2024-09-18T07:30: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": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/59EF70A91071E5CD871120D1E60BE070/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/59EF70A91071E5CD871120D1E60BE070/Skogssagostunder_med_Jussi_Ollila", "en": "http://www.vuotalo.fi/en/events/event/59EF70A91071E5CD871120D1E60BE070/Jussi_Ollila_s_forest_fairy_tales" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille", "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer", "en": "Jussi Ollila's forest fairy tales – For day-care groups and families" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64161/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64160", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151611, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:11.808746Z", "last_modified_time": "2024-07-02T13:13:11.808758Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751207.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151611/?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-07-02T13:13:11.799165Z", "last_modified_time": "2024-07-02T13:13:11.847368Z", "date_published": null, "start_time": "2024-09-18T06:15: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": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E079BD77FC734C3E73574D745BDAC6AA/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E079BD77FC734C3E73574D745BDAC6AA/Skogssagostunder_med_Jussi_Ollila", "en": "http://www.vuotalo.fi/en/events/event/E079BD77FC734C3E73574D745BDAC6AA/Jussi_Ollila_s_forest_fairy_tales" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille", "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer", "en": "Jussi Ollila's forest fairy tales – For day-care groups and families" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64160/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64159", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151608, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:10.725746Z", "last_modified_time": "2024-07-02T13:13:10.725760Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751205.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151608/?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-07-02T13:13:10.711695Z", "last_modified_time": "2024-07-02T13:13:10.778192Z", "date_published": null, "start_time": "2024-09-04T07:30:00Z", "end_time": "2024-09-04T08: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": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Skogssagostunder_med_Jussi_Ollila", "en": "http://www.vuotalo.fi/en/events/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Jussi_Ollila_s_forest_fairy_tales" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille", "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer", "en": "Jussi Ollila's forest fairy tales – For day-care groups and families" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64159/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64158", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151607, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:10.609988Z", "last_modified_time": "2024-07-02T13:13:10.610002Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751204.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151607/?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-07-02T13:13:10.596120Z", "last_modified_time": "2024-07-02T13:13:10.676004Z", "date_published": null, "start_time": "2024-09-04T06:15: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": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5C64E131AED705E49E55E9A91BD10F54/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5C64E131AED705E49E55E9A91BD10F54/Skogssagostunder_med_Jussi_Ollila", "en": "http://www.vuotalo.fi/en/events/event/5C64E131AED705E49E55E9A91BD10F54/Jussi_Ollila_s_forest_fairy_tales" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille", "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer", "en": "Jussi Ollila's forest fairy tales – For day-care groups and families" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64158/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64157", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151606, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:10.369512Z", "last_modified_time": "2024-07-02T13:13:10.369534Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748950.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151606/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-02T13:13:10.332103Z", "last_modified_time": "2024-07-02T13:13:10.439358Z", "date_published": null, "start_time": "2024-09-03", "end_time": "2024-09-28", "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": "Valokuvataiteilija Hanne Kiiverin teokset kutsuvat katsojan pohtimaan, mitä enkelit ovat ja miltä ne voivat näyttää tänä päivänä.", "sv": "Fotografen Hanne Kiiveris verk inbjuder betraktaren att begrunda vad änglar är och hur de kan se ut i dag.", "en": "Photographer Hanne Kiiveri's works invite the viewer to reflect on what angels are and what they might look like today." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DAE496C7E21310154F10383B5FA488C8/Kenen_enkelit_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DAE496C7E21310154F10383B5FA488C8/Vems_anglar_", "en": "http://www.vuotalo.fi/en/events/event/DAE496C7E21310154F10383B5FA488C8/Whose_Angels_" }, "description": { "fi": "<p>Valokuvataiteilija Hanne Kiiverin teokset kutsuvat katsojan pohtimaan, mitä enkelit ovat ja miltä ne voivat näyttää tänä päivänä.</p><p>Kenen enkelit? -taidenäyttely kiertää pääkaupunkiseutua vuonna 2024. Kiiverin enkeleitä voi kohdata ostarilla, galleriassa, kirkossa ja internetissä. Valokuvat kuuluvat hankkeeseen, jossa luodaan ja tutkitaan nykyaikaisia mielikuvia enkeleistä.</p><p>Tule katsomaan näyttelyn kuvat ja keskustele niistä kanssamme. Miltä sinun enkelisi näyttää? Osallistu hankkeeseen myös suunnittelemalla oma enkelikuvasi taiteilijan kanssa.</p><p>Näyttelyvieraiden ajatukset ja kerätään tutkimusaineistoksi sähköisellä kyselyllä. Tutkimus toteutetaan Helsingin yliopistossa. Projektin rahoittaa Koneen Säätiö.</p><p>Näyttelyn avajaiset ke 4.9. klo 18–19:30</p><p>Lisätiedot ja tarkemmat osallistumisohjeet: <br>https://blogs.helsinki.fi/kenenenkelit/</p>", "sv": "<p>Fotografen Hanne Kiiveris verk inbjuder betraktaren att begrunda vad änglar är och hur de kan se ut i dag.</p><p>Konstutställningen Kenen enkelit? turnerar i huvudstadsregionen under 2024. Du kan råka på Kiiveris änglar i köpcentra, gallerier, kyrkor och på internet. Fotografierna är en del av ett projekt för att skapa och utforska samtida fantasibilder av änglar.</p><p>Kom och titta på utställningens bilder och diskutera dem med oss. Hur ser din ängel ut? Du kan också delta i projektet genom att designa en egen ängelbild tillsammans med konstnären.<br>Utställningsbesökarnas tankar samlas in genom en elektronisk enkät. Forskningen utförs vid Helsingfors universitet. Projektet finansieras av Konestiftelsen.</p><p>Utställningens vernissage äger rum ons 4.9. kl. 18–19:30</p><p>Du hittar mer information och detaljerade anvisningar för att delta på: <br>https://blogs.helsinki.fi/kenenenkelit/</p>", "en": "<p>Photographer Hanne Kiiveri's works invite the viewer to reflect on what angels are and what they might look like today.</p><p>Whose Angels? art exhibition will tour the Helsinki metropolitan area in 2024. You can find Kiiveri’s angels at the mall, gallery, church and on the Internet. Photographs are part of a project to create and explore contemporary angel images.</p><p>Come and check out the exhibition photos and discuss them with us. What does your angel look like? You can also participate in the project by designing your own angel image with the artist.<br>The artist will collect the exhibition guests’ ideas as research material with an electronic survey. The study will be carried out at the University of Helsinki. The project is funded by Kone Foundation.</p><p>Opening of the exhibition on Wed 4 September at 6–7:30 pm</p><p>Additional information and detailed instructions for participants: <br>https://blogs.helsinki.fi/kenenenkelit/en/</p>" }, "name": { "fi": "Kenen enkelit? – Taidetta, tutkimusta ja lumoa", "sv": "Vems änglar? – Konst, forskning och förtrollning", "en": "Whose Angels? – Art, research and enchantment" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64157/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }