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=1247
{ "meta": { "count": 32746, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1248", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1246" }, "data": [ { "id": "kulke:60042", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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" }, { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/labia-3498815/?affiliate=ADV" }, "description": null, "price": { "fi": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5255, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:33:11.448177Z", "last_modified_time": "2024-02-06T13:22:43.288396Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732362.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5255/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:33:11.304300Z", "last_modified_time": "2024-02-06T13:22:43.330998Z", "date_published": null, "start_time": "2023-12-08T17: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": "Labiassa tanssijat tuovat suutelemisen aistisuuden ja poetiikan näyttämölle. Hempeät queerit muovaavat sukupuolen sekä romanttisen rakkauden moninaisia muotoja ja kuvastoja.", "sv": "I Labia tas det intima, poetiska och politiska i kyssande upp på scenen av tre artister.", "en": "Labia is a performance where three performers kiss on stage showing the intimacy, poetics and politics of this action." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/2BF34B1D84C53DCD4099B05A2F90C98B/Kauri_Sorvari_ja_tyoryhma_labia", "sv": "http://www.caisa.fi/sv/evenemang/event/2BF34B1D84C53DCD4099B05A2F90C98B/labia", "en": "http://www.caisa.fi/en/events/event/2BF34B1D84C53DCD4099B05A2F90C98B/labia" }, "description": { "fi": "<p>Labiassa tanssijat tuovat suutelemisen aistisuuden ja poetiikan näyttämölle. Hempeät queerit muovaavat sukupuolen sekä romanttisen rakkauden moninaisia muotoja ja kuvastoja.</p><p>Erilaiset suutelemisen tavat ja tunnelmat kiteytyvät pieniksi tansseiksi, esityksiksi ja koreografiaksi.</p><p>Huulet koskettavat toisia huulia – janoten, tervehtien, hyvästellen, antaen, ottaen, tuntien, kysyen ja hamuten. Labiassa tanssijat liikkuvat intiimin kokemisen ja sen esittämisen välillä.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i><br> <br>Työryhmä: <br>Ohjaus: Kauri Sorvari <br>Näyttämöllä: György Jellinek, Kauri Sorvari, Jussi Ulkuniemi <br>Valosuunnittelija: Sofia Palillo <br>Äänisuunnittelija: Satu Kankkonen <br>Pukusuunnittelija: Johanna Liebl <br>Tuottaja: Riikka Lakea<br>Tukijat: Wihuri, Taike, SKR, Urban Apa, Circus Maximus <br> <br>Labian demoversioita on esitetty Museum Of Impossible Formsilla Bodies of Pleasures -kollektiivin esitysiltamissa ja Club Ambedossa osana Urban Apaa. <br> <br>Kesto: n. 60 min. Ei väliaikaa. <br>Ei suositella lapsille.<br>Esityksessä kovia ääniä, teatterisavua ja eroottista kuvastoa.<br>Esitys ei ole kielisidonnainen.</p><p>Pressiliput ja lisätiedot: johanna.rissanen@hel.fi</p>", "sv": "<p>I Labia tas det intima, poetiska och politiska i kyssande upp på scenen av tre artister.</p><p>De smäktande queerpersonerna omfamnar och formar de många olika formerna av kön och kärlek.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i></p><p>Längd: 60 min, ingen paus<br>Åldersrekommendation: inte för barn<br>Språk: inte språkbunden</p>", "en": "<p>Labia is a performance where three performers kiss on stage showing the intimacy, poetics and politics of this action.</p><p>The soft and tender queers embrace and reformulate the multiple shapes of gender and love.</p><p><i>bois, butts<br>hubba bubba, guts<br>wet lips, singing hips<br>bye shy bye</i></p><p>Duration: 60 min, no intermission<br>Age recommendation: not for children<br>Language: no speech</p>" }, "name": { "fi": "Kauri Sorvari ja työryhmä: labia", "sv": "labia", "en": "labia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60042/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60740", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "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/alamalmi/?affiliate=ADV" }, "description": null, "price": { "fi": "15 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4630, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:59.228454Z", "last_modified_time": "2024-02-06T13:22:43.182359Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735825.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4630/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:58.566712Z", "last_modified_time": "2024-02-06T13:22:43.222139Z", "date_published": null, "start_time": "2023-12-08T17: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": "Riehakas Luukas Oja tekee asioita sopivasti kieli poskessa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1CD7BFC5882822130D65DDBA9BCD53C6/Luukas_Oja_PERUTTU" }, "description": { "fi": "<p>Riehakas Luukas Oja tekee asioita sopivasti kieli poskessa.</p><p>Teksteissään itseironinen bändi tarttuu ihmisen inhimillisyyteen kaikkine puolineen pilke silmäkulmassa. Vimmaisen ilottelun ohessa yhtye käsittelee painavia teemoja muun muassa singleillään Ei on ei ja Ostan, ostan, jotka vievät kuulijan perinteisen rockin äärelle.</p><p>Yhtyeen supervoimia ovat riehakas live-energia ja korvamatokertosäkeet, jotka eivät jätä kylmäksi albumeillakaan. Luukas Oja on hassu, kiusoitteleva ja päin naamaa totuuksia laukova kiivaana etenevä ketterä juggernautti. Tarttuvat melodiakoukut yhdistettynä aggressiivisen riemukkaana hakkaavasti etenevään soittoon on yhdistelmä, jota suomalaisessa rockmusiikissa on aina ilo kuulla.</p><p>Yhtye sai Soundin vuoden tulokas -palkinnon eli Master of Pulpets -tunnustuksen ensimmäisen levyn myötä. Soundin perusteluissa kehuttiin raikasta ja suorapuheista Väritetty todellisuus -debyyttialbumia sekä yhtyeen pitelemätöntä keikkaenergiaa. Yhtye nostettiin myös YleX:n Läpimurto-listaukseen vuonna 2020.</p>" }, "name": { "fi": "Luukas Oja | PERUTTU – A la Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60740/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61089", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "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/vuotalo/suruttomia-lauluja-kovilta-ajoilta-3505986/?affiliate=ADV" }, "description": null, "price": { "fi": "29,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5256, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:33:11.779041Z", "last_modified_time": "2024-02-06T13:22:43.073937Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729112.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5256/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:33:11.643297Z", "last_modified_time": "2024-02-06T13:22:43.115022Z", "date_published": null, "start_time": "2023-12-08T17: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": "Kisällikupletteja, huumori- ja pilkkalauluja herroista ja narreista." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1392A367EC5B558A388B1537F0140622/Suruttomia_lauluja_kovilta_ajoilta" }, "description": { "fi": "<p>Kisällikupletteja, huumori- ja pilkkalauluja herroista ja narreista.</p><p>Iltamatunnelmaa ja monenmoisia ralleja kuplettien, kisälli- ja huumorimusiikin sekä runojen parissa menneiltä vuosikymmeniltä. Ravintolaksi muuntuvassa Vuotalon salissa viihdyttävät ja kovasta maailmasta sanailevat sekä vallanpitäjiä irvailevat Erkki Saarela, Mikko Perkoila, Rauhatäti ja Paleface. Orkesterina Laulava Unioni: Merja Ikkelä, Ossi Peura ja Tipi Tuovinen.</p><p>Reilua meininkiä ja ilo pintaan!</p><p>Ikärajasuositus: 18<br>Liput: 29,50 €<br>Kesto: 2 t sis. väliajan (20 min)</p>" }, "name": { "fi": "Suruttomia lauluja kovilta ajoilta – Erkki Saarela, Mikko Perkoila, Rauhatäti, Paleface ja Laulava Unioni" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61089/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61059", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?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:p16327/?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": 5254, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:33:09.581127Z", "last_modified_time": "2024-02-06T13:22:42.976093Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737759.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5254/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:33:08.314070Z", "last_modified_time": "2024-02-06T13:22:43.017382Z", "date_published": null, "start_time": "2023-12-08T16: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": "Tämä vuonna 2023 on Chilen vuoden 1973 unohtumattoman vallankaappauksen 50-vuotismuistopäivä.", "en": "This 2023 marks the 50 years commemoration of the unforgettable Chilean coup of 1973." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6CE57A67943DDE9C0D7676421F14A8BE/Chile_50_Elokuvaesitys_Chilesta_ja_Suomesta", "en": "http://www.stoa.fi/en/events/event/6CE57A67943DDE9C0D7676421F14A8BE/Chile_50_A_film_screening_about_Chile_and_Finland" }, "description": { "fi": "<p>Tämä vuonna 2023 on Chilen vuoden 1973 unohtumattoman vallankaappauksen 50-vuotismuistopäivä.</p><p>Vallankumouksen myötä joulukuussa 1973 ensimmäiset chileläiset pakolaiset alkoivat saapua Skandinavian maihin ja Suomeen.</p><p>Tämä dokumenttielokuvasarja tekee lyhyen matkan takaisin 1970-luvulle Suomeen, jossa pääsemme näkemään teoksia, jotka jättivät jälkensä aikakauden yhteiskuntaan, kuten tunnetun chileläisen ohjaajan Angelina Vásquezin ”Kaksi vuosi Suomessa” ja suomalais-ruotsalaisen elokuvantekijän Claes Olssonin ohjaama ”Taksvärkki – 74”.</p><p>Esitykseen on vapaa pääsy.</p><p>Stoan parvigalleriassa on samaan aikaan esillä vallankumousta käsittelevä Luis Bustamante Alvaradon Dignidad-näyttely.</p>", "en": "<p>This 2023 marks the 50 years commemoration of the unforgettable Chilean coup of 1973.</p><p>This event set a historic precedent in the history of Finland, as in December 1973, the first Chilean exiles began to arrive in the country.</p><p>This documentary film series will take a brief journey back to the 1970s in Finland, where we will be able to see works that left a mark on the society of that era, such as ‘Kaksi vuotta Suomessa’ by the renowned Chilean director Angelina Vásquez, and 'Taksvärkki - 74,' directed by the Finnish-Swedish filmmaker Claes Olsson.</p>" }, "name": { "fi": "Chile 50 – Elokuvaesitys Chilestä ja Suomesta", "en": "Chile 50 – A film screening about Chile and Finland" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61059/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60633", "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: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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/johanna-mikko-iivanainen-johanna-ja-mikko-iivanainen-joulurauhaa-kanneltalo-17491241/", "sv": "https://www.lippu.fi/event/johanna-mikko-iivanainen-johanna-ja-mikko-iivanainen-joulurauhaa-kanneltalo-17491241/", "en": "https://www.lippu.fi/event/johanna-mikko-iivanainen-johanna-ja-mikko-iivanainen-joulurauhaa-kanneltalo-17491241/" }, "description": null, "price": { "fi": "24,50 / 17 €", "sv": "24,50 / 17 €", "en": "24,50 / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4629, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:58.026571Z", "last_modified_time": "2024-02-06T13:22:42.875829Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731126.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4629/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:57.869837Z", "last_modified_time": "2024-02-06T13:22:42.916786Z", "date_published": null, "start_time": "2023-12-08T16: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": "Johanna ja Mikko Iivanainen kutsuvat kuulijat rauhoittumaan kohti joulua perinteisten joululaulujen kuten Varpunen jouluaamuna, Heinillä härkien kaukalon, Jo joutuu ilta sekä uudempien jouluisien sävelmien saattelemana.", "sv": "Johanna och Mikko Iivanainen bjuder in lyssnarna att hitta stillheten när julen nalkas med hjälp av traditionella julsånger.", "en": "Johanna and Mikko Iivanainen invite listeners to unwind towards Christmas, accompanied by traditional Christmas carols." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/872F412A37AC54C89B76BFE56EC4563A/Johanna_ja_Mikko_Iivanainen_Joulurauhaa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/872F412A37AC54C89B76BFE56EC4563A/Johanna_och_Mikko_Iivanainen_Joulurauhaa", "en": "http://www.kanneltalo.fi/en/events/event/872F412A37AC54C89B76BFE56EC4563A/Johanna_and_Mikko_Iivanainen_Christmas_Peace" }, "description": { "fi": "<p>Johanna ja Mikko Iivanainen kutsuvat kuulijat rauhoittumaan kohti joulua perinteisten joululaulujen kuten Varpunen jouluaamuna, Heinillä härkien kaukalon, Jo joutuu ilta sekä uudempien jouluisien sävelmien saattelemana.</p><p>Tyylitajuinen, herkkä ja sielukas soitanta ja laulu on tämän jo yli kaksi vuosikymmentä toistensa kanssa musisoineen pariskunnan tekemisen pohja.</p><p><b>Johanna Iivanainen</b> (s. 1976) on oululaislähtöinen nykyään Mäntsälään kotiutunut laulajalauluntekijä. Suurelle yleisölle Johanna on tullut tutuksi TV-ohjelma SuomiLOVEn housebandin solistina v. 2014–2019.</p><p>Johannan raikkaan luonnollinen esiintyminen ja sävykäs tulkinta on saavuttanut suuren suosion. Artistin monipuolisuus on suorastaan hätkähdyttävä kattaen levytyksiä jazzin, accappellan, popin, dancen ja lastenmusiikin alueilta. Iivanaisen poikkeuksellisen kattava diskografia sisältää yli 50 levytystä.</p><p><b>Mikko Iivanainen</b> (s. 1975) on monipuolinen kitarataituri, joka on tehnyt yhteistyötä Johannan lisäksi myös mm. Maria Kalaniemen, Timo Alakotilan, Edu Kettusen, Mika Kuokkasen ja Juhani Aaltosen kanssa. Suurella soundipaletilla maalaava kitarataiteilija on julkaissut kolme sooloalbumia: Progesävyisen ensemble albumin Last Room (2014) sekä soolokitara levyt A River Runs through It (2020) ja Lullaby for Lost Souls (2023).</p><p>Esityksen kesto n. 2 tuntia sisältäen väliajan.</p>", "sv": "<p>Johanna och Mikko Iivanainen bjuder in lyssnarna att hitta stillheten när julen nalkas med hjälp av traditionella julsånger.</p><p>Stilsäkerhet, sensitivitet och själfullhet är fundamentet när detta par, som musicerat tillsammans i redan över två decennier, spelar och sjunger.</p><p>Längd cirka 2 timmar, med paus</p>", "en": "<p>Johanna and Mikko Iivanainen invite listeners to unwind towards Christmas, accompanied by traditional Christmas carols.</p><p>Stylistic, sensitive and soulful playing and singing is the basis of the work of this couple who have been making music together for more than two decades.</p><p>Duration approx. 2 hours, inc. intermission</p>" }, "name": { "fi": "Johanna ja Mikko Iivanainen: Joulurauhaa – Joulukonserttikiertue", "sv": "Johanna och Mikko Iivanainen: Joulurauhaa – Julkonsertturné", "en": "Johanna and Mikko Iivanainen: Christmas Peace – Christmas concert tour" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60633/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61406", "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:29/?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/yso:p16327/?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": 6165, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T10:13:45.356635Z", "last_modified_time": "2024-02-06T13:22:42.774872Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739640.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6165/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T10:13:45.298236Z", "last_modified_time": "2024-02-06T13:22:42.820422Z", "date_published": null, "start_time": "2023-12-08T11: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": "Kalifornialainen mainostoimiston omistaja Amanda ja englantilainen hääkolumnisti Iris asuvat eri puolilla maailmaa ja heitä yhdistää vain kaksi asiaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B75B8E058B9B67537662D1CB5067454D/The_Holiday_7_" }, "description": { "fi": "<p>Kalifornialainen mainostoimiston omistaja Amanda ja englantilainen hääkolumnisti Iris asuvat eri puolilla maailmaa ja heitä yhdistää vain kaksi asiaa.</p><p>He ovat molemmat katkeran pettyneitä miehiin ja kaipaavat muutosta elämiinsä. Pääosissa Kate Winslet, Cameron Diaz, Jack Black ja Jude Law. Elokuvan on ohjannut Nancy Meyers.¨</p><p>K-7<br>136 min</p>" }, "name": { "fi": "The Holiday (7) – Malmitalon joulu | Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61406/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61372", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" } ], "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": 6398, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-01T12:13:44.091614Z", "last_modified_time": "2024-02-06T13:22:42.676254Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740101.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6398/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-01T12:13:44.046468Z", "last_modified_time": "2024-02-06T13:22:42.715956Z", "date_published": null, "start_time": "2023-12-01", "end_time": "2024-01-02", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Olen lapsesta asti rakastanut piirtämistä. Nuorena olin kilpauimari ja pitkien kisamatkojen sekä rankkojen harjoitusleirien lomassa rentouduin piirtämällä." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/19A1AB6FF395CF453930616DFE2D5A61/Eva_Rissanen_Luonnollisesti" }, "description": { "fi": "<p>Olen lapsesta asti rakastanut piirtämistä. Nuorena olin kilpauimari ja pitkien kisamatkojen sekä rankkojen harjoitusleirien lomassa rentouduin piirtämällä.</p><p>Aikuisena perehdyin öljyväritekniikkaan ja maalaamisesta tuli minulle ammatti. Olen viime vuosina palannut takaisin minulle niin rakkaan piirtämisen pariin. Uusimmat työni ovat syntyneet värikynillä.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot: https://www.haagantaideseura.com/</p>" }, "name": { "fi": "Eva Rissanen: Luonnollisesti – Haagan Taideseura" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61372/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61005", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "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": 5243, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:32:45.962818Z", "last_modified_time": "2024-02-06T13:22:42.561101Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737443.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5243/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:32:45.826867Z", "last_modified_time": "2024-02-06T13:22:42.603665Z", "date_published": null, "start_time": "2023-11-29", "end_time": "2023-12-27", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Näyttelyssä on esillä 5–20-vuotiaiden lasten ja nuorten taidetta: piirroksia, digipiirroksia, maalauksia, animaatioita, keramiikkaa, veistoksia ja valoteoksia." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/261C424C1022CD8777654A33A57E3E4F/JUHLAT-taidenayttely" }, "description": { "fi": "<p>Näyttelyssä on esillä 5–20-vuotiaiden lasten ja nuorten taidetta: piirroksia, digipiirroksia, maalauksia, animaatioita, keramiikkaa, veistoksia ja valoteoksia.</p><p>Lämpimästi tervetuloa luovaan tilaan!</p><p>Vuotalon galleria<br>Vapaa pääsy</p>" }, "name": { "fi": "JUHLAT-taidenäyttely – Helsingin kuvataidekoulu / 45 vuotta luovassa tilassa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61005/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61370", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 6038, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-15T14:13:51.235304Z", "last_modified_time": "2024-02-06T13:22:42.436166Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727609.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6038/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-15T14:13:51.176883Z", "last_modified_time": "2024-02-06T13:22:42.480908Z", "date_published": null, "start_time": "2023-11-23", "end_time": "2023-12-16", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Narratiivinen maalausnäyttely käsittelee tarinankerrontaa, maalaustaidetta ja sitä, miten tarinat auttavat meitä kehystämään kokemuksiamme.", "sv": "Narrativ måleriserie om berättande målning och hur historier hjälper oss att förstå erfarenheter.", "en": "Narrative painting exhibition about storytelling, painting, and how stories help us frame our experience." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/48A754687DB831EE05A4743968126D93/Anneli_Holmstrom_HORSE_MONKEYSHADOW_CLIFF_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/48A754687DB831EE05A4743968126D93/Anneli_Holmstrom_HORSE_MONKEYSHADOW_CLIFF_", "en": "http://www.malmitalo.fi/en/events/event/48A754687DB831EE05A4743968126D93/Anneli_Holmstrom_HORSE_MONKEYSHADOW_CLIFF_" }, "description": { "fi": "<p>Narratiivinen maalausnäyttely käsittelee tarinankerrontaa, maalaustaidetta ja sitä, miten tarinat auttavat meitä kehystämään kokemuksiamme.</p><p>Esillä olevat teokset ovat valikoima vuonna 2021 alkaneesta laajemmasta samannimisestä, yhä kehittyvästä sarjasta. Maalaussarja kartoittaa neljä tarinalankaa, jotka näyttelyssä järjestetään ja kudotaan uudelleen uusiksi tarinaketjuiksi. Teossarjassa kiinnitetään erityistä huomiota \"visuaaliseen verkostoon\" sekä yksittäisten maalausten sisällä, että koko kuvasarjassa. Toisin kuin tyypillisissä kuvituksissa, näiden maalausten tarinat ovat itseään synnyttäviä, ja kuvamotiivit, hahmot ja maisemat muodostavat jatkuvasti uusia runollisia suhteita.<br> <br>Kuten satunnainen katkelma kirjasta – tai katkennut unijakso – jokainen maalaus on visuaalinen fragmentti, joka pyrkii laajempaan kertomukseen oman kehyksensä ulkopuolella. Tämä muuttuvuuden tunne ulottuu myös maalausten hahmojen nestemäiseen tilaan, joka voi helposti siirtyä ei-inhimillisestä inhimilliseen muotoon. Toisin kuin lineaarisemmissa tarinoissa, näiden maalausten tarinoita ei ole ankkuroitu keskeisiin päähenkilöihin tai ruumiinmuotoihin – sen sijaan niille on annettu vapaus liikkua vaivattomasti eläimellisten, mineraalisten, kodin esineistön tai orgaanisten muotojen välillä.<br>Näyttely pyrkii siis tarjoamaan monikerroksisen tarinankerronnan paikan, joka kutsuu katsojan aktiiviseksi lukijaksi kuvien keräämiseen ja yhdistämiseen.<br> <br>Näyttelyä ovat tukeneet TAIKE Konst Samfundet, Svenska Kulturfonden ja Helsingin Taiteilijaseura.<br> <br>Anneli Holmström (s. 1985) on skotlantilais-suomalainen kuvataiteilija, joka asuu tällä hetkellä Pietarsaaressa.<br> <br>Valmistuttuaan maisteriksi Edinburgh College of Art:sta hän on pitänyt lukuisia yksityis- ja ryhmänäyttelyitä sekä kotimaissaan Suomessa ja Skotlannissa, että muualla ulkomailla. Hänen taiteellinen ilmaisunsa lähtee liikkeelle maalaustaiteen laajennetusta lähestymistavasta ja yhdistää maalaustaiteellisia menetelmiä veistoksellisiin, performatiivisiin sekä yhteisötaiteellisiin näkökohtiin. Hänen estetiikkansa omaksuu monitulkintaisuuden ja avoimuuden – näkemys, joka luottaa visuaaliseen tarinankerrontaan välineenä artikuloida esisanallisia tunteita ja tietoa.</p><p>Avajaiset pidetään Malmitalolla 22.11. klo 17–20.<br>Tervetuloa!</p>", "sv": "<p>Narrativ måleriserie om berättande målning och hur historier hjälper oss att förstå erfarenheter.</p><p>De visade verken i denna show är ett urval av en större och utvecklande serie med samma namn påbörjad år 2021. Som titeln antyder så följer serien fyra berättelsetrådar vilka kan ordnas och vävas igen för varje utställning för att skapa en ny historia. Serien ger speciell uppmärksamhet åt det 'visuella nätverket' inom enskilda målningar och även tvärs över de olika bildsekvenserna. Till skillnad från typiska illustrationer så är berättelserna i dessa målningar självformande med bildliga motiv, karaktärer och landskap vilka kontinuerligt omarbetas för att skapa nya poetiska sammanhang.<br> <br>Liksom en lösryckt passage från en bok - eller som ett uppvaknande mitt i en dröm - så representerar varje målning ett isolerat fragment som söker ett större narrativ utöver sitt eget. Denna känsla av föränderlighet är likaså reflekterad i de flytande former som karaktärerna har i målningarna med skiften mellan mänskliga och icke-mänskliga former. I motsats till mera linjära berättelser så är narrativen i dessa målningar inte ankrade av centrala aktörer eller kroppsliga former men har istället frihet att skifta mellan djur, mineral, domestiska föremål och organiska varelser.<br> <br>Vad denna utställning därför syftar till att erbjuda är ett mångbottnat berättarställe - ett som inbjuder åskådaren till en aktiv del i samlandet och överförandet av bildverken.<br> <br>Denna utställning är understödd av bidrag från TAIKE, Konstsamfundet och Svenska Kulturfonden i Helsinki Artist Association.<br> <br>------<br> <br>Anneli Holmström (f.1985) är en Skotsk- Finländsk visuell konstnär för närvarande bosatt och verksam i Jakobstad, Finland.<br> <br>Efter att ha erhållit sin Masters of Art grad från Edinburgh College of Art 2009 så har Anneli haft solo- och grupputställningar både i sina två hemländer och utomlands. Med utgång från en utvidgad målarinsikt så kombinerar hon regelbundet traditionella målningsmetoder med skulpturala inslag, uppförande konst och kollektiva projekt. Annelis estetik omfattar en tvetydighet och öppenhet där en tilltro till ett visuellt berättande är ett verktyg för att kunna beskriva pre-verbala tankar och kunskap.</p>", "en": "<p>Narrative painting exhibition about storytelling, painting, and how stories help us frame our experience.</p><p>The works on show are a selection of a larger evolving series with the same name begun in 2021. As the title of the show indicates, the painting series charts four story threads that within the exhibition are reordered and re-woven to form fresh story chains. Across the series, close attention is paid to the 'visual network' both within singular paintings and across an image sequence. Unlike in typical illustrations, the stories in these paintings are<br>self-generative with pictorial motifs, characters and landscapes continually re-mined to form new poetic relationships.<br> <br>Like a random passage from a book - or a broken dream sequence - each painting is a visual fragment that aspires to a larger narrative beyond its own frame. This sense of mutability is<br>likewise extended to the fluid state of the characters in the paintings which can readily shift between non-human and human forms. Unlike in more linear stories, the narratives in these paintings are not anchored by central protagonists or bodily forms - instead they are granted freedom to move effortlessly between animal, mineral, domestic or organic shapes.<br> <br>What this exhibition therefore aims to offer is a multilayered storytelling site - one that invites the viewer as an active reader in the gathering and bridging of the imagery.<br> <br>The exhibition has been supported by TAIKE, Konstsamfundet, Svenska Kulturfonden and the Helsinki Artist association.</p><p>Anneli Holmström (b. 1985) is a Scottish-Finnish visual artist currently living and working in Jakobstad, Finland.<br> <br>Since graduating with her Masters degree from Edinburgh College of Art in 2009, she has exhibited widely in solo and group exhibitions in both her home countries of Finland and Scotland, and elsewhere abroad. Starting from an expanded painting approach, Anneli's work often combines painting methods with sculptural, performative and collaborative aspects. Her aesthetics is one which embraces ambiguity and open-endedness - a take that puts faith in visual storytelling as a tool for articulating pre-verbal feeling and knowledge.</p>" }, "name": { "fi": "Anneli Holmstrom: HORSE.MONKEYSHADOW.CLIFF – Helsingin taiteilijaseura", "sv": "Anneli Holmstrom: HORSE.MONKEYSHADOW.CLIFF", "en": "Anneli Holmstrom: HORSE.MONKEYSHADOW.CLIFF" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61370/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aggvuwhjhq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-30T11:29:03.554581Z", "last_modified_time": "2024-02-06T11:53:13.240699Z", "date_published": null, "start_time": "2024-01-22T06:00:00Z", "end_time": "2024-02-09T18: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": "Näyttely pyrkii herättelemään ymmärrystä puiden merkityksestä. Anne-Maria Vierisen teoksissa on hyödynnetty erilaisia luovia kuvaustekniikoita.", "sv": "Utställningen syftar till att öka medvetenheten om trädens betydelse. Anne-Maria Vierinen använder en mängd olika kreativa fotografiska tekniker i sina verk.", "en": "The exhibition aims to raise awareness of the importance of trees. Anne-Maria Vierinen uses a variety of creative photographic techniques in her works." }, "info_url": { "fi": "https://www.helmet.fi/Preview/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Sellon_omat/Taidenayttelyt(241976)" }, "description": { "fi": "<p>Aikojen alussa uskottiin, että maailmankaikkeuden keskellä oli puu, joka kannatteli taivasta Pohjantähden kohdalla. Maailmanpuu yhdisti kaikkeuden eri kerrokset toisiinsa. Maailmanpuumyytti tunnetaan useissa kulttuureissa erilaisina munnelmina.</p><p>Puilla on myyttinen merkitys ihmiselle. Puut mainitaan usein kansanuskossa, kansanrunoudessa ja Kalevalassa. Ennen puita pidettiin pyhinä. Puiden kohtalo ja ihmisen kohtalo ovat sidottu toisiinsa aivan kuten ennen uskottiin. Näyttelyn tavoitteena on herätellä ymmärtämään puiden merkitystä ja tärkeyttä ja yhdistää myyttinen elementti tähän päivään. Puut ovat tärkeä osa elämää ylläpitävää ekosysteemiä. </p><p>Pyhät lehdot ja pyhät puut pyrittiin hävittämään uuden uskon tultua Suomeen keskiajalta eteenpäin. Aikaisemmin pyhänä pidetyistä puista tuli paholaisen puita. Yhteys puihin ja metsään alkoi hiipua, vaikka se ei koskaan täysin kadonnut. Sama puiden hävittäminen on jatkunut nykypäivään asti, luonnontilaiset metsät ovat lähes täysin kadonneet Suomesta. Esimerkiksi männyt hakataan talousmetsissä usein jo nuoruuden kynnyksellä, 60-80 vuotiaina vaikka niiden keskimääräinen ikä Suomen oloissa olisi noin 300-400 vuotta.</p><p>Lapsuuteni leikkipaikka oli ikivanha sadunomainen kuusimetsä, jonka halkaisi pieni polveileva metsäpuro. Kun olin nuori, puut hakattiin ja tilalle tuli hakkuuaukio ja sittemmin läpitunkematon vesakko. Kunpa voisin joskus palata lapsuuteni ikimetsään.</p><p>Näyttelyn kaikki valokuvat perustuvat puihin ja metsiin. Kuvissa olen halunnut tuoda esille puiden sielua, ei niinkään tieteellistä/realistista kuvaa. Kuvat on toteutettu luovilla kuvaustekniikoilla, hyödyntäen mm. päällekkäisvalotusta kamerassa sekä kameran liikuttelua kuvauksen aikana (intentional camera movement).</p>", "sv": "<p>I tidernas begynnelse trodde man att det fanns ett träd i universums centrum, som höll upp himlen vid polstjärnan. Världsträdet är känt i många kulturer som en symbol för olika myter. Förr i tiden betraktades träd som heliga. Syftet med utställningen är att öka medvetenheten om trädens innebörd och betydelse och att föra in det mytiska elementet i nutiden. Trädens öde och människans öde är sammanflätade, precis som man en gång trodde att de var. Träd är en viktig del av det ekosystem som upprätthåller livet. Alla verk i utställningen är baserade på träd och skogar. I bilderna har jag försökt att få fram trädens själ, snarare än den vetenskapliga/realistiska bilden. </p><p>Anne-Maria Vierinen är en självlärd fotograf, som i sina verk har använt sig av spontana idéer som uppstår i stunden, samt olika kreativa fotografiska tekniker. Hennes verk avbildar ofta naturen på ett sätt som inte kan ses med det mänskliga ögat utan en kamera. Kameran fungerar som en pensel snarare än ett realistiskt uttryck. Förutom naturen inspireras Anne-Marias arbete av folkpoesi, mytologi, olika bildkonsttekniker och gamla målningar. </p>", "en": "<p>At the beginning of time, it was believed that there was a tree at the center of the universe. A colossal tree, that supported the heavens above. A tree, that connected the various layers of heaven, earth and the underworld together, with the Polar Star as it’s center point.</p><p>Trees have a mythical meaning for us in Finland. Trees are mentioned in Finnish folklore, in folk poetry and in the national epic the Kalevala. Trees were considered sacred. The fate of trees and mankind is intertwined just as it was believed in the past. The goal of this photography exhibition is to link ancient folklore to the current day and to also emphasize the importance of trees and forests to us all. Trees are a crucial part of the ecosystems that support life on Earth. </p><p>Sacred groves and sacred trees were decimated in Finland from the Middle Ages and onward. The trees that were considered holy became linked to evil. The strong primordial connection to trees and forests started to fade, but still lives in us all. The same decimation of forests continues to this day in a different form. Old-growth forests have almost completely disappeared from Finland. For example pine trees are often cut down at about 60-80 years old, even if in Finland their average age could be 300-400 years.</p><p>My favourite playground as a child was an ancient spruce tree forest straight from a story book. When I was young the trees were cut down to the last tree. I wish that some day I could still walk in that forest again and hear the whispering of the trees.</p><p>The photographs in the exhibition are all based on trees and forests. In the pictures I have sought to visualize the soul of trees/forest, instead of creating a realistic depiction. Creative photography techniques such as intentional camera movement and multiple exposure in camera were used.</p>" }, "name": { "fi": "Maailmanpuu - valokuvanäyttely", "sv": "Maailmanpuu - fotoutställning", "en": "World Tree - photographic exhibition" }, "provider_contact_info": null, "location_extra_info": { "fi": "Galleria Anna", "sv": "Galleria Anna", "en": "Gallery Anna" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggvuwhjhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx4az33m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@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:p1235/?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:p1947/?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:p318/?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:p6915/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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: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:p1235/?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:p1947/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:42:37.681938Z", "last_modified_time": "2024-02-06T10:42:37.681964Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma luokittelu 2", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx4az33m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3zr22y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@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:p1235/?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:p1947/?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:p318/?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": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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: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:p1235/?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:p1947/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:10:56.864913Z", "last_modified_time": "2024-02-06T10:10:56.864932Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma luokittelu", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3zr22y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3zhpga", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?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:p1235/?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:p2149/?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": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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: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:p1235/?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:p1947/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:09:31.964381Z", "last_modified_time": "2024-02-06T10:09:31.964401Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma kohderymät", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3zhpga/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3s55p4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?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:p1235/?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:p2149/?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": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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:p1235/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T09:42:00.846965Z", "last_modified_time": "2024-02-06T09:42:00.846998Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma 103", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3s55p4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxse4gvi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46153/?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": null, "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-02-05T11:42:19.317755Z", "last_modified_time": "2024-02-05T11:42:19.317775Z", "date_published": "2024-02-05T11:41:27Z", "start_time": "2024-02-05T13:50:00Z", "end_time": "2024-02-09T15:50: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": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "test" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471" }, "description": { "fi": "<div><div>test</div></div>" }, "name": { "fi": "Alaeventti" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxse4gvi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxsawsky", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?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:p1235/?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:p2149/?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": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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:p1235/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-05T11:24:04.582590Z", "last_modified_time": "2024-02-05T11:24:04.582623Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma 102", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxsawsky/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aggm423bbm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/5aCwnRkBe", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423b3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423b6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423coi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423c34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423c7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423dca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423dfi/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-01-03T08:08:31.581520Z", "last_modified_time": "2024-02-05T08:04:42.778933Z", "date_published": "2024-01-03T08:03:00Z", "start_time": "2024-01-10T08:00:00Z", "end_time": "2024-05-22T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Enter ry:n vapaaehtoiset seniorit antavat maksutonta ja henkilökohtaista vertaisopastusta tietokoneiden, tablettien ja kännyköiden käytössä." }, "info_url": { "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/" }, "description": { "fi": "<p>Enter ry:n vapaaehtoiset seniorit antavat maksutonta ja henkilökohtaista vertaisopastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Tapiolan kirjasto<br>Kulttuuriaukio 2<br>02100 ESPOO</p><p>Opastusta 10.1.-22.5.2024<br>keskiviikkoisin klo 10-12:00.</p><p>Ajanvaraus Tapiolan kirjastosta<br>tai puhelimitse p. 050 428 9392</p><p>Ota mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat!</p><p>Meillä ikäihmiset opastavat ikäihmisiä. Tervetuloa!</p><p>Lisätietoja: www.entersenior.fi</p>" }, "name": { "fi": "Tietotekniikkaopastusta senioreille" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki" }, "provider": { "fi": "Enter ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bbm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqmkcdu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64635/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?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": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7549, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:35:07.812361Z", "last_modified_time": "2024-02-05T07:35:07.812381Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=4aa39330-156f-4e63-a902-4b57e0b085dd&Timestamp=638424595706698150&Full=true", "name": "Kuvateksti MKtest 02022024", "cropping": "", "photographer_name": "Simo Sattuma", "alt_text": "Kuvan alt-teksti MKtest 02022024", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7549/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Videon nimi MKtest 02022024", "url": "https://www.asdf.fi", "alt_text": "Videon alt-teksti MKtest 02022024" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-05T07:35:10.635728Z", "last_modified_time": "2024-02-05T07:35:10.635751Z", "date_published": "2024-02-02T06:53:47Z", "start_time": "2024-02-05T07:00:00Z", "end_time": "2024-02-05T07:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 50, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-01-29T06:00:00+02:00", "enrolment_end_time": "2024-02-02T14:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC FI", "en": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC en" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842" }, "description": { "fi": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC FI</div></div>", "en": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC EN</div></div>" }, "name": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test", "en": "MKtest 020220241615 D365 to LE 10_video-url-test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki in Finnish", "en": "Business Helsinki in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqmkcdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqhazie", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7548, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:12:01.964515Z", "last_modified_time": "2024-02-05T07:12:01.964554Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "name": "Kuvan Kuvatekstikentän tietoa", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7548/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "created_time": "2024-02-05T07:12:03.915920Z", "last_modified_time": "2024-02-05T07:12:03.915942Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqhazie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqe3v4e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7547, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:02:36.482383Z", "last_modified_time": "2024-02-05T07:02:36.482403Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "name": "Kuvan Kuvatekstikentän tietoa", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7547/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" } ], "created_time": "2024-02-05T07:02:37.804926Z", "last_modified_time": "2024-02-05T07:02:37.804946Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqe3v4e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }