Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. 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&hide_recurring_children=true&page=215
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=216", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=214" }, "data": [ { "id": "espoo_le:aghsnfbhdi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghsnfbg4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghsnfbg7y/?format=api" } ], "images": [ { "id": 150743, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-23T12:43:34.341615Z", "last_modified_time": "2024-05-17T10:30:18.739899Z", "name": "Kahvihetki.", "url": "https://tapahtumasyotto.espoo.fi/media/images/Nimet%C3%B6n_malli_5.png", "cropping": "293,0,1707,1414", "photographer_name": "Pixabay", "alt_text": "Kolme kahvikuppia.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-28T20:33:28.278103Z", "last_modified_time": "2024-04-28T20:33:28.278126Z", "date_published": "2024-04-28T20:40:00Z", "start_time": "2024-05-17T06:00:00Z", "end_time": "2024-05-31T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa. </p><p>Tervetuloa laulamaan, loruttelemaan, kuuntelemaan satuja ja viettämään aikaa alueen muiden vanhempien kanssa kahvikupin äärellä.</p><p>Järjestetään toukokuussa perjantaina 17.5. ja 31.5. klo 9-11 Entressen kirjaston Sinisessä huoneessa.</p><p>Tapahtumaan on esteetön pääsy.</p>", "sv": "<p>Familjekafé, som riktar sig till familjer med barn under skolåldern, kommer att starta i Entresse biblioteket.</p><p>Välkommen att sjunga, rimma, lyssna på sagor och umgås med andra föräldrar i området över fika.</p><p>Arrangeras i maj fredagen den 17.5. och 31,5. från 9 till 11 i Sininen huone på Entresse biblioteket.</p><p>Evenemanget är på finska.</p><p>Evenemanget är tillgängligt för rörelsehindrade.</p>", "en": "<p>Family Café is an event for families with children under school age, which will start in the Entresse library.</p><p>Welcome to sing, rhyme, listen to fairy tales and spend time with other parents in the area over a cup of coffee.</p><p>Organized in May on Friday 17.5. and 31.5. from 9 to 11 in the Sininen huone at Entresse library.</p><p>The event is in Finnish.</p><p>The event is accessible for all.</p>" }, "name": { "fi": "Perhekahvila", "sv": "Familjekafé", "en": "Family Café" }, "short_description": { "fi": "Alle kouluikäisille lapsiperheille suunnattu Perhekahvila.", "sv": "Familjekafé, som riktar sig till familjer med barn under skolåldern.", "en": "Family Café is an event for families with children under school age, which will start in the Entresse library." }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghsnfbhdi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63139", "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:54/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "47,50-28,50 €", "sv": "47,50-28,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3603716", "sv": "https://www.lippu.fi/eventseries/name-3603716" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-06T11:14:34.152093Z", "last_modified_time": "2024-03-06T11:14:34.152132Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745002.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-06T11:14:34.114069Z", "last_modified_time": "2024-04-27T10:13:33.513916Z", "date_published": null, "start_time": "2024-05-04T16: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/42751C571E56A3CF13772DED18DE9AEC/The_Real_Group_SWE_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/42751C571E56A3CF13772DED18DE9AEC/The_Real_Group_SWE_" }, "provider_contact_info": null, "provider": { "fi": "Ramasound Oy", "sv": "Ramasound Oy" }, "description": { "fi": "<p>The Real Group on nyt 40 vuotta kestäneen uransa aikana muodostunut synonyymiksi maailmanluokan vokaalimusiikille. Maineikkaalla kokoonpanolla on takanaan lähes 3000 konserttia eri puolilla maailmaa. Alusta alkaen yhtye on jatkuvasti haastanut käsitykset siitä, mitä pelkästään ihmisäänellä on mahdollista saada aikaan.</p><p>Tapaa <b>Clara Fornander</b>, <b>Joanné Nugas</b>, <b>Johannes Rückert Becker</b>, <b>Axel Berntzonb</b> ja <b>Daniele Gees</b> jazzia, poppia ja kuoromusiikkia jännittävästi yhdistelevässä ohjelmassa The Real Groupin patentoituun a cappella -tyyliin.</p><p>https://www.therealgroup.se</p><p>--</p><p>Musta lammas -kuoro The Real Groupin konsertin lämmittelijäksi Savoy-Teatterissa la 4.5.2024</p><p>Voittoja maailmalla niittänyt Musta lammas on Suomen a cappella -kentän kiinnostavimpia nimiä. Rytmimusiikkiin erikoistunut Musta lammas groovaa ja soi tiukasti yhteen bändin tavoin. Ryhmän ohjelmisto on herkullinen sekoitus omia kappaleita ja maukkaita uudelleensovituksia. Kuoroa johtaa Ida Olsonen.</p><p>Vain pari vuotta perustamisensa jälkeen 2017 kuoro voitti tanskalaisen Aarhus Vocal Festivalin kuorokilpailun. Samana vuonna kuoro on voitti Kuorojen kapina -kilpailu. Lisäksi kuoro on toiminut pääesiintyjänä mm. Vaasan kuoro -festivaaleilla ja SingStrong -tapahtumassa New Yorkissa.</p><p>24-henkistä kokoonpanoa yhdistää intohimo rytmimusiikkia kohtaan. Valtaosa kuoron jäsenistä on musiikin ammattilaisia tai ammattiopiskelijoita, ja sekaan mahtuu myös muutama intohimoinen harrastaja.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>The Real Group har under sin nu 40 år långa karriär kommit att bli synonymt med vokalmusik i världsklass. Sedan starten har den hyllade gruppen gjort nära 3000 konserter över hela världen och ständigt utmanat gränserna för vad som kan åstadkommas med rösten som enda uttrycksmedel.</p><p>Möt <b>Clara Fornander</b>, <b>Joanné Nugas</b>, <b>Johannes Rückert Becker</b>, <b>Axel Berntzon</b> och <b>Daniele Dees</b> i ett program med en spännande blandning av jazz, pop och körmusik i The Real Groups patenterade a cappella-stil.</p><p>https://www.therealgroup.se</p><p>Öppningsakten för konserten är den finska popkören Musta Lammas.</p><p>Längd ca 2 h, inkl. paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p><p>Produktion: Ramasound Oy</p>" }, "name": { "fi": "The Real Group (SWE) – feat. Musta Lammas", "sv": "The Real Group (SWE) – feat. Musta Lammas" }, "short_description": { "fi": "The Real Group on nyt 40 vuotta kestäneen uransa aikana muodostunut synonyymiksi maailmanluokan vokaalimusiikille. Maineikkaalla kokoonpanolla on takanaan lähes 3000 konserttia eri puolilla maailmaa. Alusta alkaen yhtye on jatkuvasti haastanut käsitykset siitä, mitä pelkästään ihmisäänellä on mahdollista saada aikaan.", "sv": "The Real Group har under sin nu 40 år långa karriär kommit att bli synonymt med vokalmusik i världsklass. Sedan starten har den hyllade gruppen gjort nära 3000 konserter över hela världen och ständigt utmanat gränserna för vad som kan åstadkommas med rösten som enda uttrycksmedel." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63139/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63373", "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": [], "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-26T15:12:52.846420Z", "last_modified_time": "2024-04-26T15:12:52.846441Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749422.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150858/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-26T15:12:52.829201Z", "last_modified_time": "2024-04-26T15:12:52.894415Z", "date_published": null, "start_time": "2024-05-17T12: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/0F00699BF1870E31C42B5A021F262798/Myrskyluodon_Maija_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella.</p><p>Elokuva perustuu Anni Blomqvistin samannimiseen romaaniin ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.</p><p>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Ikäsuositus: 12<br>Kesto: 163 min<br>Elokuva on tekstitetty Suomeksi<br>Ensi-ilta: 19.1.2024</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "name": { "fi": "Myrskyluodon Maija (12) – Kino Helios" }, "short_description": { "fi": "Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63373/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghrvei55q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-26T13:09:42.957562Z", "last_modified_time": "2024-04-26T13:09:42.957587Z", "date_published": null, "start_time": "2024-05-09T05:00:00Z", "end_time": "2024-05-09T15: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": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Jaana Leinosen taidenäyttely \"Väreistä mielihyvää elämään\" Lippulaivan kirjastossa 7.5.-25.5.2024. Näyttelyssä on realistisia öljymaalauksia henkilöistä, asetelmista ja luonnosta. </p>", "sv": "<p>Jaana Leinonens konstutställning ”Från färger till glädje till liv” på Lippulaiva bibliotek 7.5.-25.5.2024. Utställningen består av realistiska oljemålningar av människor, stilleben och natur. </p>", "en": "<p>Jaana Leinonen's art exhibition \"Väreistä mielihyvää elämään\" at Lippulaiva Library 7.5.-25.5.2024. The exhibition features realistic oil paintings of people, still lifes and nature. </p>" }, "name": { "fi": "Väreistä mielihyvää elämään - Jaana Leinosen taidenäyttely", "sv": "Från färger till glädje till liv - Jaana Leinonens konstutställning", "en": "Väreistä mielihyvää elämään - Art exhibition by Jaana Leinonen" }, "short_description": { "fi": "Jaana Leinosen taidenäyttely Lippulaivan kirjastossa 7.5.-25.5.2024. Näyttelyssä on realistisia öljymaalauksia henkilöistä, asetelmista ja luonnosta. ", "sv": "Jaana Leinonens konstutställning på Lippulaiva bibliotek 7.5.-25.5.2024. Utställningen består av realistiska oljemålningar av människor, stilleben och natur. ", "en": "Jaana Leinonen's art exhibition at Lippulaiva Library 7.5.-25.5.2024. The exhibition features realistic oil paintings of people, still lifes and nature. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei55q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghrvejaju", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei6hy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei6lq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei6pi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei6s4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei6wy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei62m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei66q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei7ce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei7fy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei7ju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei7nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei7rq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei7ve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei7y4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvei75a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvejabu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvejafi/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-26T13:08:25.165943Z", "last_modified_time": "2024-04-26T13:08:25.165965Z", "date_published": null, "start_time": "2024-05-08T05:00:00Z", "end_time": "2024-05-25T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Jaana Leinosen taidenäyttely \"Väreistä mielihyvää elämään\" Lippulaivan kirjastossa 7.5.-25.5.2024. Näyttelyssä on realistisia öljymaalauksia henkilöistä, asetelmista ja luonnosta. </p>", "sv": "<p>Jaana Leinonens konstutställning ”Från färger till glädje till liv” på Lippulaiva bibliotek 7.5.-25.5.2024. Utställningen består av realistiska oljemålningar av människor, stilleben och natur. </p>", "en": "<p>Jaana Leinonen's art exhibition \"Väreistä mielihyvää elämään\" at Lippulaiva Library 7.5.-25.5.2024. The exhibition features realistic oil paintings of people, still lifes and nature. </p>" }, "name": { "fi": "Väreistä mielihyvää elämään - Jaana Leinosen taidenäyttely", "sv": "Från färger till glädje till liv - Jaana Leinonens konstutställning", "en": "Väreistä mielihyvää elämään - Art exhibition by Jaana Leinonen" }, "short_description": { "fi": "Jaana Leinosen taidenäyttely Lippulaivan kirjastossa 7.5.-25.5.2024. Näyttelyssä on realistisia öljymaalauksia henkilöistä, asetelmista ja luonnosta. ", "sv": "Jaana Leinonens konstutställning på Lippulaiva bibliotek 7.5.-25.5.2024. Utställningen består av realistiska oljemålningar av människor, stilleben och natur. ", "en": "Jaana Leinonen's art exhibition at Lippulaiva Library 7.5.-25.5.2024. The exhibition features realistic oil paintings of people, still lifes and nature. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghrvejaju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:e780e4ae-4bb6-45ed-ab35-72fd893a4f61", "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": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kuvatestaus_2_hw_2642966710021" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-26T10:51:53.001545Z", "last_modified_time": "2024-04-26T10:51:53.001562Z", "name": "a", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/9bb9c043-8dfc-ee11-a1ff-000d3ab363c5", "cropping": "", "photographer_name": "a", "alt_text": "a", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150853/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-04-26T10:51:55.827129Z", "last_modified_time": "2024-04-26T10:51:55.827147Z", "date_published": "2024-04-26T10:45:16Z", "start_time": "2024-04-28T12:54:00Z", "end_time": "2024-04-29T14:54:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-04-27T10:00:00+03:00", "enrolment_end_time": "2024-04-27T12:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "a" }, "description": { "fi": "<div><div>a</div></div>" }, "name": { "fi": "Kuvatestaus 2 hw 26.4 pvtys" }, "short_description": { "fi": "a" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e780e4ae-4bb6-45ed-ab35-72fd893a4f61/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a9094da1-9f7e-46dd-87cb-a0875fb080ed", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:73686/?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: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:p4354/?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": [], "price": 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" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150852, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-26T10:43:46.535095Z", "last_modified_time": "2024-04-26T10:43:46.535112Z", "name": "c", "url": "https://plus.unsplash.com/premium_photo-1678112180202-cd950dbe5a35?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", "cropping": "", "photographer_name": "c", "alt_text": "c", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150852/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "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: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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-04-26T08:19:16.760516Z", "last_modified_time": "2024-04-26T10:43:47.734834Z", "date_published": "2024-04-26T08:17:54Z", "start_time": "2024-04-26T10:26:00Z", "end_time": "2024-04-26T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-04-26T10:00:00+03:00", "enrolment_end_time": "2024-04-26T14:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "a" }, "description": { "fi": "<div><div>a</div></div>" }, "name": { "fi": "Kuvakenttätestaus 26.4.2024 HW" }, "short_description": { "fi": "a" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a9094da1-9f7e-46dd-87cb-a0875fb080ed/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk2p4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6km/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6ny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6re/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-19T15:40:53.442182Z", "last_modified_time": "2024-04-26T10:42:13.115238Z", "date_published": "2024-04-26T10:15:00Z", "start_time": "2024-05-03T15:00:00Z", "end_time": "2024-05-31T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 18-19. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 18-19<br>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe<br>from 6 pm to 7 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 18-19.", "sv": "Pingisklubben för unga träffas fredagar klockan 18-19\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 6 pm to 7 pm." }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2p4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk2ti", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-26T10:32:31.162058Z", "last_modified_time": "2024-04-26T10:32:31.162082Z", "date_published": "2024-04-26T10:32:00Z", "start_time": "2024-04-26T15:00:00Z", "end_time": "2024-04-26T16: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": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 18-19. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 18-19<br>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe<br>from 6 pm to 7 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 18-19.", "sv": "Pingisklubben för unga träffas fredagar klockan 18-19\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 6 pm to 7 pm." }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2ti/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk2wy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjkzu4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjkz5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2a4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2eu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2iu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2me/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-10T13:41:55.943147Z", "last_modified_time": "2024-04-26T10:28:54.079840Z", "date_published": "2024-04-12T01:01:00Z", "start_time": "2024-04-12T12:00:00Z", "end_time": "2024-05-31T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "https://www.xroc.gg/koulut/", "sv": "https://www.xroc.gg/koulut/", "en": "https://www.xroc.gg/koulut/" }, "provider_contact_info": null, "provider": { "fi": "XRoc / Espoon harrastuspolku", "sv": "XRoc / Hobbystigen i Esbo", "en": "XRoc / Espoo Hobby Path" }, "description": { "fi": "<p>Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otamme vastaan kaikki pelin tuovat haasteet yhdessä! Pelistä ei tarvitse olla aiempaa kokemusta, sillä paikalla on aina peliohjaaja, joka on aina valmiina auttamaan.</p><p>Harrastuksen kieli on suomi.</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Pääset ilmoittautumaan Lisätietoja-linkistä. </p><p>Harrastus jatkuu koko lukuvuoden ajan, ellei muuta mainita. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat. </p><p>Olethan yhteydessä harrastuksen järjestäjään, mikäli sinulla on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista Harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark med bara varandra som stöd. Tillsammans tar vi oss an alla utmaningar som spelet för med sig! Ingen tidigare erfarenhet av spelet behövs, eftersom det alltid finns en spelledare för att hjälpa till.</p><p>Huvudspråket för den här fritidsaktiviteten är finska.</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera sig för att reservera en plats. Anmäl dig till gruppen via länken \"Övrig information\". </p><p>Gruppen fortsätter under hela läsåret, om inget annat nämns. Aktiviteten är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna. </p><p>Kontakta den som ordnar fritidsaktiviteten om du har frågor om den.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo.<br></p>", "en": "<p>In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft with only each other for support. Together we'll take on all the challenges the game brings! No previous experience of the game is necessary, as there's always a game leader on hand to help.</p><p>This hobby is organised in Finnish.</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. You can register by choosing the Additional information link. </p><p>The hobby will continue throughout the school year, unless stated otherwise. The hobby is free-of-charge to the participants. The City of Espoo has insured the participants of hobby groups. </p><p>Please contact the organiser of the activity if you want to ask more about the activity.</p><p>Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "name": { "fi": "Minecraft Seikkailijat 3.-6.-luokkalaisille Entressessä", "sv": "Minecraft Äventyrare för åk 3-6 i Entresse", "en": "Minecraft Adventurers for 3rd-6th graders in Entresse" }, "short_description": { "fi": "Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark.", "en": "In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft." }, "location_extra_info": { "fi": "Yhteystiedot: Harrastuskoordinaattori@XRoc.gg", "sv": "Kontaktinformation: Harrastuskoordinaattori@XRoc.gg", "en": "Contact details: Harrastuskoordinaattori@XRoc.gg" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2wy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:e35d4054-4d6b-4266-b020-f90a08239eec", "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/kultus:1/?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: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/0ER2GMrJ96M?si=WF_wrJWRqSpELLnH", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE54_WAPPU_-_MAYDAY_TEST2342953929" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150817, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-25T11:10:56.335722Z", "last_modified_time": "2024-04-25T11:10:56.335737Z", "name": "Kuvan kuvateksti LE55", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/149f0ea2-975b-ee11-be6e-000d3ab37d34", "cropping": "", "photographer_name": "Kuvan kuvaajan nimi LE55", "alt_text": "Kuvan alt-teksti LE55", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "MKtestivideo LE55", "url": "https://www.youtube.com/live/eV25g4VK_Eg?si=eGEEfCE6ZDLR_eKG", "alt_text": "Tämä on videon alt-teksti LE55" } ], "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/kultus:1/?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: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-04-25T11:10:57.682544Z", "last_modified_time": "2024-04-26T08:42:39.202173Z", "date_published": "2024-04-25T11:03:04Z", "start_time": "2024-05-03T09:00:00Z", "end_time": "2024-05-03T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 2, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 2, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-04-01T08:00:00+03:00", "enrolment_end_time": "2024-04-29T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "Jari Palomäki" }, "description": { "fi": "<div><p>MKtest LE55 WAPPU - MAYDAY TEST - Julkaisun tila ja polkutest LONG DESC</p><p> </p></div>" }, "name": { "fi": "MKtest LE55 WAPPU - MAYDAY TEST - Julkaisun tila ja polkutest" }, "short_description": { "fi": "MKtest LE55 WAPPU - MAYDAY TEST - Julkaisun tila ja polkutest SHORT DESC" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e35d4054-4d6b-4266-b020-f90a08239eec/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:08f6ad2a-d8ed-4edb-a0b2-aa6998e80455", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:53087/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p1235/?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:p2149/?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:p4354/?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:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0967cec0-3302-ef11-9f89-000d3adbeb68?readableEventId=Test_Event_-_Testing_Event_image_field_--TL-DG-250420243381781106" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150841, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T16:02:15.700549Z", "last_modified_time": "2024-04-25T16:02:15.700566Z", "name": "Kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a7ffd992-c1f8-ee11-a1fd-000d3ad7a4fd", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150841/?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:aflfbatkwe/?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:p1235/?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:p2149/?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:p4354/?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:p916/?format=api" } ], "created_time": "2024-04-25T07:18:20.696778Z", "last_modified_time": "2024-04-26T08:41:40.187415Z", "date_published": "2024-04-25T07:16:03Z", "start_time": "2024-05-30T07:22:00Z", "end_time": "2024-05-30T09:22: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-04-25T08:00:00+03:00", "enrolment_end_time": "2024-05-24T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "HEL" }, "description": { "fi": "<div><p>Test Event - Testing Event image field</p></div>" }, "name": { "fi": "Test Event - Testing Event image field --TL-DG-25.04.2024" }, "short_description": { "fi": "Test Event - Testing Event image field" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:08f6ad2a-d8ed-4edb-a0b2-aa6998e80455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk3bq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-26T06:23:29.654076Z", "last_modified_time": "2024-04-26T06:34:39.914543Z", "date_published": "2024-04-26T06:20:00Z", "start_time": "2024-05-30T10:00:00Z", "end_time": "2024-05-30T13: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": null, "provider_contact_info": null, "provider": { "fi": "Länsi-Uudenmaan hyvinvointialue", "sv": "Västra Nylands välfärdsområde", "en": "Western Uusimaa Wellbeing Services County" }, "description": { "fi": "<p>Liikunnanohjaajamme ovat tavattavissa kirjastoissa toukokuussa tiistaisin ja torstaisin klo 13–16.</p><p>ti 14.5. Lippulaivan kirjasto <br>to 16.5. Iso Omenan kirjasto <br>ti 21.5. Kalajärven kirjasto <br>to 23.5. Entressen kirjasto <br>ti 28.5. Sellon kirjasto <br><b>to 30.5. Tapiolan kirjasto</b> <br></p>", "sv": "<p>Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj. Tillställningen är gratis.</p><p>ti 14.5. kl.13–16 Lippulaiva bibliotek<br>to 16.5 kl. 13–16 Iso omena bibliotek<br>ti 21.5. kl. 13–16 Kalajärvi bibliotek<br>to 23.5. kl. 13–16 Entresse bibliotek<br>ti 28.5. kl. 13–16 Sello bibliotek<br><b>to 30.5. kl. 13–16 Hagalunds bibliotek</b></p>", "en": "<p>Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. The event is free of charge.</p><p><br>Tue. 14.5. 13–16 Lippulaiva library<br>Thu. 16.5 13–16 Iso omena library<br>Tue. 21.5. 13–16 Kalajärvi library<br>Thu. 23.5. 3–16 Entresse library<br>Tue. 28.5. 13–16 Sello library<br><b>Thu. 30.5. 13–16 Tapiola library</b></p>" }, "name": { "fi": "Liikuntaneuvontakiertue Tapiolassa", "sv": "Motionsrådgivningturné i Hagalund", "en": "Exercise counselling tour at Tapiola" }, "short_description": { "fi": "Tule juttelemaan omasta hyvinvoinnista ja saa vinkkejä liikkumiseen! ", "sv": "Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj.", "en": "Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3bq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk3fe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz654q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65wq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz664e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7agi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-23T13:04:51.261527Z", "last_modified_time": "2024-04-26T06:20:24.327804Z", "date_published": "2024-04-24T09:00:00Z", "start_time": "2024-05-14T10:00:00Z", "end_time": "2024-05-30T13: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": null, "provider_contact_info": null, "provider": { "fi": "Länsi-Uudenmaan hyvinvointialue", "sv": "Västra Nylands välfärdsområde", "en": "Western Uusimaa Wellbeing Services County" }, "description": { "fi": "<p>Liikunnanohjaajamme ovat tavattavissa kirjastoissa toukokuussa tiistaisin ja torstaisin klo 13–16.</p><p>ti 14.5. Lippulaivan kirjasto </p><p>to 16.5. Iso Omenan kirjasto </p><p>ti 21.5. Kalajärven kirjasto </p><p>to 23.5. Entressen kirjasto </p><p>ti 28.5. Sellon kirjasto </p><p>to 30.5. Tapiolan kirjasto <br></p>", "sv": "<p>Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj. Tillställningen är gratis.</p><p>ti 14.5. kl.13–16 Lippulaiva bibliotek<br>to 16.5 kl. 13–16 Iso omena bibliotek<br>ti 21.5. kl. 13–16 Kalajärvi bibliotek<br>to 23.5. kl. 13–16 Entresse bibliotek<br>ti 28.5. kl. 13–16 Sello bibliotek<br>to 30.5. kl. 13–16 Hagalunds bibliotek</p>", "en": "<p>Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. The event is free of charge.</p><p><br>Tue. 14.5. 13–16 Lippulaiva library<br>Thu. 16.5 13–16 Iso omena library<br>Tue. 21.5. 13–16 Kalajärvi library<br>Thu. 23.5. 3–16 Entresse library<br>Tue. 28.5. 13–16 Sello library<br>Thu. 30.5. 13–16 Tapiola library</p>" }, "name": { "fi": "Liikuntaneuvontakiertue", "sv": "Motionsrådgivningturné", "en": "Exercise counselling tour" }, "short_description": { "fi": "Tule juttelemaan omasta hyvinvoinnista ja saa vinkkejä liikkumiseen! ", "sv": "Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj.", "en": "Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3fe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:61911115-cf22-43a5-b537-f1d695ded987", "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:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE5692765673" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150836, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T13:16:24.830376Z", "last_modified_time": "2024-04-25T13:16:24.830396Z", "name": "Porvoo kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a7cc4457-fe02-ef11-9f89-000d3ab5d1a6", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Porvoo alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150836/?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:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "created_time": "2024-04-25T12:23:29.225628Z", "last_modified_time": "2024-04-25T13:16:26.192251Z", "date_published": "2024-04-25T12:19:25Z", "start_time": "2024-04-25T12:26:00Z", "end_time": "2024-04-25T14:26:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 2, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-04-22T08:00:00+03:00", "enrolment_end_time": "2024-04-23T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "MKtest" }, "description": { "fi": "<div><p>MKtest LE56 long desc</p></div>" }, "name": { "fi": "MKtest LE56 Porvoo (päivitys 1)" }, "short_description": { "fi": "MKtest LE56 short desc" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:61911115-cf22-43a5-b537-f1d695ded987/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:da6effef-b70b-42f8-8421-96d3a1a223fb", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50401/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE562903576829", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE562903576829" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150831, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T13:13:58.372742Z", "last_modified_time": "2024-04-25T13:13:58.372767Z", "name": "Porvoo kuvateksti > Kuvan vaihto Allas Sea pooliksi", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/1dafdf5c-0503-ef11-9f89-000d3ab5d1a6", "cropping": "", "photographer_name": "Lars Linssi > Kuvan vaihto Allas Sea pooliksi", "alt_text": "Porvoo alt-teksti > Kuvan vaihto Allas Sea pooliksi", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150831/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" } ], "created_time": "2024-04-25T13:14:00.099846Z", "last_modified_time": "2024-04-25T13:14:00.099864Z", "date_published": "2024-04-25T13:05:19Z", "start_time": "2024-04-25T12:26:00Z", "end_time": "2024-04-25T14:26: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-04-22T08:00:00+03:00", "enrolment_end_time": "2024-04-23T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "MKtest", "sv": "MKtest in sv" }, "description": { "fi": "<div><p>MKtest LE59 Allas Sea Pool long desc</p></div>", "sv": "<div><p>MKtest LE59 Allas Sea Pool long desc SWE</p></div>" }, "name": { "fi": "MKtest LE59 Allas Sea Pool", "sv": "MKtest LE59 Allas Sea Pool SWE" }, "short_description": { "fi": "MKtest LE59 Allas Sea Pool short desc", "sv": "MKtest LE59 Allas Sea Pool short desc SWE" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:da6effef-b70b-42f8-8421-96d3a1a223fb/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:dad7a2cd-711b-484d-bccd-d5d956319021", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21196/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0967cec0-3302-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE573042287985", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0967cec0-3302-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE573042287985" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150830, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T13:02:03.746640Z", "last_modified_time": "2024-04-25T13:02:03.746655Z", "name": "Vallisaari kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a8cc4457-fe02-ef11-9f89-000d3ab5d1a6", "cropping": "", "photographer_name": "Leif Linssi", "alt_text": "Vallisaari alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150830/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-04-25T13:02:02.044371Z", "last_modified_time": "2024-04-25T13:02:04.969175Z", "date_published": "2024-04-25T12:26:15Z", "start_time": "2024-04-25T12:34:00Z", "end_time": "2024-04-25T14:34: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": 14, "minimum_attendee_capacity": 12, "enrolment_start_time": "2024-04-23T08:30:00+03:00", "enrolment_end_time": "2024-04-23T09:30:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "MKtest in suomeksi", "en": "Mr. MK" }, "description": { "fi": "<div><p>MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen) long desc</p></div>", "en": "<div><div><h1 class=\"pa-tj pa-dp pa-oh pa-do pa-fi pa-tk pa-qw pa-qv pa-tl\" style=\"background-color:rgb(255, 255, 255);border-width:0px;color:rgb(36, 36, 36);font-family:SegoeUI-Semibold, "Segoe UI Semibold", "Segoe UI Regular", "Segoe UI";font-size:20px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:24px;margin:0px;outline:none;padding:0px;text-align:left;text-indent:0px;text-transform:none;white-space:pre-wrap;word-break:break-word;word-spacing:0px;\" data-id=\"header_title\" title=\"MKtest LE57\" id=\"user-content-formHeaderTitle_231\">MKtest LE57 long desc</h1></div></div>" }, "name": { "fi": "MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen)", "en": "MKtest LE57 Subject" }, "short_description": { "fi": "MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen) short desc", "en": "MKtest LE57 short desc" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:dad7a2cd-711b-484d-bccd-d5d956319021/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk3j4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-25T13:01:34.747526Z", "last_modified_time": "2024-04-25T13:01:34.747549Z", "date_published": null, "start_time": "2024-05-06T15:30:00Z", "end_time": "2024-05-06T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Yhteisöteatteri Jäänsärkijöiden aikuisten improryhmä esiintyy.</p>", "sv": "<p>Improvisationsteater på finska</p>", "en": "<p>Improvisation theatre in Finnish</p>" }, "name": { "fi": "Improvisaatio teatteria", "sv": "Improvisationsteater", "en": "Improvisation theatre" }, "short_description": { "fi": "Yhteisöteatteri Jäänsärkijöiden aikuisten improryhmä esiintyy.", "sv": "Improvisationsteater på finska", "en": "Improvisation theatre in Finnish" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3j4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a51f6a3a-b1a6-455b-9297-027cf4410673", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE582709804814", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE582709804814" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150828, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-25T12:58:45.676257Z", "last_modified_time": "2024-04-25T12:58:45.676274Z", "name": "Lonna kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a9cc4457-fe02-ef11-9f89-000d3ab5d1a6", "cropping": "", "photographer_name": "Akseli Linssi", "alt_text": "Lonna alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150828/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-04-25T12:57:24.242592Z", "last_modified_time": "2024-04-25T12:58:47.098651Z", "date_published": "2024-04-25T12:37:44Z", "start_time": "2024-04-25T12:46:00Z", "end_time": "2024-04-25T14:46: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": 14, "minimum_attendee_capacity": 12, "enrolment_start_time": "2024-04-01T08:00:00+03:00", "enrolment_end_time": "2024-04-02T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "MKtest järjestää fi", "en": "MKtest järjestää en" }, "description": { "fi": "<div><p>MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen) fi</p><ul><li>Muutettu tapahtuman </li></ul></div>", "en": "<div><div><h1 class=\"pa-tj pa-dp pa-oh pa-do pa-fi pa-tk pa-qw pa-qv pa-tl\" style=\"background-color:rgb(255, 255, 255);border-width:0px;color:rgb(36, 36, 36);font-family:SegoeUI-Semibold, "Segoe UI Semibold", "Segoe UI Regular", "Segoe UI";font-size:20px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:24px;margin:0px;outline:none;padding:0px;text-align:left;text-indent:0px;text-transform:none;white-space:pre-wrap;word-break:break-word;word-spacing:0px;\" data-id=\"header_title\" title=\"MKtest LE58\" id=\"user-content-formHeaderTitle_241\">MKtest LE58 long desc</h1></div></div>" }, "name": { "fi": "MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen)", "en": "MKtest LE58 en" }, "short_description": { "fi": "MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen) fi", "en": "MKtest LE58 short desc en" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a51f6a3a-b1a6-455b-9297-027cf4410673/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63380", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150620, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T15:13:07.114891Z", "last_modified_time": "2024-04-16T15:13:07.114905Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749081.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150620/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-04-16T15:13:07.103655Z", "last_modified_time": "2024-04-25T11:15:14.489623Z", "date_published": null, "start_time": "2024-06-11T07:40: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.annantalo.fi/fi/tapahtumat/event/CEA7A4112477D8C98E239A58879E49C3/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/CEA7A4112477D8C98E239A58879E49C3/Musikstund_pa_sommaren", "en": "http://www.annantalo.fi/en/events/event/CEA7A4112477D8C98E239A58879E49C3/Summer_Music_Play_School" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>", "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>", "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>" }, "name": { "fi": "Kesämuskari – Summer Music Play School", "sv": "Musikstund på sommaren", "en": "Summer Music Play School" }, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.", "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63380/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19216, "next": "