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
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=170&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 10857, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=171&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=169&publisher_ancestor=ahjo%3A00001" }, "data": [ { "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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752130.jpg", "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." }, "provider": null, "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>" }, "provider_contact_info": null, "name": { "fi": "Malminkartanon vaiheita kävellen", "sv": "Malmgårds skeden genom promenad", "en": "A walk through the history of Malminkartano" }, "location_extra_info": 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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752129.jpg", "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." }, "provider": null, "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>" }, "provider_contact_info": null, "name": { "fi": "Malminkartanon vaiheita kävellen", "sv": "Malmgårds skeden genom promenad", "en": "A walk through the history of Malminkartano" }, "location_extra_info": 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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751970.jpg", "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?" }, "provider": null, "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>" }, "provider_contact_info": null, "name": { "fi": "Elviira Davidow: Ihmisiksi", "sv": "Elviira Davidow: Ihmisiksi (Vara som folk)", "en": "Elvira Davidow: Ihmisiksi" }, "location_extra_info": 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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753235.jpg", "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." }, "provider": null, "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>" }, "provider_contact_info": null, "name": { "fi": "Aija Johanssonin batiikkiteoksia – Haagan Taideseura" }, "location_extra_info": 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": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=TL-DG020720241572087713" } } ], "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", "name": "Testi", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e15bb5dd-9b16-ef11-9f89-0022489e55b1", "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" }, "provider": { "fi": "Tomi" }, "info_url": null, "description": { "fi": "<div><p>TL-DG.03.07.2024</p></div>" }, "provider_contact_info": null, "name": { "fi": "TL-DG.03.07.2024" }, "location_extra_info": null, "@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": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TL-DG020720242404307361" } } ], "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" }, "provider": { "fi": "Tomi" }, "info_url": null, "description": { "fi": "<div><p>TL-DG.02.07.2024</p></div>" }, "provider_contact_info": null, "name": { "fi": "TL-DG.02.07.2024" }, "location_extra_info": null, "@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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751208.jpg", "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." }, "provider": null, "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>" }, "provider_contact_info": null, "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" }, "location_extra_info": 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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751207.jpg", "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." }, "provider": null, "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>" }, "provider_contact_info": null, "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" }, "location_extra_info": 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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751205.jpg", "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." }, "provider": null, "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>" }, "provider_contact_info": null, "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" }, "location_extra_info": 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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751204.jpg", "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." }, "provider": null, "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>" }, "provider_contact_info": null, "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" }, "location_extra_info": 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": [], "description": null, "price": null, "info_url": 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", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748950.jpg", "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." }, "provider": null, "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>" }, "provider_contact_info": null, "name": { "fi": "Kenen enkelit? – Taidetta, tutkimusta ja lumoa", "sv": "Vems änglar? – Konst, forskning och förtrollning", "en": "Whose Angels? – Art, research and enchantment" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64157/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63339", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 119586, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-10T14:13:51.770080Z", "last_modified_time": "2024-04-10T14:13:51.770097Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746194.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/119586/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-10T14:13:51.746843Z", "last_modified_time": "2024-07-02T07:12:59.947270Z", "date_published": null, "start_time": "2024-07-29T07:00:00Z", "end_time": "2024-08-02T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": 10, "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 2024 taideleireillä lähdetään ihmettelyretkelle metsään!" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/689E576873AF4988EA42D1589BFAE711/TAYNNA_Luovasti_metsassa_-kesataideleiri" }, "description": { "fi": "<p>Kesän 2024 taideleireillä lähdetään ihmettelyretkelle metsään!</p><p>Taideleireillä tutustutaan erilaisiin maalaamisen ja piirtämisen perustekniikoihin sekä luonnosta saataviin materiaaleihin. Niiden kanssa havainnoimme lähimetsän kuhinaa ja päästämme mielikuvituksemme liitelemään.</p><p>Taideleiri kestää viisi päivää. Kokoonnumme maanantaista perjantaihin klo 10–14 Kanneltaloon ja lähimetsään.</p><p>Huom! Poikkeuksena kokopäiväretki Seurasaareen, jolloin päivä alkaa klo 9.30 ja päättyy klo 14.30.</p><p>Taideleiri on maksuton, mutta edellyttää sitoutumista koko viikon työskentelyyn. Taideleirille otetaan enintään 10 oppilasta. Taideleirit järjestetään yhteistyössä Helsingin Taiteilijaseuran kanssa.</p><p>Opettajana toimii kuvataiteilija Piia Kokkarinen.</p><p>Opetuspaikka: Kanneltalo<br>Ikä: 7–10-vuotiaat</p><p>Ilmoittautumiset: 15.4. alkaen: liisa.paatsalo@hel.fi</p><p>HUOM! Ilmoittautumisen yhteydessä: kerro haetko paikkaa kesäkuun vai heinäkuun lopussa alkavalle leirille.</p><p><b>Muista ottaa leirille mukaan:</b><br>- säähän sopivat vaatteet, joissa on mukava liikkua<br>- päähine ja aurinkorasva<br>- omat eväät (ei karkkia, sipsejä tai limua)</p>" }, "provider_contact_info": null, "name": { "fi": "TÄYNNÄ Luovasti metsässä -kesätaideleiri – 7–10-vuotiaille lapsille" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63339/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:621dc19c-fc49-4ba0-94b2-0470e5ad02ba", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/ba311138-7213-ef11-9f89-000d3ab0fc3c?readableEventId=Custom_Journey_Testing_TL-DG-100620242381574036" } } ], "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-06-27T10:13:55.347867Z", "last_modified_time": "2024-07-01T14:30:07.278311Z", "date_published": "2024-06-10T12:26:04Z", "start_time": "2024-07-25T09:30:00Z", "end_time": "2024-07-25T09:45: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-06-06T08:00:00+03:00", "enrolment_end_time": "2024-06-09T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Custom Journey Testing V2 TL-DG-10.06.2024" }, "provider": { "fi": "Tomi Lepistö" }, "info_url": null, "description": { "fi": "<div><p>Custom Journey Testing V2 TL-DG-10.06.2024</p></div>" }, "provider_contact_info": null, "name": { "fi": "Custom Journey Testing V2 TL-DG-27.06.2024" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:621dc19c-fc49-4ba0-94b2-0470e5ad02ba/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64067", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151590, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-01T12:13:00.959945Z", "last_modified_time": "2024-07-01T12:13:00.959959Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755464.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151590/?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-01T12:13:00.948251Z", "last_modified_time": "2024-07-01T12:13:01.002995Z", "date_published": null, "start_time": "2024-09-06T10:00:00Z", "end_time": "2024-09-06T11: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": "Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta." }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/19DA44610D740B773FB9869F1A81E663/Metsaan_laskeutumiset_koululaisille" }, "description": { "fi": "<p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta.</p><p>Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 21.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu<br>Paikka: Karhukallion metsä Roihupellossa<br>Ikäsuositus: 4–8-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy.</p><p>Pakolliset ennakkoilmoittautumiset: kultus.fi, 12.8. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "name": { "fi": "Metsään laskeutumiset koululaisille – Esityksellinen rentoutumishetki koululaisille Karhukallion metsässä" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64067/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64066", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151589, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-01T12:13:00.867706Z", "last_modified_time": "2024-07-01T12:13:00.867722Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755440.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151589/?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-01T12:13:00.855846Z", "last_modified_time": "2024-07-01T12:13:00.911020Z", "date_published": null, "start_time": "2024-09-06T09:00:00Z", "end_time": "2024-09-06T10: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": "Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta." }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D82B1173A11A475B8C153A8371C91843/Metsaan_laskeutumiset_paivakotiryhmille" }, "description": { "fi": "<p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta.</p><p>Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 21.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu<br>Paikka: Karhukallion metsä Roihupellossa<br>Ikäsuositus: 4–8-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy.</p><p>Pakolliset ennakkoilmoittautumiset: kultus.fi, 12.8. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "name": { "fi": "Metsään laskeutumiset päiväkotiryhmille – Esityksellinen rentoutumishetki päiväkotiryhmille Karhukallion metsässä" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64066/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64089", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151588, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-01T12:12:59.442244Z", "last_modified_time": "2024-07-01T12:12:59.442266Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755652.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151588/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-01T12:12:59.425607Z", "last_modified_time": "2024-07-01T12:12:59.492846Z", "date_published": null, "start_time": "2024-08-29T08:30:00Z", "end_time": "2024-09-26T10: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": "Luonnos! -kursseilla mennään metsään, herkistetään aisteja ja tutkitaan luontoa taiteen avulla ja ympäristökasvatuksellisin menetelmin." }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/0DEE83D1DBBBD61A8FC42BEEACA4328E/Luonnos_-taide-_ja_luontokurssi" }, "description": { "fi": "<p>Luonnos! -kursseilla mennään metsään, herkistetään aisteja ja tutkitaan luontoa taiteen avulla ja ympäristökasvatuksellisin menetelmin.</p><p>Lähimetsä toimii kurssilla oppimisympäristönä ja taiteellisen tekemisen lähtökohtana. Tavoitteena on vahvistaa koululaisten luontoyhteyttä ja ympäristökansalaisuutta sekä tarjota opettajille työkaluja ympäristöön liittyvien aiheiden käsittelyyn.</p><p>Viiden kerran kurssikokonaisuus tapahtuu pääosin ulkoluokassa. Kurssin aikana tutkitaan monimuotoista luontoa ja omaa suhdettamme siihen, tehdään yksi pidempi luontoretki ja lopuksi järjestetään metsäiset näyttelyn avajaiset.</p><p>Siispä luupit ja taidetarvikkeet mukaan, ja mars syksyiseen metsään!</p><p>Kurssikerrat:<br>to 29.8. klo 11.30–13<br>to 5.9. klo 11.30–13<br>to 12.9. klo 11.30–13<br>to 19.9. klo 11.30–13<br>to 26.9. klo 11.30–13</p><p>Kurssien teemat ja vierailukohteet vaihtelevat kausittain. Opetuspaikkoina ovat Matokallion metsä, Stoa ja Mustavuorien metsä.</p><p>Taideopettajat: kuvataiteilijat Greta Salonen ja Juho Hellsten<br>Luonto-opettajat: yhteistyössä Vantaan luontokoulu</p><p>Ikäsuositus: 3.–4.-luokkalaiset<br>Kesto: 5x90 min<br>Kieli: suomi <br>Vapaa pääsy</p><p>Ilmoittautuminen ja lisätiedot: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "name": { "fi": "Luonnos! -taide- ja luontokurssi – 3.–4.-luokkalaisille ja valmistaville alakoululuokille" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64089/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64086", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151585, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-01T12:12:58.785628Z", "last_modified_time": "2024-07-01T12:12:58.785645Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755637.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151585/?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-01T12:12:58.747999Z", "last_modified_time": "2024-07-01T12:12:58.853082Z", "date_published": null, "start_time": "2024-08-28T06:15:00Z", "end_time": "2024-09-25T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Luonnos! -kursseilla mennään metsään, herkistetään aisteja ja tutkitaan luontoa taiteen avulla ja ympäristökasvatuksellisin menetelmin." }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9171ECFC9B036864145AD9C3D2253DD5/Luonnos_-taide-_ja_luontokurssi" }, "description": { "fi": "<p>Luonnos! -kursseilla mennään metsään, herkistetään aisteja ja tutkitaan luontoa taiteen avulla ja ympäristökasvatuksellisin menetelmin.</p><p>Lähimetsä toimii kurssilla oppimisympäristönä ja taiteellisen tekemisen lähtökohtana. Tavoitteena on vahvistaa koululaisten luontoyhteyttä ja ympäristökansalaisuutta sekä tarjota opettajille työkaluja ympäristöön liittyvien aiheiden käsittelyyn.</p><p>Viiden kerran kurssikokonaisuus tapahtuu pääosin ulkoluokassa. Kurssin aikana tutkitaan monimuotoista luontoa ja omaa suhdettamme siihen, tehdään yksi pidempi luontoretki ja lopuksi järjestetään metsäiset näyttelyn avajaiset. Siispä luupit ja taidetarvikkeet mukaan, ja mars syksyiseen metsään!</p><p>Kurssien teemat ja vierailukohteet vaihtelevat kausittain.</p><p>Opetuspaikkoina ovat Matokallion metsä, Stoa ja Mustavuorien metsä.</p><p>Kurssikerrat:<br>ke 28.8. klo 9.30–11<br>ke 4.9. klo 9.30–11<br>ke 11.9. klo 9.30–11<br>ke 18.9. klo 9.30–11<br>ke 25.9. klo 9.30–11</p><p>Taideopettajat: kuvataiteilijat Greta Salonen ja Juho Hellsten<br>Luonto-opettajat: yhteistyössä Vantaan luontokoulu</p><p>Ikäsuositus: 3.–4.-luokkalaiset<br>Kesto: 5x90 min<br>Kieli: suomi</p><p>Vapaa pääsy</p><p>Ilmoittautuminen ja lisätiedot: hanna.westerholm@hel.fi</p>" }, "provider_contact_info": null, "name": { "fi": "Luonnos! -taide- ja luontokurssi – 3.–4.-luokkalaisille ja valmistaville alakoululuokille" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64086/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64148", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151554, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T07:13:00.627664Z", "last_modified_time": "2024-06-27T07:13:00.627678Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753429.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151554/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T07:13:00.612272Z", "last_modified_time": "2024-06-27T08:12:54.296798Z", "date_published": null, "start_time": "2024-08-24T07:00:00Z", "end_time": "2024-08-24T09: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": "Perheet, tulkaa luomaan omia lempiasioita yhdessä! Työpajat ovat saaneet innoituksensa Satu Kettusen Aarteitani Suomesta – My Favourite Finnish things -kirjasta ja näyttelystä, joka on Vuotalon aulassa elokuun loppuun asti.", "en": "Inspired by the book and exhibition at Vuotalo, Aarteitani Suomesta - My Favorite Finnish Things by Satu Kettunen, families are welcome to create their own favorite things together!" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C65748DC1C628396756F42CBB17F521E/My_Favourite_Finnish_Things_-_taidetyopajoja_perheille", "en": "http://www.vuotalo.fi/en/events/event/C65748DC1C628396756F42CBB17F521E/My_Favourite_Finnish_Things_-_art_workshop_for_families" }, "description": { "fi": "<p>Perheet, tulkaa luomaan omia lempiasioita yhdessä! Työpajat ovat saaneet innoituksensa Satu Kettusen Aarteitani Suomesta – My Favourite Finnish things -kirjasta ja näyttelystä, joka on Vuotalon aulassa elokuun loppuun asti.</p><p>Työpajassa tehtävänä on miettiä, mikä on kallisarviosta omassa arjessa tai lähiympäristössä. Osallistujat saavat tehdä valitsemansa erityisen asian – aarteen – piirtämällä, maalaamalla tai muovailemalla – ja saavat viedä aarteen kotiin itse koristelemassaan origami-laatikossa. Kotona laatikkoa voi availla, ja ihailla ikiomaa aarretta.</p><p>Ohjaaja: Eungyung Kim<br>Ohjauskieli: englanti (tarvittaessa suomi)<br>Lisätietoja: Salla Fornaro, salla.fornaro@hel.fi</p>", "en": "<p>Inspired by the book and exhibition at Vuotalo, Aarteitani Suomesta - My Favorite Finnish Things by Satu Kettunen, families are welcome to create their own favorite things together!</p><p>In this workshop, families will think about what they appreciate and treasure in their surroundings. Participants will then create those special things by drawing, painting, or sculpting, and carry them home in a personally decorated origami box. Time to time, the box can be opened to bring smiles and warm thoughts!</p><p>Teacher: Eungyung Kim<br>Language: English<br>Price: 0 €<br>For more information: Salla Fornaro, salla.fornaro@hel.fi</p>" }, "provider_contact_info": null, "name": { "fi": "My Favourite Finnish Things - taidetyöpajoja perheille", "en": "My Favourite Finnish Things - art workshop for families" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64148/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64147", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151553, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T07:12:59.293101Z", "last_modified_time": "2024-06-27T07:12:59.293115Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753428.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151553/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T07:12:59.279022Z", "last_modified_time": "2024-06-27T08:12:52.999268Z", "date_published": null, "start_time": "2024-08-15T13:00:00Z", "end_time": "2024-08-15T15: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": "Perheet, tulkaa luomaan omia lempiasioita yhdessä! Työpajat ovat saaneet innoituksensa Satu Kettusen Aarteitani Suomesta – My Favourite Finnish things -kirjasta ja näyttelystä, joka on Vuotalon aulassa elokuun loppuun asti.", "en": "Inspired by the book and exhibition at Vuotalo, Aarteitani Suomesta - My Favorite Finnish Things by Satu Kettunen, families are welcome to create their own favorite things together!" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C2752E0305F0508F18A7B3C7B6844D66/My_Favourite_Finnish_Things_-_taidetyopajoja_perheille", "en": "http://www.vuotalo.fi/en/events/event/C2752E0305F0508F18A7B3C7B6844D66/My_Favourite_Finnish_Things_-_art_workshop_for_families" }, "description": { "fi": "<p>Perheet, tulkaa luomaan omia lempiasioita yhdessä! Työpajat ovat saaneet innoituksensa Satu Kettusen Aarteitani Suomesta – My Favourite Finnish things -kirjasta ja näyttelystä, joka on Vuotalon aulassa elokuun loppuun asti.</p><p>Työpajassa tehtävänä on miettiä, mikä on kallisarviosta omassa arjessa tai lähiympäristössä. Osallistujat saavat tehdä valitsemansa erityisen asian – aarteen – piirtämällä, maalaamalla tai muovailemalla – ja saavat viedä aarteen kotiin itse koristelemassaan origami-laatikossa. Kotona laatikkoa voi availla, ja ihailla ikiomaa aarretta.</p><p>Ohjaaja: Eungyung Kim<br>Ohjauskieli: englanti (tarvittaessa suomi)<br>Lisätietoja: Salla Fornaro, salla.fornaro@hel.fi</p>", "en": "<p>Inspired by the book and exhibition at Vuotalo, Aarteitani Suomesta - My Favorite Finnish Things by Satu Kettunen, families are welcome to create their own favorite things together!</p><p>In this workshop, families will think about what they appreciate and treasure in their surroundings. Participants will then create those special things by drawing, painting, or sculpting, and carry them home in a personally decorated origami box. Time to time, the box can be opened to bring smiles and warm thoughts!</p><p>Teacher: Eungyung Kim<br>Language: English<br>Price: 0 €<br>For more information: Salla Fornaro, salla.fornaro@hel.fi</p>" }, "provider_contact_info": null, "name": { "fi": "My Favourite Finnish Things - taidetyöpajoja perheille", "en": "My Favourite Finnish Things - art workshop for families" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64147/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64146", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151552, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T07:12:58.726984Z", "last_modified_time": "2024-06-27T07:12:58.727007Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753427.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151552/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T07:12:58.682280Z", "last_modified_time": "2024-06-27T08:12:52.541486Z", "date_published": null, "start_time": "2024-08-08T13:00:00Z", "end_time": "2024-08-08T15: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": "Perheet, tulkaa luomaan omia lempiasioita yhdessä! Työpajat ovat saaneet innoituksensa Satu Kettusen Aarteitani Suomesta – My Favourite Finnish things -kirjasta ja näyttelystä, joka on Vuotalon aulassa elokuun loppuun asti.", "en": "Inspired by the book and exhibition at Vuotalo, Aarteitani Suomesta - My Favorite Finnish Things by Satu Kettunen, families are welcome to create their own favorite things together!" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C50AEFB55C69843A589EB825B50B24D4/My_Favourite_Finnish_Things_-_taidetyopajoja_perheille", "en": "http://www.vuotalo.fi/en/events/event/C50AEFB55C69843A589EB825B50B24D4/My_Favourite_Finnish_Things_-_art_workshop_for_families" }, "description": { "fi": "<p>Perheet, tulkaa luomaan omia lempiasioita yhdessä! Työpajat ovat saaneet innoituksensa Satu Kettusen Aarteitani Suomesta – My Favourite Finnish things -kirjasta ja näyttelystä, joka on Vuotalon aulassa elokuun loppuun asti.</p><p>Työpajassa tehtävänä on miettiä, mikä on kallisarviosta omassa arjessa tai lähiympäristössä. Osallistujat saavat tehdä valitsemansa erityisen asian – aarteen – piirtämällä, maalaamalla tai muovailemalla – ja saavat viedä aarteen kotiin itse koristelemassaan origami-laatikossa. Kotona laatikkoa voi availla, ja ihailla ikiomaa aarretta.</p><p>Ohjaaja: Eungyung Kim<br>Ohjauskieli: englanti (tarvittaessa suomi)<br>Lisätietoja: Salla Fornaro, salla.fornaro@hel.fi</p>", "en": "<p>Inspired by the book and exhibition at Vuotalo, Aarteitani Suomesta - My Favorite Finnish Things by Satu Kettunen, families are welcome to create their own favorite things together!</p><p>In this workshop, families will think about what they appreciate and treasure in their surroundings. Participants will then create those special things by drawing, painting, or sculpting, and carry them home in a personally decorated origami box. Time to time, the box can be opened to bring smiles and warm thoughts!</p><p>Teacher: Eungyung Kim<br>Language: English<br>Price: 0 €<br>For more information: Salla Fornaro, salla.fornaro@hel.fi</p>" }, "provider_contact_info": null, "name": { "fi": "My Favourite Finnish Things - taidetyöpajoja perheille", "en": "My Favourite Finnish Things - art workshop for families" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64146/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }