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=234&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 11939, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=235&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=233&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "elo:39771c60-11cc-4df6-919a-346c0f535d69", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=MKtest_LE733282502221" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151062, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T08:08:17.562578Z", "last_modified_time": "2024-05-10T08:08:17.562598Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8c0b34ba-8e0e-ef11-9f89-0022489e55b1", "name": "Kalasatama kuvateksti", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kalasatama alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151062/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-05-10T07:03:46.816207Z", "last_modified_time": "2024-05-10T08:08:19.532009Z", "date_published": "2024-05-10T07:00:11Z", "start_time": "2024-05-11T07:00:00Z", "end_time": "2024-05-11T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 2, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": 3, "enrolment_start_time": "2024-04-29T08:00:00+03:00", "enrolment_end_time": "2024-04-30T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Business Helsinki" }, "description": { "fi": "<div><p>MKtest LE73 LONG DESC</p></div>" }, "short_description": { "fi": "MKtest LE73 short desc" }, "location_extra_info": null, "name": { "fi": "MKtest LE73" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:39771c60-11cc-4df6-919a-346c0f535d69/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:36c8adf2-942c-4037-b826-513f0d971516", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p3128/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=JarinTesti100524LEvarten1303694283", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=JarinTesti100524LEvarten1303694283", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=JarinTesti100524LEvarten1303694283" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151058, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-10T07:52:46.266646Z", "last_modified_time": "2024-05-10T07:52:46.266664Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a8cc4457-fe02-ef11-9f89-000d3ab5d1a6", "name": "Vallisaari kuvattuna", "cropping": "", "photographer_name": "MyHelsinki", "alt_text": "Vallisaaresta kuva jossa kukkia", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151058/?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:p10727/?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:p3128/?format=api" } ], "created_time": "2024-05-10T07:52:48.469245Z", "last_modified_time": "2024-05-10T07:52:48.469267Z", "date_published": "2024-05-10T06:48:40Z", "start_time": "2024-05-14T06:00:00Z", "end_time": "2024-05-14T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-05-10T11:00:00+03:00", "enrolment_end_time": "2024-05-14T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Business Helsinki", "sv": "Business Helsinki", "en": "Business Helsinki" }, "description": { "fi": "<div><p>Tomi päivittänyt<br><br>Pikä kuvaus suomeksidfgdfg</p></div>", "sv": "<div><p>dfgdfgdfg</p></div>", "en": "<div><p>dfgdfgdfg</p></div>" }, "short_description": { "fi": "Lyhyt kuvaus suomeksidfgdfg", "sv": "dfgdfgd", "en": "dfgdfgd" }, "location_extra_info": null, "name": { "fi": "JarinTesti100524LEvarten", "sv": "JarinTesti100524LEvarten", "en": "JarinTesti100524LEvarten" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:36c8adf2-942c-4037-b826-513f0d971516/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:0eea399e-f44d-44ce-bf94-8bf49c3020bc", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Matin_testi_10052024_v21172106397" }, "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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" } ], "created_time": "2024-05-10T07:20:57.331385Z", "last_modified_time": "2024-05-10T07:20:57.331414Z", "date_published": "2024-05-10T07:14:11Z", "start_time": "2024-05-14T08:00:00Z", "end_time": "2024-05-14T09:21: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": 10, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-05-10T08:00:00+03:00", "enrolment_end_time": "2024-05-13T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "HKI" }, "description": { "fi": "<div><p>Pidempi kuvaus</p></div>" }, "short_description": { "fi": "Kuvaus" }, "location_extra_info": null, "name": { "fi": "Matin testi 10052024 v2" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:0eea399e-f44d-44ce-bf94-8bf49c3020bc/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:1588b49a-1d68-4992-8939-4cb3a42663cd", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:73020/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e3247b1a-b59e-4433-8261-9deee77a2e0c/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Tetstataan_TPR_subevent3748465502" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-05-10T06:38:28.107641Z", "last_modified_time": "2024-05-10T06:38:28.107661Z", "date_published": "2024-05-10T06:37:40Z", "start_time": "2024-05-10T08:45:00Z", "end_time": "2024-05-11T10:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-05-10T10:00:00+03:00", "enrolment_end_time": "2024-05-10T14:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "A" }, "description": { "fi": "<div><div>A</div></div>" }, "short_description": { "fi": "A" }, "location_extra_info": null, "name": { "fi": "Tetstataan TPR subevent" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:1588b49a-1d68-4992-8939-4cb3a42663cd/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:b800f64f-2639-4705-addd-b5a104c46d04", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:3308bbaa-d706-4d8d-9aec-187ec59e5539/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "ASDF ja yhä edelleen.", "sv": "ASDF ja yhä edelleen." }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE71_-_Asetetaan_LE70_tmn_tapahtuman_kattotapahtumaksi3649977113", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE71_-_Asetetaan_LE70_tmn_tapahtuman_kattotapahtumaksi3649977113" }, "price": { "fi": "101", "sv": "101" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151048, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T05:50:15.648065Z", "last_modified_time": "2024-05-10T05:50:15.648085Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/8e0b34ba-8e0e-ef11-9f89-0022489e55b1", "name": "botskei kuvateksti", "cropping": "", "photographer_name": "Laars Linssi", "alt_text": "botskei alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151048/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-05-10T05:48:20.560651Z", "last_modified_time": "2024-05-10T05:50:17.003774Z", "date_published": "2024-05-10T05:46:51Z", "start_time": "2024-05-13T04:00:00Z", "end_time": "2024-05-17T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 2, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": 3, "enrolment_start_time": "2024-05-06T08:00:00+03:00", "enrolment_end_time": "2024-05-11T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Business Helsinki suomeksi", "sv": "Business Helsinki ruotsiksi" }, "description": { "fi": "<div><p>MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi LONG DESC FI</p></div>", "sv": "<div><p>MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi LONG DESC SV</p></div>" }, "short_description": { "fi": "MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi SHORT DESC FI", "sv": "MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi SHORT DESC SV" }, "location_extra_info": null, "name": { "fi": "MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi", "sv": "MKtest LE71 - Asetetaan LE70 tämän tapahtuman kattotapahtumaksi SV" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:b800f64f-2639-4705-addd-b5a104c46d04/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:e3247b1a-b59e-4433-8261-9deee77a2e0c", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Testataan_TPR726413724" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:1588b49a-1d68-4992-8939-4cb3a42663cd/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-05-08T10:04:54.286746Z", "last_modified_time": "2024-05-08T12:33:36.290895Z", "date_published": "2024-05-07T11:24:21Z", "start_time": "2024-05-09T13:33:00Z", "end_time": "2024-05-09T15:33:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-05-07T10:00:00+03:00", "enrolment_end_time": "2024-05-08T18:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Testi" }, "description": { "fi": "<div><div>Testi</div></div>" }, "short_description": { "fi": "Testi" }, "location_extra_info": null, "name": { "fi": "Testataan TPR" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e3247b1a-b59e-4433-8261-9deee77a2e0c/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63093", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/" }, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10907, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T09:12:58.430297Z", "last_modified_time": "2024-02-16T09:12:58.430315Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738551.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10907/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T09:12:58.415358Z", "last_modified_time": "2024-05-08T12:12:51.900120Z", "date_published": null, "start_time": "2024-05-19T12: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C8B8EBF958A0D8AE468CF81648ED6426/Pyoralla_ajamisen_taito", "sv": "http://www.caisa.fi/sv/evenemang/event/C8B8EBF958A0D8AE468CF81648ED6426/Konsten_att_cykla_", "en": "http://www.caisa.fi/en/events/event/C8B8EBF958A0D8AE468CF81648ED6426/The_Art_of_Riding_a_Bike" }, "provider": null, "description": { "fi": "<p>Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.</p><p>Kuntoutuksessa hänet ottaa vastaan paikan pitkäaikainen työntekijä Jukka. Lisäksi hän saa toipumiskavereikseen kaikki rahansa pelanneen Alman ja reiveissä luhistuneen Tinden. <br> <br>Sitten Sami saa omaan toipumiseensa liittyvän tehtävän: hänen tulee läpikäydä koko siihenastinen elämänsä, kaikkien vuosien varrella omistamiensa polkupyörien kautta. Ja jakaa tarina toisille.</p><p>Pyörällä ajamisen taito on näytelmä tasapainon menettämisestä ja rikkinäisyydestä, vertaistuen voimasta sekä muutoksen ja toipumisen mahdollisuudesta. Se kertoo riippuvuuksien kanssa kamppailevista ihmisistä, heidän taustoistaan ja pyrkimyksistä löytää apua.</p><p>Esitys perustuu löyhästi tositapahtumiin.</p><p><b>Työryhmä:</b><br>Ohjaus ja käsikirjoitus: Ian Hannon<br>Rooleissa: Anna Arola, Heikki Herva, Joonas Kuokkanen & Ville Kettunen.<br>Äänisuunnittelija: Pauli Harju<br>Teatteri Jalankulkija</p><p>Kesto: 1,5 t<br>Ikäsuositus: 12+<br>Kieli: suomi</p><p>Näytelmässä käsitellään mm. alkoholismia ja peliriippuvuutta.</p><p>Liput: 15 € / 6 €</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista: https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/</p>", "sv": "<p>Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.</p><p>Pjäsen Konsten att cykla handlar om att tappa balansen, trasighet, kamratstödets kraft, och om möjligheten till förändring och tillfrisknande. Den handlar om människor som kämpar med missbruk, deras bakgrund och försök att hitta hjälp.</p><p>Språk: finska</p>", "en": "<p>Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly.</p><p>The Art of Riding a Bike is a play about losing your balance and being broken, the power of peer support, and the possibility of change and recovery. It’s about people struggling with addictions, their backgrounds and their efforts to find help.</p><p>Language: Finnish</p>" }, "short_description": { "fi": "Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.", "sv": "Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.", "en": "Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly." }, "location_extra_info": null, "name": { "fi": "Pyörällä ajamisen taito – Näytelmä elämänpyörästä", "sv": "Konsten att cykla – En pjäs om livscykeln", "en": "The Art of Riding a Bike – A play about the wheel of life" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63093/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63092", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/" }, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10906, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T09:12:58.287386Z", "last_modified_time": "2024-02-16T09:12:58.287404Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738549.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10906/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T09:12:58.268868Z", "last_modified_time": "2024-05-08T12:12:51.650432Z", "date_published": null, "start_time": "2024-05-18T15: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3B7D7A083D14AC054722F5C2BB635B99/Pyoralla_ajamisen_taito", "sv": "http://www.caisa.fi/sv/evenemang/event/3B7D7A083D14AC054722F5C2BB635B99/Konsten_att_cykla_", "en": "http://www.caisa.fi/en/events/event/3B7D7A083D14AC054722F5C2BB635B99/The_Art_of_Riding_a_Bike" }, "provider": null, "description": { "fi": "<p>Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.</p><p>Kuntoutuksessa hänet ottaa vastaan paikan pitkäaikainen työntekijä Jukka. Lisäksi hän saa toipumiskavereikseen kaikki rahansa pelanneen Alman ja reiveissä luhistuneen Tinden. <br> <br>Sitten Sami saa omaan toipumiseensa liittyvän tehtävän: hänen tulee läpikäydä koko siihenastinen elämänsä, kaikkien vuosien varrella omistamiensa polkupyörien kautta. Ja jakaa tarina toisille.</p><p>Pyörällä ajamisen taito on näytelmä tasapainon menettämisestä ja rikkinäisyydestä, vertaistuen voimasta sekä muutoksen ja toipumisen mahdollisuudesta. Se kertoo riippuvuuksien kanssa kamppailevista ihmisistä, heidän taustoistaan ja pyrkimyksistä löytää apua.</p><p>Esitys perustuu löyhästi tositapahtumiin.</p><p><b>Työryhmä:</b><br>Ohjaus ja käsikirjoitus: Ian Hannon<br>Rooleissa: Anna Arola, Heikki Herva, Joonas Kuokkanen & Ville Kettunen.<br>Äänisuunnittelija: Pauli Harju<br>Teatteri Jalankulkija</p><p>Kesto: 1,5 t<br>Ikäsuositus: 12+<br>Kieli: suomi</p><p>Näytelmässä käsitellään mm. alkoholismia ja peliriippuvuutta.</p><p>Liput: 15 € / 6 €</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista: https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/</p>", "sv": "<p>Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.</p><p>Pjäsen Konsten att cykla handlar om att tappa balansen, trasighet, kamratstödets kraft, och om möjligheten till förändring och tillfrisknande. Den handlar om människor som kämpar med missbruk, deras bakgrund och försök att hitta hjälp.</p><p>Språk: finska</p>", "en": "<p>Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly.</p><p>The Art of Riding a Bike is a play about losing your balance and being broken, the power of peer support, and the possibility of change and recovery. It’s about people struggling with addictions, their backgrounds and their efforts to find help.</p><p>Language: Finnish</p>" }, "short_description": { "fi": "Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.", "sv": "Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.", "en": "Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly." }, "location_extra_info": null, "name": { "fi": "Pyörällä ajamisen taito – Näytelmä elämänpyörästä", "sv": "Konsten att cykla – En pjäs om livscykeln", "en": "The Art of Riding a Bike – A play about the wheel of life" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63092/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63091", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/" }, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10905, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T09:12:58.162275Z", "last_modified_time": "2024-02-16T09:12:58.162296Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738550.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10905/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T09:12:58.138724Z", "last_modified_time": "2024-05-08T12:12:51.382161Z", "date_published": null, "start_time": "2024-05-17T16: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9FC5961DB5F4869010C34859E67CACDD/Pyoralla_ajamisen_taito", "sv": "http://www.caisa.fi/sv/evenemang/event/9FC5961DB5F4869010C34859E67CACDD/Konsten_att_cykla_", "en": "http://www.caisa.fi/en/events/event/9FC5961DB5F4869010C34859E67CACDD/The_Art_of_Riding_a_Bike" }, "provider": null, "description": { "fi": "<p>Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.</p><p>Kuntoutuksessa hänet ottaa vastaan paikan pitkäaikainen työntekijä Jukka. Lisäksi hän saa toipumiskavereikseen kaikki rahansa pelanneen Alman ja reiveissä luhistuneen Tinden. <br> <br>Sitten Sami saa omaan toipumiseensa liittyvän tehtävän: hänen tulee läpikäydä koko siihenastinen elämänsä, kaikkien vuosien varrella omistamiensa polkupyörien kautta. Ja jakaa tarina toisille.</p><p>Pyörällä ajamisen taito on näytelmä tasapainon menettämisestä ja rikkinäisyydestä, vertaistuen voimasta sekä muutoksen ja toipumisen mahdollisuudesta. Se kertoo riippuvuuksien kanssa kamppailevista ihmisistä, heidän taustoistaan ja pyrkimyksistä löytää apua.</p><p>Esitys perustuu löyhästi tositapahtumiin.</p><p><b>Työryhmä:</b><br>Ohjaus ja käsikirjoitus: Ian Hannon<br>Rooleissa: Anna Arola, Heikki Herva, Joonas Kuokkanen & Ville Kettunen.<br>Äänisuunnittelija: Pauli Harju<br>Teatteri Jalankulkija</p><p>Kesto: 1,5 t<br>Ikäsuositus: 12+<br>Kieli: suomi</p><p>Näytelmässä käsitellään mm. alkoholismia ja peliriippuvuutta.</p><p>Liput: 15 € / 6 €</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista: https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/</p>", "sv": "<p>Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.</p><p>Pjäsen Konsten att cykla handlar om att tappa balansen, trasighet, kamratstödets kraft, och om möjligheten till förändring och tillfrisknande. Den handlar om människor som kämpar med missbruk, deras bakgrund och försök att hitta hjälp.</p><p>Språk: finska</p>", "en": "<p>Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly.</p><p>The Art of Riding a Bike is a play about losing your balance and being broken, the power of peer support, and the possibility of change and recovery. It’s about people struggling with addictions, their backgrounds and their efforts to find help.</p><p>Language: Finnish</p>" }, "short_description": { "fi": "Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.", "sv": "Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.", "en": "Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly." }, "location_extra_info": null, "name": { "fi": "Pyörällä ajamisen taito – Näytelmä elämänpyörästä", "sv": "Konsten att cykla – En pjäs om livscykeln", "en": "The Art of Riding a Bike – A play about the wheel of life" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63091/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63090", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/pyoeraellae-ajamisen-taito-3592191/" }, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-16T09:12:57.971546Z", "last_modified_time": "2024-02-16T09:12:57.971567Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738548.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10904/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-16T09:12:57.940119Z", "last_modified_time": "2024-05-08T12:12:51.039041Z", "date_published": null, "start_time": "2024-05-16T16: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4801D5E625AE06B71F8D99141734AC92/Pyoralla_ajamisen_taito_-_Ensi-ilta", "sv": "http://www.caisa.fi/sv/evenemang/event/4801D5E625AE06B71F8D99141734AC92/Konsten_att_cykla_-_premiar", "en": "http://www.caisa.fi/en/events/event/4801D5E625AE06B71F8D99141734AC92/The_Art_of_Riding_a_Bike_-_premiere" }, "provider": null, "description": { "fi": "<p>Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.</p><p>Kuntoutuksessa hänet ottaa vastaan paikan pitkäaikainen työntekijä Jukka. Lisäksi hän saa toipumiskavereikseen kaikki rahansa pelanneen Alman ja reiveissä luhistuneen Tinden. <br> <br>Sitten Sami saa omaan toipumiseensa liittyvän tehtävän: hänen tulee läpikäydä koko siihenastinen elämänsä, kaikkien vuosien varrella omistamiensa polkupyörien kautta. Ja jakaa tarina toisille.</p><p>Pyörällä ajamisen taito on näytelmä tasapainon menettämisestä ja rikkinäisyydestä, vertaistuen voimasta sekä muutoksen ja toipumisen mahdollisuudesta. Se kertoo riippuvuuksien kanssa kamppailevista ihmisistä, heidän taustoistaan ja pyrkimyksistä löytää apua.</p><p>Esitys perustuu löyhästi tositapahtumiin.</p><p><b>Työryhmä:</b><br>Ohjaus ja käsikirjoitus: Ian Hannon<br>Rooleissa: Anna Arola, Heikki Herva, Joonas Kuokkanen & Ville Kettunen.<br>Äänisuunnittelija: Pauli Harju<br>Teatteri Jalankulkija</p><p>Kesto: 1,5 t<br>Ikäsuositus: 12+<br>Kieli: suomi</p><p>Näytelmässä käsitellään mm. alkoholismia ja peliriippuvuutta.</p><p>Liput: 15 € / 6 €</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br>Lue lisää kulttuurikavereista täältä: https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/</p>", "sv": "<p>Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.</p><p>Pjäsen Konsten att cykla handlar om att tappa balansen, trasighet, kamratstödets kraft, och om möjligheten till förändring och tillfrisknande. Den handlar om människor som kämpar med missbruk, deras bakgrund och försök att hitta hjälp.</p><p>Språk: finska</p>", "en": "<p>Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly.</p><p>The Art of Riding a Bike is a play about losing your balance and being broken, the power of peer support, and the possibility of change and recovery. It’s about people struggling with addictions, their backgrounds and their efforts to find help.</p><p>Language: Finnish</p>" }, "short_description": { "fi": "Kolmekymppinen Sami kaatuu eräänä yönä humalassa polkupyörällään ja satuttaa itsensä pahasti. Tapahtuneen jälkeen hän päätyy lopulta lepäämään ja toipumaan päihdekuntoutukseen, pois kaupungista maaseudulle.", "sv": "Sami är kring trettio och kör en natt berusad omkull med cykel, och skadar sig allvarligt.", "en": "Sami is in his thirties. One night he gets drunk and crashes his bike, hurting himself badly." }, "location_extra_info": null, "name": { "fi": "Pyörällä ajamisen taito - Ensi-ilta – Näytelmä elämänpyörästä", "sv": "Konsten att cykla - premiär – En pjäs om livscykeln", "en": "The Art of Riding a Bike - premiere – A play about the wheel of life" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63090/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63436", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150747, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-24T10:14:34.798965Z", "last_modified_time": "2024-04-24T10:14:34.798990Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749905.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150747/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-24T10:14:34.747591Z", "last_modified_time": "2024-05-07T13:12:53.397141Z", "date_published": null, "start_time": "2024-05-30T09: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/65A9F6E2BA369FFD32909A918CD4106D/UMO_Helsinki_Ensemble_Kevatjuhla_", "en": "http://www.savoyteatteri.fi/en/events/event/65A9F6E2BA369FFD32909A918CD4106D/UMO_Helsinki_Ensemble_Spring_Fever_" }, "provider": { "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra", "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra" }, "description": { "fi": "<p>Tässä UMO Helsinki Jazz Orchestran kevätkauden päättävässä lounaskonsertissa nautitaan tuore annos jazzia kahden nuoremman jazzsukupolven kirkkaan tähden luotsaamana. UMOn pasunisti <b>Kasperi Sarikoski</b> ja saksofonisti <b>Max Zenger</b> ovat valikoineet konserttiohjelman molempien omista sävellyksistä.</p><p>Sarikoski on soittanut UMOn riveissä vakituisena vuodesta 2019 ja Zenger vuodesta 2023. Molemmat ovat ansioituneita ja aktiivisia muusikoita myös UMOn ulkopuolella.</p><p>Kasperi Sarikoski (s. 1988) on esiintynyt lukuisten kotimaisten jazzartistien kanssa ja muun muassa Jukka Linkolan, Jukka Perkon ja Teppo Mäkysen yhtyeissä. Kansainvälisistä orkestereista mainittakoon esiintymiset Duke Ellington Orchestran, Stockholm Jazz Orchestran sekä Jazz at Lincoln Center Orchestran ja Wynton Marsalisin kanssa. Omaa musiikkiaan Sarikoski on julkaissut kaksi levyllistä, <i>Essence</i> sekä <i>3 + 1</i>, joista jälkimmäisen satoa kuullaan myös lounaskonsertissa.</p><p>Max Zenger (s. 1988) johtaa omia yhtyeitään, kuten <i>Maxxxtet</i> ja <i>Globus</i>, jolla voitti ensimmäisen sijan Euroopan yleisradioiden jazzyhtyekilpailussa 2018. Zenger on valittu Pori Jazz Festivaalin nousevaksi kyvyksi 2017 ja Turku Jazz Festivaalin vuoden artistiksi 2018. Hän on myös levy-yhtiö Flame Jazz Recordsin yksi perustajajäsenistä ja toimii Porvoo Jazz Festivalin taiteellisena johtajana. Zenger on julkaissut kymmenen omista sävellyksistään koostuvaa albumia ja soittanut kymmenillä muilla levyillä. Konserttiin Zenger on valikoinut musiikkia Globus-yhtyeensä toiselta <i>Flores</i>-albumilta – jolla sattumoisin soittaa myös Kasperi Sarikoski.</p><p><b>UMO Helsinki Ensemble</b> on UMO Helsinki Jazz Orchestrasta koottu pienempi kokoonpano, jonka muusikoilla on mittava ura niin UMOn riveissä kuin lukuisissa omissa projekteissaan.</p><p>Konsertin kesto 1 h.</p><p>Kasperi Sarikoski, pasuuna <br>Max Zenger, alttosaksofoni <br>Tuomo Uusitalo, piano<br>Anssi Tirkkonen, rummut <br>Juuso Rinta, basso</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus, R-kioskeilla 3 € / tilaus + 1 € / lippu. Max. 4 lippua / varaus. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä.</p><p>Ravintola Minne Gardenissa on konsertin asiakkaille tarjolla buffetlounas etuhintaan konsertin jälkeen, tee tilaus täältä:<br>https://savoyteatteriravintolat.fi/tapahtumatarjoilut/lounaskonsertti-umo-helsinki-ensemble-kevatjuhla</p>", "en": "<p>In this lunchtime concert ending the spring season of the UMO Helsinki Jazz Orchestra, enjoy a vibrant jazz program led by two bright stars of the younger Finnish jazz generation. UMO's trombonist <b>Kasperi Sarikoski</b> and saxophonist <b>Max Zenger</b> have selected their own compositions for the concert program.</p><p>Sarikoski has been playing in UMO since 2019 and Zenger since 2023. They are both distinguished musicians also active outside of UMO.</p><p>Kasperi Sarikoski (b. 1988) has performed with numerous Finnish jazz artists and, among others, including bands led by Jukka Linkola, Jukka Perko and Teppo Mäkynen. Of international orchestras, he has performed with the Duke Ellington Orchestra, Stockholm Jazz Orchestra and Jazz at Lincoln Center Orchestra and Wynton Marsalis. Sarikoski has released two albums of his own music, <i>Essence</i> and <i>3 + 1</i>. This lunchtime concert features music from the latter, which he composed and recorded while studying at the Juilliard School in New York.</p><p>Max Zenger (b. 1988) leads his own bands, such as <i>Maxxxtet</i> and <i>Globus,</i> with which he won the first place in the European Broadcasting Union’s (EBU) jazz ensemble competition in 2018. In 2017, Zenger was named the Talent of the Year of the Pori Jazz Festival and in 2018 he was chosen as Artist of the Year for Turku Jazz Festival. He is a founding member of the record label Flame Jazz Records and artistic director of the Porvoo Jazz Festival. Zenger has released ten albums with his own compositions and played on dozens of other records. For this concert, Zenger has handpicked music from his Globus band’s album <i>Flores</i> – on which also Kasperi Sarikoski plays.</p><p>The <b>UMO Helsinki Ensemble</b> is a smaller group assembled from members of the UMO Helsinki Jazz Orchestra, many of whom – in addition to having a long career in UMO – are involved in numerous individual projects.</p><p>Duration 1 hour.</p><p>Kasperi Sarikoski, trombone <br>Max Zenger, alto saxophone <br>Tuomo Uusitalo, piano<br>Anssi Tirkkonen, drums <br>Juuso Rinta, bass</p><p>Please note! The admission is free but it is recommendable to book a ticket in advance at the Savoy Theatre box office (0 €) or Lippu.fi webshop (0 €). At Lippu.fi stores commission is 3 € / order, at R-kioski 3 € / order + 1 € / ticket. Max. 4 tickets / booking. Larger group bookings directly from Savoy. Entry with an advance ticket until 11:50. After this, any empty seats will be filled with customers without tickets. Please arrive early for the doors will be closed once the concert has started.</p><p>Production: Savoy Theatre & UMO Helsinki Jazz Orchestra</p>" }, "short_description": null, "location_extra_info": null, "name": { "fi": "UMO Helsinki Ensemble – Kevätjuhla – Lounaskonsertti", "en": "UMO Helsinki Ensemble – Spring Fever – Lunchtime concert" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63436/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63026", "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:351/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/vuotalo/kolmen-kielen-stand-up-klubi-3624441/", "sv": "https://www.lippu.fi/artist/vuotalo/kolmen-kielen-stand-up-klubi-3624441/", "en": "https://www.lippu.fi/artist/vuotalo/kolmen-kielen-stand-up-klubi-3624441/" }, "price": { "fi": "20 €", "sv": "20 €", "en": "20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10600, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-07T10:13:59.810933Z", "last_modified_time": "2024-02-07T10:13:59.810951Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743728.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10600/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-07T10:13:59.770533Z", "last_modified_time": "2024-05-07T13:12:49.409089Z", "date_published": null, "start_time": "2024-05-08T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CEB374A1563C2EA702080446060E5517/Kolmen_kielen_Stand-Up-klubi", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CEB374A1563C2EA702080446060E5517/Kolmen_kielen_Stand-Up-klubi", "en": "http://www.vuotalo.fi/en/events/event/CEB374A1563C2EA702080446060E5517/Kolmen_kielen_Stand-Up-klubi" }, "provider": null, "description": { "fi": "<p>Vuotalo järjestää toukokuussa 2024 kolmen kielen stand up-illan!</p><p>Illassa on mukana sekä uusia lupaavia koomikkoja että komedian ammattilaisia, jotka esiintyvät suomen, ruotsin ja englannin kielellä.</p><p>Lavalla: Karim Aldulaimi & Bahar Tokat samt Amir Amokrane, Arnaud P. praplan, Bill Munsil, Harri Muikkula, Joonas Ranta, Max Nilsson ja Minna Tuominen.</p><p>Klubi-ilta, A-oikeudet, Kahvila Pokkari vastaa tarjoilusta. Ovet avataan klo 17.30. Liput à 20€ @ Lippu.fi tai lippuautomaatilta ovelta.</p>", "sv": "<p>Nordhuset arrangerar i maj 2024 en trespråkig stand-up-klubbkväll!</p><p>Under kvällen uppträder både nya lovande förmågor samt proffessionella komiker som uppträder på finska, svenska och engelska.</p><p>På scen: Karim Aldulaimi & Bahar Tokat samt Amir Amokrane, Arnaud P. praplan, Bill Munsil, Harri Muikkula, Joonas Ranta, Max Nilsson och Minna Tuominen.</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari. Dörrarna öppnas kl. 17.30. Längd 2h.</p><p>Biljetter à 20 € via Lippu.fi eller från biljettautomaten vid dörren.</p>", "en": "<p>Vuosaari House will organize a stand-up evening in three languages in May 2024!</p><p>Languages: Finnish, Swedish, English</p><p>On stage: Karim Aldulaimi & Bahar Tokat samt Amir Amokrane, Arnaud P. praplan, Bill Munsil, Harri Muikkula, Joonas Ranta, Max Nilsson and Minna Tuominen.</p><p>Club night, Café Pokkari takes care of the refreshments.<br>Doors open at 5:30 PM. Duration 2h incl. intermission.</p><p>Tickets at 20 € from lippu.fi or from the ticket machine at the door starting.</p>" }, "short_description": { "fi": "Vuotalo järjestää toukokuussa 2024 kolmen kielen stand up-illan!", "sv": "Nordhuset arrangerar i maj 2024 en trespråkig stand-up-klubbkväll!", "en": "Vuosaari House will organize a stand-up evening in three languages in May 2024!" }, "location_extra_info": null, "name": { "fi": "Kolmen kielen Stand-Up-klubi", "sv": "Kolmen kielen Stand-Up-klubi", "en": "Kolmen kielen Stand-Up-klubi" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63026/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63397", "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": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150648, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T10:13:42.169931Z", "last_modified_time": "2024-04-17T10:13:42.169947Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749144.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150648/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T10:13:42.143584Z", "last_modified_time": "2024-05-07T11:13:03.525291Z", "date_published": null, "start_time": "2024-05-15T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D66FBF8492DF7A7A8BBC28BAB572CBE8/Kylla_isa_osaa_7_" }, "provider": null, "description": { "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>" }, "short_description": { "fi": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu." }, "location_extra_info": null, "name": { "fi": "Kyllä isä osaa (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63397/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63396", "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": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150647, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T10:13:41.333683Z", "last_modified_time": "2024-04-17T10:13:41.333699Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749142.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150647/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T10:13:41.309280Z", "last_modified_time": "2024-05-07T11:13:02.991472Z", "date_published": null, "start_time": "2024-05-11T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0FFD1781E24A34EDFA3869654E699E81/Kylla_isa_osaa_7_" }, "provider": null, "description": { "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>" }, "short_description": { "fi": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu." }, "location_extra_info": null, "name": { "fi": "Kyllä isä osaa (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63396/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63395", "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": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" }, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T10:13:40.810586Z", "last_modified_time": "2024-04-17T10:13:40.810601Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749140.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T10:13:40.784712Z", "last_modified_time": "2024-05-07T11:13:02.674418Z", "date_published": null, "start_time": "2024-05-10T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/26AF2D4FA2FDB671FDAF96524AA09EEC/Kylla_isa_osaa_7_" }, "provider": null, "description": { "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>" }, "short_description": { "fi": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu." }, "location_extra_info": null, "name": { "fi": "Kyllä isä osaa (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63395/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63117", "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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kanneltalo-nothing-for-the-money-plays-dire-straits-kanneltalo-18436597/", "sv": "https://www.lippu.fi/event/kanneltalo-nothing-for-the-money-plays-dire-straits-kanneltalo-18436597/", "en": "https://www.lippu.fi/event/kanneltalo-nothing-for-the-money-plays-dire-straits-kanneltalo-18436597/" }, "price": { "fi": "20 €", "sv": "20 €", "en": "20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 20864, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-22T11:14:56.239416Z", "last_modified_time": "2024-03-22T11:14:56.239447Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739632.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/20864/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-22T11:14:56.194958Z", "last_modified_time": "2024-05-06T08:16:01.691817Z", "date_published": null, "start_time": "2024-05-10T16: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5627FF4905FDE634F1E99139991FDD44/Nothing_for_Money_plays_Dire_Straits", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5627FF4905FDE634F1E99139991FDD44/Nothing_for_Money_plays_Dire_Straits", "en": "http://www.kanneltalo.fi/en/events/event/5627FF4905FDE634F1E99139991FDD44/Nothing_for_Money_plays_Dire_Straits" }, "provider": null, "description": { "fi": "<p>Nothing for Money esittää: Ilta Dire Straits -yhtyeen musiikin parissa.</p><p>Nothing for Money on brittiläisen Dire Straits -yhtyeen musiikkia esittävä kokoonpano. 1970-luvun lopulla, keskellä punk-kuumetta perustettu Dire Straits kipusi vastavirtamusiikillaan muutamassa vuodessa Lontoon pubeista maailman suosituimpien rock-yhtyeiden eliittiin. Yhtyeellä oli oma tunnistettava soundinsa, eikä vähiten kitaristilauluntekijä Mark Knopflerin ansiosta.</p><p>Nothing for Money esittää pieteetillä erityisesti Dire Straitsin ensimmäisten albumien musiikkia. Monipuolisessa kattauksessa on paljon nautittavaa suoraviivaisista rock-vedoista progressiivisiin taideteoksiin. Konsertissa kuullaan monia tuttuja klassikoita sekä livenä harvemmin kuultuja helmiä.</p><p>Yhtyeessä musisoivat:<br>Juha Ahvenainen – koskettimet<br>Mikko Huotari – basso<br>Susan Jaser – laulu, perkussiot<br>Joonas Metsäniemi – kitarat<br>Jukka Metsäniemi – kitarat, laulu<br>Nicke von Weissenberg - rummut</p><p>Kesto: 2 t 30 min (sis. väliaika)</p>", "sv": "<p>Nothing for Money presenterar: En kväll med Dire Straits-bandets musik.</p><p>Dire Straits var ett band som lotsades av gitarristen Mark Knopfler med start i Londons pubar, som sedan växte till ett av världens största rockband under 80- och 90-talen. Nothing for Money spelar Dire Straits-klassiker med stil och skicklighet enligt de ursprungliga konsertarrangemangen.</p>", "en": "<p>Nothing for Money presents: An evening with the music of Dire Straits</p><p>Dire Straits was a band led by guitarist Mark Knopfler that grew from London’s pubs into one of the world’s biggest rock bands in the 1980s and 1990s. Nothing for Money plays Dire Straits classics with style and skill, following the original concert arrangements.</p>" }, "short_description": { "fi": "Nothing for Money esittää: Ilta Dire Straits -yhtyeen musiikin parissa.", "sv": "Nothing for Money presenterar: En kväll med Dire Straits-bandets musik.", "en": "Nothing for Money presents: An evening with the music of Dire Straits" }, "location_extra_info": null, "name": { "fi": "Nothing for Money plays Dire Straits", "sv": "Nothing for Money plays Dire Straits", "en": "Nothing for Money plays Dire Straits" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63117/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a9094da1-9f7e-46dd-87cb-a66665", "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/kulke:732/?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:p1393/?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:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kuvakentttestaus_2642024_HW1759630424" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150691, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T09:44:42.595251Z", "last_modified_time": "2024-04-19T09:44:42.595275Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/633d0f98-51fd-ee11-a1fe-000d3adbeb68", "name": "kuvatekstiä. Käyttö rajattu yhden tapahtuman yhteyteen.", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "alt-tekstiä", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150691/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p1393/?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:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-05-06T07:04:03.771206Z", "last_modified_time": "2024-05-06T07:44:08.852873Z", "date_published": "2024-04-26T08:17:54Z", "start_time": "2024-06-26T10:26:00Z", "end_time": "2024-06-30T12:26:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-05-26T10:00:00+03:00", "enrolment_end_time": "2024-05-26T14:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "a" }, "description": { "fi": "<div><div>a</div></div>" }, "short_description": { "fi": "a" }, "location_extra_info": null, "name": { "fi": "Kattotestaus 6.5.2024 HW" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a9094da1-9f7e-46dd-87cb-a66665/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:4f0dec54-8d53-45ea-ba5b-858781beacc0", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:311dd2b3-8398-48d2-81f8-08f698cccdb0/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://youtu.be/bUbA5y1hnFg?si=MWqUiMszUukmrSX5", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0c7401d9-3d09-ef11-9f8a-000d3ab363c5?readableEventId=MKtest_lomaketest_LE64_Custom_field_testi_no1_Teams-tapahtuma3005082531" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151004, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-06T05:02:11.156122Z", "last_modified_time": "2024-05-06T05:02:11.156146Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e577da3e-2609-ef11-9f8a-000d3ab363c5", "name": "Joku kuva kuvateksti", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Joku kuva alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151004/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-05-03T11:22:47.998412Z", "last_modified_time": "2024-05-06T05:02:14.888501Z", "date_published": "2024-05-03T11:19:54Z", "start_time": "2024-05-06T05:00:00Z", "end_time": "2024-05-06T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 11, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": 2, "enrolment_start_time": "2024-04-29T08:00:00+03:00", "enrolment_end_time": "2024-05-04T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Business Helsinki" }, "description": { "fi": "<div><p>MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) LONG DESC</p></div>" }, "short_description": { "fi": "MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) SHORT DESC" }, "location_extra_info": null, "name": { "fi": "MKtest lomaketest LE65_Custom field testi (Päivitys klo 16:04)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:4f0dec54-8d53-45ea-ba5b-858781beacc0/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:311dd2b3-8398-48d2-81f8-08f698cccdb0", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://youtu.be/bUbA5y1hnFg?si=MWqUiMszUukmrSX5", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/de4a5155-2309-ef11-9f8a-000d3ab363c5?readableEventId=MKtest_lomaketest_LE64_Custom_field_testi_no1_Teams-tapahtuma2976558314" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:4f0dec54-8d53-45ea-ba5b-858781beacc0/?format=api" } ], "images": [ { "id": 151000, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-06T04:59:51.264910Z", "last_modified_time": "2024-05-06T04:59:51.264925Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e377da3e-2609-ef11-9f8a-000d3ab363c5", "name": "Tiiliseinä kuvateksti", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Tiiliseinä alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151000/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-05-03T08:25:18.614782Z", "last_modified_time": "2024-05-06T04:59:52.764113Z", "date_published": "2024-05-03T08:16:14Z", "start_time": "2024-05-06T05:00:00Z", "end_time": "2024-05-06T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 11, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": 2, "enrolment_start_time": "2024-04-29T08:00:00+03:00", "enrolment_end_time": "2024-05-04T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Business Helsinki" }, "description": { "fi": "<div><p>MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) LONG DESC</p></div>" }, "short_description": { "fi": "MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) SHORT DESC" }, "location_extra_info": null, "name": { "fi": "MKtest lomaketest LE64_Custom field testi (Päivitys klo 15:37)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:311dd2b3-8398-48d2-81f8-08f698cccdb0/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63294", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 82046, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-04T08:13:16.007495Z", "last_modified_time": "2024-04-04T08:13:16.007512Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746452.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82046/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-03T09:13:53.991677Z", "last_modified_time": "2024-05-03T14:13:32.213867Z", "date_published": null, "start_time": "2024-05-13T14:00:00Z", "end_time": "2024-05-13T16: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D3D122DDDBA65873825C0B3F1ED250B7/Kirsi_Kunnas_100v_-runo-olohuoneen_avajaiset", "sv": "http://www.annantalo.fi/sv/evenemang/event/D3D122DDDBA65873825C0B3F1ED250B7/Kirsi_Kunnas_100_ar_diktvardagsrummets_oppning", "en": "http://www.annantalo.fi/en/events/event/D3D122DDDBA65873825C0B3F1ED250B7/" }, "provider": null, "description": { "fi": "<p>Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Maanantain ohjelmassa on runo-olohuoneen avajaiset.</p><p>klo 17 avajaissanat</p><p>klo 17.05-17.15 <br>Tanssiteatteri GLIMS & GLOMS: Tii-tii-tiitiäinen</p><p>Tii-Tii-Tiitiäinen on Kirsi Kunnaksen runoihin perustuva koko perheen esitys, josta nähdään Annantalolla maistiainen.<br>Esityksessä seikkailevat Kunnaksen tuotannosta useille sukupolville tutut hahmot, muun muassa Tiitiäinen ja Haitula.</p><p>klo 17.15 <br>Satupuu<br>Kirsi Kunnaksen luontoaiheiset tarinat valtaavat runo-olohuoneen. <br> <br>Tule kuuntelemaan sadunkertoja Sinivatukan lukuhetkeä ja maalaamaan metsäkansaa taideohjaaja Mustikan johdolla. Non-stop taidepajassa sekoitellaan luonnonvärejä ja maalataan hahmoja yhteiseen satupuuhun.</p><p>Lukuhetkiä järjestetään runo-olohuoneessa 20min välein. Max 15 hlöä kerrallaan runo-oluhuoneessa.<br> <br>Ohjaajina Annantalon taidekasvattajat Karoliina Helminen ja Jenna Saarinen <br> <br>klo 18.45-19 <br>Tanssiteatteri GLIMS & GLOMS: Tii-tii-tiitiäinen <br>Tii-Tii-Tiitiäinen on Kirsi Kunnaksen runoihin perustuva koko perheen esitys, josta nähdään Annantalolla maistiainen.<br>Esityksessä seikkailevat Kunnaksen tuotannosta useille sukupolville tutut hahmot, muun muassa Tiitiäinen ja Haitula.</p><p>Annantalon 2.kerros<br>Alle 8v-aikuisen seurassa<br>Vapaa pääsy</p>", "sv": "<p>Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan.</p><p>kl. 17 öppningsord<br>kl. 17.05–17.15<br>Dansteater GLIMS & GLOMS: Tii-tii-tiitiäinen</p><p>Tii-tii-tiitiäinen är en föreställning för hela familjen som grundar sig på Kirsi Kunnas dikter. På Annegården får vi se ett smakprov av föreställningen.<br>I föreställningen är figurerna från Kirsi Kunnas produktion som är välbekanta för flera generationer, exempelvis Tiitiäinen och Hattula, ute på äventyr.</p><p>Kl. 17.15<br>Sagoträdet<br>Kirsi Kunnas berättelser med naturtema tar över diktvardagsrummet.</p><p>Kom och lyssna på sagoberättare Sinivatukkas lässtund och måla skogsfolket under ledning av konsthandledare Mustikka. I nonstop-workshoppen blandar vi naturfärger och målar figurer till ett gemensamt sagoträd.</p><p>Lässtunderna ordnas i diktvardagsrummet med 20 minuters intervall. Maximalt 15 personer på en gång i diktvardagsrummet.</p><p>Som handledare fungerar Annegårdens konstpedagoger Karoliina Helminen och Jenna Saarinen</p><p>kl. 18.45–19<br>Dansteater GLIMS & GLOMS: Tii-tii-tiitiäinen <br>Tii-tii-tiitiäinen är en föreställning för hela familjen som grundar sig på Kirsi Kunnas dikter. På Annegården får vi se ett smakprov av föreställningen.<br>I föreställningen är figurerna från Kirsi Kunnas produktion som är välbekanta för flera generationer, exempelvis Tiitiäinen och Hattula, ute på äventyr.</p><p>Annegården, 2. våningen<br>Under 8-åringar i sällskap av en vuxen<br>Fritt inträde</p>", "en": "<p>Welcome to Annantalo during the Children's Culture Week, a celebration of literature, reading and listening! At the heart of the week is the Kirsi Kunnas 100 Years poetry lounge with a programme of events throughout the week. Monday's programme includes the opening of the poetry room.</p><p>5 pm opening words<br>5:05–5:15 pm<br>GLIMS & GLOMS Dance Theatre: Tii-tii-tiitiäinen</p><p>Tii-Tii-Tiitiäinen is a performance for the whole family based on the poems of Kirsi Kunnas, which is being previewed at Annantalo.<br>The performance features generational favourite characters from Kunnas' works, including Tiitiäinen and Haitula.</p><p>5:15 pm<br>Satupuu<br>The nature-themed stories of Kirsi Kunnas’ Satupuu take over the poetry lounge.</p><p>Come and listen to Sinivatukka's story time and paint the forest folk under the guidance of art director Mustikka. This non-stop art workshop mixes natural colours and paints characters in a shared tree of fairy tales.<br>Reading sessions are held in the poetry lounge every 20 minutes. Visitor limit in the poetry lounge 15 people.</p><p>Directed by Annantalo art educators Karoliina Helminen and Jenna Saarinen</p><p>6:45–7 pm<br>GLIMS & GLOMS Dance Theatre: Tii-Tii-Tiitiäinen<br>Tii-Tii-Tiitiäinen is a performance for the whole family based on the poems of Kirsi Kunnas, which is being previewed at Annantalo.<br>The performance features generational favourite characters from Kunnas' works, including Tiitiäinen and Haitula.</p><p>Annantalo 2nd floor<br>Children under 8 with an adult<br>Free entrance</p>" }, "short_description": { "fi": "Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Maanantain ohjelmassa on runo-olohuoneen avajaiset.", "sv": "Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan.", "en": "Welcome to Annantalo during the Children's Culture Week, a celebration of literature, reading and listening! At the heart of the week is the Kirsi Kunnas 100 Years poetry lounge with a programme of events throughout the week. Monday's programme includes the opening of the poetry room." }, "location_extra_info": null, "name": { "fi": "Kirsi Kunnas 100v. -runo-olohuoneen avajaiset – Lastenkulttuurin juhlaviikko", "sv": "Kirsi Kunnas 100 år diktvardagsrummets öppning – Barnkulturens festvecka", "en": "Children’s Culture Week" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63294/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }