Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=227&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 11864, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=228&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=226&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:63884", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151285, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T11:13:02.592603Z", "last_modified_time": "2024-05-23T11:13:02.592619Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746039.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151285/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T11:13:02.575869Z", "last_modified_time": "2024-05-23T13:12:47.332604Z", "date_published": null, "start_time": "2024-08-24T09: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": "Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 12 ja kestää noin klo 13.30 saakka.", "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia på svenska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar fram till cirka kl. 13.30.", "en": "Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/621EED4A96E2F73BAE8381473FF13C6A/Rauhallinen_muistelukavely_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/621EED4A96E2F73BAE8381473FF13C6A/Lugn_minnespromenad_pa_Malm", "en": "http://www.malmitalo.fi/en/events/event/621EED4A96E2F73BAE8381473FF13C6A/A_peaceful_walk_down_memory_lane_at_Malmi" }, "description": { "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 12 ja kestää noin klo 13.30 saakka.</p><p><b>Ylä-Malmin vaiheita kävellen</b><br>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy alueen moninaisessa miljöössä, johon tutustutaan opastetulla kävelykierroksella.</p><p>Kierros kestää noin puolitoista tuntia. Tule mukaan nostalgiselle kierrokselle läpi rakkaan kaupunginosamme tarinaa!</p><p>Kävely on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>", "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia på svenska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar fram till cirka kl. 13.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala. Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme.</p><p>Promenaden har genomförts i samarbete med Malms kulturhus 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>Fritt inträde, ingen förhandsanmälan.</p>", "en": "<p>Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half.</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Free admission, no advance registration.</p>" }, "name": { "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä", "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar", "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63884/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61585", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6432, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.632056Z", "last_modified_time": "2024-02-06T13:23:43.654076Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738570.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.610979Z", "last_modified_time": "2024-05-23T13:12:41.900931Z", "date_published": null, "start_time": "2024-05-26T12: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": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_PREMIERE" }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61585/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61584", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6431, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.517678Z", "last_modified_time": "2024-02-06T13:23:43.557372Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738569.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6431/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.493294Z", "last_modified_time": "2024-05-23T13:12:41.816699Z", "date_published": null, "start_time": "2024-05-25T15: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": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_PREMIERE" }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61583", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6430, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.347140Z", "last_modified_time": "2024-02-06T13:23:43.188036Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738568.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6430/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.327226Z", "last_modified_time": "2024-05-23T13:12:41.504610Z", "date_published": null, "start_time": "2024-05-24T16: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": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_PREMIERE" }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61583/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61582", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" }, "description": null, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.218990Z", "last_modified_time": "2024-02-06T13:23:43.009397Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738567.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.182500Z", "last_modified_time": "2024-05-23T13:12:41.293778Z", "date_published": null, "start_time": "2024-05-23T16: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": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_PREMIERE" }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61679", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3554510", "sv": "https://www.lippu.fi/eventseries/3554510", "en": "https://www.lippu.fi/eventseries/3554510" }, "description": null, "price": { "fi": "33,50 €/48,50 € 2 pvä", "sv": "33,50 €/48,50 € 2 pvä", "en": "33,50 €/48,50 € 2 pvä" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-15T12:13:54.724772Z", "last_modified_time": "2024-02-06T13:23:43.370405Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739295.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-13T17:13:41.677056Z", "last_modified_time": "2024-05-23T11:12:56.589247Z", "date_published": null, "start_time": "2024-05-25T09: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": "Helsinki Lit -tapahtuman alkamisajankohta la 25.5. on muuttunut. Uusi alkamisaika on klo 12.30.", "sv": "Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit", "en": "http://www.savoyteatteri.fi/en/events/event/79E013D10D7A9C5F54AD50CA93BB6F04/Helsinki_Lit" }, "description": { "fi": "<p>Helsinki Lit -tapahtuman alkamisajankohta la 25.5. on muuttunut. Uusi alkamisaika on klo 12.30.</p><p>Järjestäjä tiedottaa: ”Lauantaina 25.5. ohjelma alkaa klo 12.30 TOISIN KUIN LIPPU:FI:N FYYSISISSÄ TULOSTELIPUISSA ON ILMOITETTU. Lipuissa lulee klo 13:00. Väärä aikataulu lipuissa johtuu teknisestä virheestä jota ei Early Bird -lipunmyynnin ja sen jälkeisen aikataulujen välttämättömien, kirjailijavieraiden omien myöhemmin ilmenneiden aikataulujen jälkeen voitu ennakoida ajoissa. Suuret pahoittelut virheestä. Tulkaa ajoissa paikalle, ohjelma alkaa jo klo 12:30.”</p><p>Lisätietoja: https://helsinki-lit.fi/</p><p>***</p><p>Helsinki Lit -käännöskirjallisuusfestavaali viettää toukokuussa 10-vuotisjuhliaan Savoy-teatterissa</p><p>Helsinki Lit -käännöskirjallisuusfestivaali juhlii tulevana keväänä kymmenvuotista taivaltaan. 10-vuotisjuhlafestivaali järjestetään 24.-25. toukokuuta Savoy-teatterissa, josta koko Helsinki Lit -festivaalin menestyksekäs taival vuosikymmen sitten alkoi.</p><p>Helsinki Litissä on kymmenen vuoden aikana vieraillut kymmeniä kansainvälisiä kirjalijatähtiä Nobel-voittajista Booker- ja Pulitzer-palkittuihin. Tänä vuonna Helsinki Lit sai vieraakseen muun muassa juuri kirjallisuuden Nobel-palkinnon voittaneen Annie Ernaux’n ja festivaalin liput myytiin ennakosta loppuun jo maaliskuun 2023 aikana.</p><p>10-vuotisjuhlavuoden koko ohjelma julkaistaan helmikuussa 2024. Mukana tulee tuttuun tapaan jälleen olemaan nimekkäitä kansainvälisiä kirjailijavieraita, joiden kanssa keskustelevat valitut kotimaiset kirjailijat, toimittajat ja vaikuttajat. Tänä vuonna luvassa on myös erityistä juhlaohjelmaa ja tunnelmakoosteita vuosien varrelta. <br>Juhlafestivaalilla mukana olevat kustantajat ja festivaalin muut yhteistyökumppanit ja tukijat julkaistaan helmikuun ohjelmajulkistuksen yhteydessä.</p><p>Permanto paikat ovat K18. Parveke on sallittu kaiken ikäisille.</p>", "sv": "<p>Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern</p><p>Den internationella litteraturfestivalen Helsinki Lit ordnas nästa år för tionde gången. Festivalen äger rum den 24-25 maj 2024, på Savoyteatern i Helsingfors, där också den första festivalen hölls 2015.</p><p>Under ett decennium har festivalen fått besök av en mängd internationella stjärnor, däribland tidigare Nobelpristagare, Pulitzer-, Booker- och Finlandiavinnare. I våras gästades Helsinki Lit av den färska nobelpristagaren Annie Ernaux, och då var festivalen var utsåld redan i mars.</p><p>Programmet för nästa år publiceras i februari 2024. Även denna gång bjuder Helsinki Lit på flera stora internationella författarnamn, som intervjuas av inhemska författare och journalister. Tioårsjubileet kommer även att uppmärksammas i programmet.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>The Helsinki Lit translation literature festival celebrates its 10th anniversary at Savoy Theatre in May – tickets now on sale</p><p>The Helsinki Lit translation literature festival will celebrate its 10th anniversary next spring. The 10th anniversary festival will take place at Savoy Theatre on 24–25 May, where Helsinki Lit’s successful run began a decade ago. The tickets are now on sale.</p><p>Over the past ten years, Helsinki Lit has hosted dozens of international literary stars, from Nobel Prize winners to Booker and Pulitzer Prize winners. In 2023, Helsinki Lit hosted Annie Ernaux, who had just won the Nobel Prize for Literature, and tickets for the festival sold out in advance during March 2023.</p><p>The full programme for the 10th anniversary will be published in February 2024. As usual, the festival will host internationally renowned author guests, who will participate in discussions with selected Finnish authors, journalists and influencers. This year, there will also be a special festive programme and atmospheric compilations from over the years.</p><p>The publishers and other partners and supporters of the festival will be announced when the programme is published in February.</p><p>The stalls will only be allowed for over 18s. The balcony will be allowed for people of all ages.</p>" }, "name": { "fi": "Helsinki Lit – Käännöskirjallisuusfestivaali 10 vuotta", "sv": "Helsinki Lit – Litteraturfestivalen", "en": "Helsinki Lit" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Helsingin kirjallisuusfestivaali ry", "sv": "Helsingin kirjallisuusfestivaali ry", "en": "Helsingin kirjallisuusfestivaali ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61679/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63879", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151280, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T09:13:20.390535Z", "last_modified_time": "2024-05-23T09:13:20.390556Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746037.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151280/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T09:13:20.333185Z", "last_modified_time": "2024-05-23T09:13:20.475200Z", "date_published": null, "start_time": "2024-08-22T15: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": "Opastetulla kävelykierroksella tutustutaan Malmin ja Ala-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 18 ja kestää noin klo 19.30 saakka.", "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia på finska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 18 och varar fram till cirka kl. 19.30.", "en": "Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 18 pm and lasts until roughly 19:30 pm." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1F99FEB3937BF5E131A055204B7A4FC/Rauhallinen_muistelukavely_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D1F99FEB3937BF5E131A055204B7A4FC/Lugn_minnespromenad_pa_Malm", "en": "http://www.malmitalo.fi/en/events/event/D1F99FEB3937BF5E131A055204B7A4FC/A_peaceful_walk_down_memory_lane_at_Malmi" }, "description": { "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin ja Ala-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 18 ja kestää noin klo 19.30 saakka.</p><p>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy alueen moninaisissa rakennuksissa ja maisemissa, joihin tutustutaan opastetulla kävelykierroksella.</p><p>Kierros kestää noin puolitoista tuntia. Kävely on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa.</p><p>Kävelykierros liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p>", "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia på finska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 18 och varar fram till cirka kl. 19.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala.</p><p>Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme.</p><p>Promenaden har genomförts i samarbete med Malms kulturhus 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>", "en": "<p>Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 18 pm and lasts until roughly 19:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half. The walking tour is in Finnish.</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p>" }, "name": { "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä", "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar", "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63879/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63876", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151277, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T07:12:44.491874Z", "last_modified_time": "2024-05-23T07:12:44.491890Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753352.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151277/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T07:12:44.473347Z", "last_modified_time": "2024-05-23T08:19:41.674281Z", "date_published": null, "start_time": "2024-06-01T14: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": "Valmistaudu musiikilliseen matkaan, jollaista ei ole toista! Balkanilaisen musiikin cover-yhtye kuljettaa sinut Balkanin sydämeen." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AD8E2AEC1AB4A0C3DE04745F1CAEA298/Musiikillinen_matka_Balkanin_sydameen" }, "description": { "fi": "<p>Valmistaudu musiikilliseen matkaan, jollaista ei ole toista! Balkanilaisen musiikin cover-yhtye kuljettaa sinut Balkanin sydämeen.</p><p>Monipuolinen ohjelmisto kattaa koko Balkanin alueen sydäntä särkevistä balladeista Balkanin kansantansseihin ja sen ulkopuolelle.<br> <br>Aarne Toivonen, rummut<br>Sara Majidi Nejad, Qanun<br>Devina Boughton, trumpetti<br>Vasileios Katopodis, basso<br>Chrysa Panagiotopoulou, laulu</p><p><b>HUOM! Konsertti järjestetään Musiikkitalon terassilla.</b></p><p>Vapaa pääsy.<br> <br>Konsertti on osa Global Club Nights-sarjaa.</p><p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallinen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius- Akateemian globaalin musiikin osaston ja Kulttuurikeskus Caisan kanssa.</p>" }, "name": { "fi": "Musiikillinen matka Balkanin sydämeen – Musiikkitalon terassilla" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63876/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63323", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150732, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-22T13:13:17.115226Z", "last_modified_time": "2024-04-22T13:13:17.115241Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748979.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150732/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-22T13:13:17.098994Z", "last_modified_time": "2024-05-22T12:12:53.015055Z", "date_published": null, "start_time": "2024-06-04T08:00:00Z", "end_time": "2024-06-04T10: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": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C126DEF35FC895A65C139D5E1BE055D4/Tiistain_lounasjamit" }, "description": { "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>" }, "name": { "fi": "Tiistain lounasjamit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63323/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63322", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150731, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-22T13:13:16.442930Z", "last_modified_time": "2024-04-22T13:13:16.442987Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748977.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150731/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-22T13:13:16.424674Z", "last_modified_time": "2024-05-22T12:12:51.936321Z", "date_published": null, "start_time": "2024-05-28T08:00:00Z", "end_time": "2024-05-28T10: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": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/64EE8089C1690599A4B87EEB0E03DA7B/Tiistain_lounasjamit" }, "description": { "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>" }, "name": { "fi": "Tiistain lounasjamit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63322/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63319", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150728, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-22T13:13:12.277326Z", "last_modified_time": "2024-04-22T13:13:12.277342Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748971.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150728/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-22T13:13:12.261393Z", "last_modified_time": "2024-05-22T12:12:47.857891Z", "date_published": null, "start_time": "2024-05-07T08:00:00Z", "end_time": "2024-05-07T10: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": "DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A31670EAE19F45D07905F3F8BED38F6D/Tiistain_lounasjamit" }, "description": { "fi": "<p>DJ Koo-Blank ilahduttaa monipuolisilla rytmeillään Kahvilan stagella tiistaisin lounasaikaan.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja iskelmä sekä paljon muuta sielukasta musiikkia.</p><p>Tiistain lounasjamit Kanneltalon kahvilassa keväällä 2024<br>ti 30.4. klo 11–13<br>ti 7.5. klo 11–13<br>ti 14.5. klo 11–13<br>ti 21.5. klo 11–13<br>ti 28.5. klo 11–13<br>ti 4.6 klo 11–13</p><p>Tilaa Dj Koo-Blank kaikenkokoisiin tapahtumiin: <br>Joona Pikkarainen, 0505464216<br>pikkarainen.joonap@gmail.com</p>" }, "name": { "fi": "Tiistain lounasjamit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63319/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:263f3806-972d-4d59-9683-a161a4160b25", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:33373/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_kv_referenssitestaus_2251728974150" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-05-22T10:03:17.128705Z", "last_modified_time": "2024-05-22T10:03:17.128722Z", "date_published": "2024-05-22T09:14:30Z", "start_time": "2024-05-23T11:22:00Z", "end_time": "2024-05-24T17:00: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-05-22T10:00:00+03:00", "enrolment_end_time": "2024-05-23T00:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Testataan referenssejä" }, "info_url": null, "description": { "fi": "<div><p>Testataan referenssejä</p></div>" }, "name": { "fi": "LE kv referenssitestaus 22.5" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Järjestäjä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:263f3806-972d-4d59-9683-a161a4160b25/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63499", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150882, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-29T09:13:37.281111Z", "last_modified_time": "2024-04-29T09:13:37.281125Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746561.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150882/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-29T09:13:37.255732Z", "last_modified_time": "2024-05-22T08:13:28.485999Z", "date_published": null, "start_time": "2024-05-26T08:00:00Z", "end_time": "2024-05-26T13: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": "Espan Big Band Marathon tulee taas! Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin.", "sv": "Esplanadens Big Band Marathon kommer igen! Fem fantastiska band presenterar en mångsidig dukning av big band-musik från grooviga sommarhittar till traditionella big band-kompositioner.", "en": "Espa’s Big Band Marathon is here again! Five amazing ensembles will perform a diverse selection of big band music from groovy summer hits to traditional big band tunes." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon", "sv": "http://www.espanlava.fi/sv/evenemang/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon", "en": "http://www.espanlava.fi/en/events/event/D2E8CC29C4946FFBE67372D382EA994C/Big_Band_Marathon" }, "description": { "fi": "<p>Espan Big Band Marathon tulee taas! Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin.</p><p><b>Päivän aikataulu:</b></p><p>klo 11 Vaskivuori Big Band<br>klo 12 Vuoksi Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Gramofoni Big Band<br>klo 15 Ladies First Big Band</p>", "sv": "<p>Esplanadens Big Band Marathon kommer igen! Fem fantastiska band presenterar en mångsidig dukning av big band-musik från grooviga sommarhittar till traditionella big band-kompositioner.</p><p>kl. 11 Vaskivuori Big Band<br>kl. 12 Vuoksi Big Band<br>kl. 13 Ebeli Big Band<br>kl. 14 Gramofoni Big Band<br>kl. 15 Ladies First Big Band</p>", "en": "<p>Espa’s Big Band Marathon is here again! Five amazing ensembles will perform a diverse selection of big band music from groovy summer hits to traditional big band tunes.</p><p>klo 11 Vaskivuori Big Band<br>klo 12 Vuoksi Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Gramofoni Big Band<br>klo 15 Ladies First Big Band</p>" }, "name": { "fi": "Big Band Marathon", "sv": "Big Band Marathon", "en": "Big Band Marathon" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63499/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:e53e9cf7-74d3-4757-9afe-9752bbead210", "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/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Testi_kakkonen455225501" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151273, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-22T06:05:16.587835Z", "last_modified_time": "2024-05-22T06:05:16.587854Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/025cb5dd-9b16-ef11-9f89-0022489e55b1", "name": "Elinkeino-osasto kuvateksti", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Elinkeino-osasto ALT", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151273/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?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-05-20T17:31:43.536966Z", "last_modified_time": "2024-05-22T06:05:18.942907Z", "date_published": "2024-05-20T17:24:31Z", "start_time": "2024-05-22T11:00:00Z", "end_time": "2024-05-22T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 2, "audience_max_age": 4, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 12, "minimum_attendee_capacity": 11, "enrolment_start_time": "2024-05-01T08:00:00+03:00", "enrolment_end_time": "2024-05-21T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "LM Testi kolmonen by Marcus LinkedEventsiin", "sv": "LM Testi kolmonen by Marcus LinkedEventsiin (SV)", "en": "LM Testi kolmonen by Marcus LinkedEventsiin (EN)", "ru": "Venäjä on RU short desc" }, "info_url": null, "description": { "fi": "<div><p>LM Testi kolmonen by Marcus LinkedEventsiin</p></div>", "sv": "<div><div>LM Testi kolmonen by Marcus LinkedEventsiin (SV)</div></div>", "en": "<div><div>LM Testi kolmonen by Marcus LinkedEventsiin (EN)</div></div>", "ru": "<div><p>Venäjä on RU long desc</p></div>" }, "name": { "fi": "LM Testi kolmonen by Marcus LinkedEventsiin (päivitys 2)", "sv": "LM Testi kolmonen by Marcus LinkedEventsiin (SV)", "en": "LM Testi kolmonen by Marcus LinkedEventsiin (EN)", "ru": "Venäjä on RU" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki FI", "sv": "Business Helsinki SV", "en": "Business Helsinki EN", "ru": "Venäjä on RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e53e9cf7-74d3-4757-9afe-9752bbead210/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63572", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151009, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-06T11:13:49.878421Z", "last_modified_time": "2024-05-06T11:13:49.878437Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744892.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151009/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-06T11:13:49.852936Z", "last_modified_time": "2024-05-21T13:13:38.636932Z", "date_published": null, "start_time": "2024-06-11T15: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": "Jiri Nikkinen Trio esittää 60-luvun musiikkia, jossa pääpaino on The Beatlesin tuotannolla. Lisäksi kuullaan The Kinksiä, The Whota, Monkeesia ja Cliftersiä muita legendaarisia aikakauden bändejä.", "sv": "Jiri Nikkinen Trio framför 60-talsmusik med huvudbetoning på The Beatles produktion. Dessutom får vi höra The Kinks, The Who, Monkees och Clifters samt andra legendariska band från tidseran.", "en": "Jiri Nikkinen Trio performs music from the 60s with a focus on The Beatles. They also play The Kinks, The Who, the Monkees and the Clifters, along with other legends from a legendary decade." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio", "en": "http://www.malmitalo.fi/en/events/event/2FEBD0298E3B172F42E47F737B57E4E3/Jiri_Nikkinen_Trio" }, "description": { "fi": "<p>Jiri Nikkinen Trio esittää 60-luvun musiikkia, jossa pääpaino on The Beatlesin tuotannolla. Lisäksi kuullaan The Kinksiä, The Whota, Monkeesia ja Cliftersiä muita legendaarisia aikakauden bändejä.</p><p>Jiri Nikkinen tunnetaan niin legendaarisesta Clifters -yhtyeestään kuin The Beatles Tribute Band -yhtyeestä.</p><p>The Beatles ja 60-luvun musiikki ylipäätään onkin ollut Jirin kaikelle tekemiselle yhdistävä tekijä. Keikkoja yhtye on tehnyt niin Suomessa kuin maailmallakin.</p>", "sv": "<p>Jiri Nikkinen Trio framför 60-talsmusik med huvudbetoning på The Beatles produktion. Dessutom får vi höra The Kinks, The Who, Monkees och Clifters samt andra legendariska band från tidseran.</p><p>Förutom från sitt legendariska band Clifters är Jiri Nikkinen känd från bandet The Beatles Tribute Band. The Beatles och 60-talets musik har varit en gemensam nämnare i all Jiris aktivitet. Bandet har haft spelningar både i Finland och på andra håll i världen.</p>", "en": "<p>Jiri Nikkinen Trio performs music from the 60s with a focus on The Beatles. They also play The Kinks, The Who, the Monkees and the Clifters, along with other legends from a legendary decade.</p><p>Jiri Nikkinen is known for both his legendary band, the Clifters, as well as for The Beatles Tribute Band. The Beatles and 60s music have been the unifying factor for everything that Jiri has done. His band has toured both in Finland and abroad.</p>" }, "name": { "fi": "Jiri Nikkinen Trio – Malmin tapahtumakesä", "sv": "Jiri Nikkinen Trio – Malms evenemangssommar", "en": "Jiri Nikkinen Trio – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63572/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63573", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151008, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-06T11:13:49.151381Z", "last_modified_time": "2024-05-06T11:13:49.151404Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746019.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151008/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-06T11:13:49.102187Z", "last_modified_time": "2024-05-21T12:12:48.729769Z", "date_published": null, "start_time": "2024-06-08T09: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": "Opastetulla pyöräretkellä tutustutaan Malmin historiaan. Retki alkaa Malmitalon edestä Ala-Malmin torilta klo 12 ja kestää noin kaksi ja puoli tuntia. Retki on suomeksi.", "sv": "På den guidade cykelturen tar vi del av Malms historia. Cykelturen börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar i cirka två och en halv timme. På finska.", "en": "Get to know the history of Malmi on a guided bicycle ride. The trip starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts for roughly two and a half hours. In Finnish." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7210D1A20038D535544EE64AF3ACEF15/Malmin_vaiheita_pyoraillen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7210D1A20038D535544EE64AF3ACEF15/Malms_skeden_pa_cykel", "en": "http://www.malmitalo.fi/en/events/event/7210D1A20038D535544EE64AF3ACEF15/History_of_Malmi_on_wheels" }, "description": { "fi": "<p>Opastetulla pyöräretkellä tutustutaan Malmin historiaan. Retki alkaa Malmitalon edestä Ala-Malmin torilta klo 12 ja kestää noin kaksi ja puoli tuntia. Retki on suomeksi.</p><p>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy laajan alueen moninaisissa rakennuksissa ja maisemissa, joihin tutustutaan opastetulla pyöräilykierroksella.</p><p>Kierros kestää noin kaksi ja puoli tuntia.</p><p>Pyöräretki on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa.</p><p>Malmin vaiheita pyöräillen liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 Helsingin kaupunginmuseon päärakennuksessa, osoitteessa Aleksanterinkatu 16.</p><p>Pyöräretkelle on vapaa pääsy, ei ennakkoilmoittautumista.</p>", "sv": "<p>På den guidade cykelturen tar vi del av Malms historia. Cykelturen börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar i cirka två och en halv timme. På finska.</p><p>Malms långa historiska utveckling från en medeltida by på landsbygden till en stor stadsdel som åter är i förnyelse syns på områdets mångfaldiga byggnader och landskap, som vi bekantar oss med på en guidad cykeltur.</p><p>Turen varar i cirka två och en halv timme.</p><p>Cykelturen har genomförts i samarbete med Helsingfors stadsmuseum och WalkHelsinki. Cykelturen 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>Fritt inträde, ingen förhandsanmälan.</p><p>Språk: finska</p>", "en": "<p>Get to know the history of Malmi on a guided bicycle ride. The trip starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts for roughly two and a half hours. In Finnish.</p><p>The development of Malmi from a rural village in the medieval period to a large, ever-changing city district can be seen in the variety of buildings and landscapes in the large area, which you can get to know with a guided bicycle tour.</p><p>The tour takes roughly two and a half hours.</p><p>The bicycle tour is implemented in cooperation with the Helsinki City Museum and WalkHelsinki. The bicycle ride is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Free admission, no advance registration.</p><p>Language: Finnish</p>" }, "name": { "fi": "Malmin vaiheita pyöräillen – Malmin tapahtumakesä", "sv": "Malms skeden på cykel – Malms evenemangssommar", "en": "History of Malmi on wheels – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63573/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63575", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151013, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-06T14:13:30.987485Z", "last_modified_time": "2024-05-06T14:13:30.987498Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746017.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151013/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-06T14:13:30.952041Z", "last_modified_time": "2024-05-21T12:12:48.441929Z", "date_published": null, "start_time": "2024-06-07T08: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": "Opastetulla kävelykierroksella tutustutaan Malmin historiaan. Kävelykierros alkaa Malmitalon edestä Ala-Malmin torilta klo 11 ja kestää noin klo 12.30 saakka.", "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 11 och varar fram till cirka kl. 12.30.", "en": "Get to know the history of Malmi on a guided walking tour. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 11 am and lasts until roughly 12:30 pm." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3203163EBF56AAAB2991C0D689EE06DE/Rauhallinen_muistelukavely_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3203163EBF56AAAB2991C0D689EE06DE/Lugn_minnespromenad_pa_Malm", "en": "http://www.malmitalo.fi/en/events/event/3203163EBF56AAAB2991C0D689EE06DE/A_peaceful_walk_down_memory_lane_at_Malmi" }, "description": { "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin historiaan. Kävelykierros alkaa Malmitalon edestä Ala-Malmin torilta klo 11 ja kestää noin klo 12.30 saakka.</p><p>Malmi on muuttunut paljon, ja muutos jatkuu vilkkaana. Muistelukävelyllä kuljetaan rauhalliseen tahtiin helppo reitti Ala-Malmin puistosta Malmin kirkolle välillä levähtäen. Lisäksi virkistetään muistoja vanhoja valokuvia katsellen ja jutustellen.</p><p>Vapaaehtoistyöntekijän vetämä kierros kestää noin puolitoista tuntia.<br>Tervetuloa matkalle läpi rakkaan kaupunginosamme historian!</p><p>Kävely on toteutettu yhteistyössä Malmitalon kanssa, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 kaupunginmuseon päärakennuksessa, osoitteessa Aleksanterinkatu 16.</p>", "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 11 och varar fram till cirka kl. 12.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala.</p><p>Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme. Välkommen på en resa genom vår kära stadsdels historia!</p><p>Språk: finska</p><p>Promenaden har genomförts i samarbete med Malms kulturhus 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>", "en": "<p>Get to know the history of Malmi on a guided walking tour. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 11 am and lasts until roughly 12:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half. The walking tour is in Finnish. Join us on a walk into the history of our part of town!</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p>" }, "name": { "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä", "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar", "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63575/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:c3854a3b-4a12-4368-8faa-f2062933ede4", "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/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/90a5debe-5217-ef11-9f8a-000d3ab59432?readableEventId=LMtest_vitonen2383580494" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151264, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-21T12:03:38.747965Z", "last_modified_time": "2024-05-21T12:03:38.747986Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e05bb5dd-9b16-ef11-9f89-0022489e55b1", "name": "kuvatekstii", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "alttii", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151264/?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-05-21T09:39:40.977992Z", "last_modified_time": "2024-05-21T12:03:40.673189Z", "date_published": "2024-05-21T09:32:09Z", "start_time": "2024-05-21T12:30:00Z", "end_time": "2024-05-21T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 2, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-05-01T08:00:00+03:00", "enrolment_end_time": "2024-05-18T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "LMtest vitonen short desc" }, "info_url": null, "description": { "fi": "<div><p>LMtest vitonen long desc</p></div>" }, "name": { "fi": "LMtest vitonen" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Liisa Mallat/ Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:c3854a3b-4a12-4368-8faa-f2062933ede4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63558", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150937, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-03T11:13:03.514167Z", "last_modified_time": "2024-05-03T11:13:03.514184Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150937/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-03T11:13:03.489320Z", "last_modified_time": "2024-05-21T11:12:52.058168Z", "date_published": null, "start_time": "2024-06-04", "end_time": "2024-06-14", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule kahville nuorten omaan kesäkahvilaan!", "sv": "Kom på kaffe till de ungas eget sommarkafé!", "en": "Have a cup of coffee at our summer café, which is run by local young people!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/027FDC49DD9E7EF7C15D3805F84D45CD/Malmi_Coffee_nuorten_kesakahvila", "sv": "http://www.malmitalo.fi/sv/evenemang/event/027FDC49DD9E7EF7C15D3805F84D45CD/Malmi_Coffee_de_ungas_sommarkaf_", "en": "http://www.malmitalo.fi/en/events/event/027FDC49DD9E7EF7C15D3805F84D45CD/Malmi_Coffee_summer_caf_by_young_people" }, "description": { "fi": "<p>Tule kahville nuorten omaan kesäkahvilaan!</p><p>Kahvila on avoinna Ala-Malmin puiston paviljongissa tiistaista perjantaihin klo 13–17 ja lauantaisin klo 11–15.</p><p>Myynnissä on kahvia, teetä ja pientä purtavaa. Järjestämme myös mukavaa toimintaa kahvilan ohessa kaiken ikäisille. Luvassa on pihapelejä, piirtämistä, visailua ja vesipallorieha.</p><p>Nuorten suunnittelema ja toteuttama pop up -kesäkahvila on osa Malmin tapahtumakesää. Kahvila työllistää erityisesti 14–15-vuotiaita nuoria.</p><p>Kahvila syntynyt Nuorten Budjetin Unelma olla rikas – Töitä nuorille -toimenpiteen kautta osana Helsingin kaupungin Nuorisopalveluiden tuottamaa toimintaa.</p>", "sv": "<p>Kom på kaffe till de ungas eget sommarkafé!</p><p>Kaféet är öppet i paviljongen i Nedre Malms park från tisdag till fredag kl. 13–17 och på lördagar kl. 11–15.</p><p>Kaffe, te och litet tilltugg finns till salu. Vid sidan av kaféet ordnar vi även trevliga aktiviteter för alla åldrar. Gårdsspel, ritning, frågesporter och ett vattenpolojippo utlovas.</p><p>Pop up-sommarkaféet har planerats och genomförts av unga och är en del av Malms evenemangssommar. Kaféet sysselsätter särskilt 14–15-åriga unga.</p>", "en": "<p>Have a cup of coffee at our summer café, which is run by local young people!</p><p>The café is open in the Ala-Malmi Park pavilion from Tuesday to Friday at 1 pm to 7 pm and on Saturdays at 11 am to 3 pm.</p><p>We sell coffee, tea and snacks. We also arrange small activities for all ages at the café. including yard games, drawing, quizzes and a water-balloon fight.</p><p>This pop up summer café, planned and implemented by young people, is a part of the Malmi Summer of Events. The café is a source of employment for young people aged 14–15.</p>" }, "name": { "fi": "Malmi Coffee – nuorten kesäkahvila – ti-pe klo 13–17, la klo 11–15", "sv": "Malmi Coffee – de ungas sommarkafé – tis-fre kl. 13–17, lör kl. 11–15", "en": "Malmi Coffee – summer café by young people – Tue-Mon at 1 pm to 7 pm, Sat at 11 am to 3 pm" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63558/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:28d13aa8-ec95-4163-a2c3-6eb7e3063899", "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:p11617/?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:p26626/?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:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Test3092389954", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Test3092389954", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/637ab637-5513-ef11-9f89-000d3ab0fc3c?readableEventId=LM_Test3092389954" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151220, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-20T18:01:25.387968Z", "last_modified_time": "2024-05-20T18:01:25.387988Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a8cc4457-fe02-ef11-9f89-000d3ab5d1a6", "name": "Hyvä kuvateksti", "cropping": "", "photographer_name": "Kuvaaja Joku", "alt_text": "Vallisaari ilta-auringossa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151220/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?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:p3128/?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:p6165/?format=api" } ], "created_time": "2024-05-20T11:37:54.629933Z", "last_modified_time": "2024-05-20T18:01:26.846777Z", "date_published": "2024-05-20T11:17:34Z", "start_time": "2024-05-22T05:30:00Z", "end_time": "2024-05-22T07:30: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-05-15T08:00:00+03:00", "enrolment_end_time": "2024-05-20T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Summary", "sv": "Summary (SV)", "en": "Summary (EN)" }, "info_url": null, "description": { "fi": "<div><p>Tämä näkyy LE:ssa</p></div>", "sv": "<div><div>Tämä näkyy LE:ssa (SV)</div></div>", "en": "<div><div>Tämä näkyy LE:ssa (EN)</div></div>" }, "name": { "fi": "LM Test", "sv": "LM Test (SV)", "en": "LM Test (EN)" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki", "sv": "Business Helsinki", "en": "Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:28d13aa8-ec95-4163-a2c3-6eb7e3063899/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }