Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=295&weekday=6%2C7
{ "meta": { "count": 7231, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=296&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=294&weekday=6%2C7" }, "data": [ { "id": "espoo_le:aggwua7ffq", "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: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:agggfz67wm/?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/yso:p10727/?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: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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/1342368209800153/1342368219800152/?ref=newsfeed", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7e2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7fai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7fda/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-02T13:11:37.286395Z", "last_modified_time": "2024-02-16T07:04:38.702743Z", "date_published": "2024-02-02T12:53:00Z", "start_time": "2024-03-06T15:00:00Z", "end_time": "2024-04-17T15: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, "provider": null, "short_description": { "fi": "Tule keskustelemaan kirjoista ja niihin liittyvästä musiikista. ", "sv": "Kom och diskutera böcker och relaterad musik. ", "en": "Come and discuss books and related music. " }, "name": { "fi": "Lukudisko", "sv": "Läsdisco", "en": "Reading Disco" }, "description": { "fi": "<p>Tule keskustelemaan kirjoista ja niihin liittyvästä musiikista. Osallistujat saavat esitellä omia vaikutuksen tehneitä lukukokemuksiaan ja ehdottaa luettuun liittyvää musiikkia kuunneltavaksi. Mikä sinuun teki vaikutuksen lukemassasi kirjassa? Miten ehdottamasi musiikki liittyy lukemaasi ja mikä siitä tekee kiinnostavaa? Voit tulla myös vain kuuntelemaan keskustelua tai inspiroivan musiikin kohdalla vaikka tanssimaan. Musiikki voi olla mainittuna kirjan tekstissä tai se voi liittyä kirjan kuvaamaan aikakauteen, ympäristöön, tunnelmaan tai johonkin muuhun. Lukudiskoja järjestetään eri teemoista ja eri kohderyhmille. Seuraa kirjaston tapahtumakalenterista, mikä olisi sinua kiinnostava aihe. Käyttämämme musiikkivalikoima on sama kuin Spotifyssa. Keskustelua vetävät suomeksi kirjastolaiset Annika Lehtinen ja Oskari Mänttäri Lippulaivan kirjaston Salongissa.</p><p>Alle kouluikäisten lasten ja vanhempien yhteisessä Lukudiskossa 29.4. kirjoja lähestytään kuvien kautta – kirjoihin liittyvää musiikkia ja tanssia unohtamatta. Mitä kuvassa näkyy? Mitä kuvassa ei näy? Mitä ääniä kuvassa kuuluu? Mitä on tapahtunut ennen kuvaa? Mitä tulee pian tapahtumaan? Mitä tuoksuja kuvan maailmassa on? Lapsiperheiden keskustelua vetävät suomeksi kirjastolaiset Merituuli Hemilä ja Elina Roukala.</p><p>Kevään aiheet:</p><p>6.3. klo 17 - 18 romantiikka</p><p>21.3. klo 17 - 18 jännitys</p><p>17.4. klo 17 - 18 nuorten kirjat</p><p>29.4. klo 17-18 lapsiperheet</p>", "sv": "<p>Kom och diskutera böcker och relaterad musik. Deltagarna kommer att uppmanas att dela med sig av sina egna erfarenheter av att läsa böcker som har gjort intryck på dem och att föreslå musik att lyssna till. Vad imponerade på dig med boken du läste? Hur relaterar musiken du föreslog till det du läste och vad gör den intressant? Du kan också bara komma och lyssna på diskussionen eller, när det gäller inspirerande musik, till och med dansa. Musiken kan nämnas i bokens text eller vara relaterad till den period, miljö, stämning eller något annat som boken beskriver. Läsdiskarna är organiserade kring olika teman och för olika målgrupper. Kolla bibliotekets evenemangskalender för att se vad du kan vara intresserad av. Vi använder samma musikurval som Spotify. Diskussionen leds på finska av bibliotekarierna Annika Lehtinen och Oskari Mänttäri i Salongen i Lippulaivans bibliotek.</p><p>På Läsdisco för barn under skolåldern och föräldrar den 29 april kommer man att närma sig böcker genom bilder - och inte att förglömma den musik och dans som hör till böckerna. Vad visar bilden? Vad finns inte med på bilden? Vilka ljud ger bilden upphov till? Vad har hänt före bilden? Vad kommer att hända snart? Vilka lukter finns det i bildens värld? Diskussionen för barnfamiljer leds på finska av bibliotekarierna Merituuli Hemilä och Elina Roukala.</p><p>Vårens teman:</p><p>6.3. 17 - 18 romantik</p><p>21.3. 17 - 18 spänning</p><p>17.4. 17 - 18 böcker för unga</p><p>29.4. 17-18 familjer med barn</p>", "en": "<p>Come and discuss books and related music. Participants will be invited to share their own experiences of reading books that have made an impact and to suggest music to listen to. What impressed you about the book you read? How does the music you suggested relate to what you read and what makes it interesting? You can also just come and listen to the discussion or, in the case of inspiring music, even dance. The music may be mentioned in the text of the book, or it may be related to the period, environment, atmosphere or something else that the book describes. The reading discos are organised around different themes and for different audiences. Check the library's events calendar to see what you might be interested in. We use the same music selection as Spotify. The discussion will be led in Finnish by librarians Annika Lehtinen and Oskari Mänttäri in the Lippulaiva Library Salonki.</p><p>At the Reading Disco for children under school age and parents on 29 April, books will be approached through pictures - not forgetting the music and dance associated with the books. What does the picture show? What is not in the picture? What sounds does the picture make? What has happened before the picture? What will happen soon? What smells are there in the world of the picture? The discussion for families with children will be led in Finnish by librarians Merituuli Hemilä and Elina Roukala.</p><p>Spring topics:</p><p>6.3. at 17 - 18 romance</p><p>21.3. at 17 - 18 suspense</p><p>17.4. at 17 - 18 Young people's books</p><p>29.4. at 17 - 18 families with children</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lippulaivan_kirjasto/Tapahtumat/Lukudisko(281050)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Lippulaivabiblioteket/Evenemang/Lasdisco(281056)", "en": "https://www.helmet.fi/en-US/Libraries_and_services/Lippulaiva_Library/Events/Reading_Disco(281060)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7ffq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7kwa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7kfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7kii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7kla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7kn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7kqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7kti/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-22T13:02:51.365300Z", "last_modified_time": "2024-02-16T06:36:26.967723Z", "date_published": "2023-11-22T12:53:00Z", "start_time": "2023-12-05T09:00:00Z", "end_time": "2024-05-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lukupiiri kokoontuu kuukauden ensimmäisenä tiistaina\n\nTapiolan kirjaston tapahtumatila Heikissä klo 11–13.\n\nLukupiiriä vetää Mikko Airaksinen.", "sv": "Läsecirkeln träffas första tisdagen i månaden i Hagalunds biblioteks evenemangsutrymme Heikki kl. 11.00–13.00. \nLäsecirkeln leds av Mikko Airaksinen.", "en": "The book club meets on the first Tuesday of the month.\n\nTapiola library's event space Heikki 11 a.m.–1 p.m.\n\nThe reading circle is led by Mikko Airaksinen." }, "name": { "fi": "Tapiolan kirjaston lukupiiri", "sv": "Tapiola biblioteks läscirkel", "en": "Tapiola library book club" }, "description": { "fi": "<p>Lukupiiri kokoontuu kuukauden ensimmäisenä tiistaina</p><p>Tapiolan kirjaston tapahtumatila Heikissä klo 11–13.</p><p>Lukupiiriä vetää Mikko Airaksinen.</p><p>2024</p><p>ti 9.1. Valdur Mikita: Kantarellin kuuntelun taito<br>ti 6.2. Mihail Siskin: Kaunokirjoituksia<br>ti 5.3. Tove Ditlevsen: Lapsuus<br>ti 9.4. Maylis de Kerangal: Maailma käden ulottuvilla<br>ti 7.5. Viktoria Belim: Punaiset seireenit</p><p>Tervetuloa!</p>", "sv": "<p>Läsecirkeln träffas första tisdagen i månaden i Hagalunds biblioteks evenemangsutrymme Heikki kl. 11.00–13.00. </p><p>Läsecirkeln leds av Mikko Airaksinen.</p><p>2024</p><p>tis 9.1. Valdur Mikita: Kantarellin kuuntelun taito<br>tis 6.2. Mihail Siskin: Kaunokirjoituksia<br>tis 5.3. Tove Ditlevsen: Lapsuus<br>tis 9.4. Maylis de Kerangal: Maailma käden ulottuvilla<br>tis 7.5. Viktoria Belim: Punaiset seireenit</p><p>Tervetuloa!</p>", "en": "<p>The book club meets on the first Tuesday of the month at Tapiola library's event space Heikki 11 a.m.–1 p.m.</p><p>The reading circle is led by Mikko Airaksinen.</p><p><br>2024</p><p>tue 9.1. Valdur Mikita: Kantarellin kuuntelun taito<br>tue 6.2. Mihail Siskin: Kaunokirjoituksia<br>tue 5.3. Tove Ditlevsen: Lapsuus<br>tue 9.4. Maylis de Kerangal: Maailma käden ulottuvilla<br>tue 7.5. Viktoria Belim: Punaiset seireenit</p><p>Tervetuloa!</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Heikki", "en": "Heikki" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7kwa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281814", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8269/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10856, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-14T15:30:05.637222Z", "last_modified_time": "2024-02-14T15:30:05.637252Z", "url": "https://www.helmet.fi/download/noname/{DD9742E2-BC11-4141-9FFE-78454CDE7790}/106895", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10856/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-02-14T15:30:05.607887Z", "last_modified_time": "2024-02-15T13:27:25.369695Z", "date_published": "2024-02-14T13:41:00Z", "start_time": "2024-02-27T15:30:00Z", "end_time": "2024-05-28T16: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, "provider": null, "short_description": { "fi": "Pasilan kirjasto järjestää keväällä 2024 kaikille avoimen luentosarjan, jossa eri tieteenalojen edustajat kertovat tutkimusaiheistaan. Tervetuloa kuuntelemaan ja keskustelemaan!" }, "name": { "fi": "Pasilan kirjaston tiedeluentosarja" }, "description": { "fi": "Pasilan kirjasto järjestää keväällä 2024 kaikille avoimen luentosarjan, jossa eri tieteenalojen edustajat kertovat tutkimusaiheistaan. Luennot pidetään tiistaisin klo 17.30-19 kirjaston auditoriossa (2. krs.). Osa luennoista on englanniksi. <p>Kirjaston käyntiosoite:<br> Kellosilta 9<br> 00520 Helsinki</p> Tervetuloa kuuntelemaan ja keskustelemaan!<br> <p>Tiistai 27.2.2024<br> Kuinka aivot toimivat?<br> Eero Castrén, tutkimusjohtaja, Neurotieteen tutkimuskeskus, Helsingin yliopisto<br><br> Tiistai 5.3.2024<br> From Papyrus to Profits: Tracing the Illicit Journey of Manuscript Fragments<br> Rick Bonnie, university lecturer in Museology, University of Helsinki<br><br> Tiistai 12.3.2024<br> Vammaisten henkilöiden ihmisoikeudet<br> Hisayo Katsui, vammaistutkimuksen professori, Helsingin yliopisto<br><br> Tiiistai 19.3.2024<br> Kuinka Suomi selviytyy sitkeistä ympäristökriiseistä?<br> Janne I. Hukkinen, ympäristöpolitiikan professori, Helsingin yliopisto<br><br> Tiistai 26.3.2024<br> Myth of healthy tradition: past, present and the use of myth in Japanese food<br> Sara Park, Lecturer, Faculty of Arts, University of Helsinki<br><br> Tiistai 2.4.2024<br> Miten voimme tietää menneistä maailmoista?<br> Mikael Fortelius, prof. emer., Geotieteiden ja maantieteen osasto ja LUOMUS, Helsingin yliopisto<br><br> Tiistai 9.4.2024<br> How the far right uses emotions for political gain<br> Gwenaëlle Bauvois, researcher, University of Helsinki<br><br> Tiistai 16.4.2024<br> Kielitietoinen ja monikielinen yhteisö - näkökulmia kieleen ja valtaan<br> FT Salla-Maaria Suuriniemi, yliopisto-opettaja, Helsingin yliopisto<br><br> Tiistai 7.5.2024<br> Digitaalinen arki: yhden ilo, toisen murhe?<br> Yliopistotutkija Ulla Buchert, Helsingin yliopisto<br><br> Tiistai 14.5.2024<br> Kieli ja sukupuoli Meksikossa ja Espanjassa<br> Pekka Posio, iberoromaanisten kielten professori, Helsingin yliopisto<br><br> Tiistai 21.5.2024<br> Pathways into Diversity<br> Smarika KC, Doctoral Researcher, Faculty of Social Sciences, University of Helsinki<br><br> Tiistai 28.5.2024<br> Eläinetiikka keskiajan islamilaisessa teologiassa ja filosofiassa<br> Tutkija, FT Janne Mattila, Helsingin yliopisto<br><br> Lisätietoja luennon sisällöstä ja luennoitsijoista julkaistaan muutama päivää ennen kutakin luentoa.<br><br> Lisätietoa: Ahmed Taeeb puh.09 3105 8004<br> tai Pasilan kirjasto puh. 09 3108 5001</p>" }, "provider_contact_info": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281814/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:280808", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8308/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10877, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-15T12:28:11.772592Z", "last_modified_time": "2024-02-15T12:28:11.772611Z", "url": "https://www.helmet.fi/download/noname/{0C2DF30D-2F72-4DB1-9382-434E6D4EE8A8}/109139", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10877/?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:p4354/?format=api" } ], "created_time": "2024-02-15T12:28:11.747964Z", "last_modified_time": "2024-02-15T12:28:11.864281Z", "date_published": "2024-02-15T08:00:00Z", "start_time": "2024-03-16T08:00:00Z", "end_time": "2024-03-16T13: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, "provider": null, "short_description": { "fi": "Lauantaina 16.3. Viikin kirjastossa seikkaillaan viidakossa, kirjastossa, merellä ja metsässä." }, "name": { "fi": "Satuseikkailu" }, "description": { "fi": "<p>Lauantaina 16.3. Viikin kirjastossa seikkaillaan viidakossa, kirjastossa, merellä ja metsässä. Tule mukaan seikkailuun!</p><p>10.00–10.45 Vuorovaikutuksellinen teatteriesitys “Viidakkoseikkailu” <br> 11.00–11.30 Kadonneiden satuhahmojen jäljitys (omatoiminen)<br> 13.00–13.45 Satujumppa “Merirosvoaarre” <br> 14.00–15.30 Nalle Puhin elokuva – Uudet seikkailut Puolen hehtaarin metsässä (S)</p><p>Tapahtuman kohderyhmänä ovat 3–6-vuotiaat. </p><p> <em>Huomioithan, että teatteriesitykseen ja satujumppatuokioon mahtuu vain 25 lasta vanhempineen.</em> Ei ennakkoilmoittautumista.</p><p>Pidätämme oikeuden ohjelmamuutoksiin.</p><p>Kuva: brgfx, Freepik</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elopelto" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280808/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:In-Realtime_license_test31879", "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/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: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:p14483/?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:p21257/?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:p2315/?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: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: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:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Vain eur", "sv": "Vain eur", "en": "Vain eur", "ru": "Vain eur", "zh_hans": "Vain eur", "ar": "Vain eur" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136" }, "price": { "fi": "56€", "sv": "56€", "en": "56€", "ru": "56€", "zh_hans": "56€", "ar": "56€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 10827, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-14T10:03:47.819719Z", "last_modified_time": "2024-02-14T10:03:47.819740Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=3817086b-fd2a-42c0-8141-5aca3acd1f71&Timestamp=638423929622419713&Full=true", "name": "Realtime kuvateksti", "cropping": "", "photographer_name": "Kuvaaja", "alt_text": "Alttiteksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10827/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Complete city tour", "url": "https://www.youtube.com/watch?v=oZ462vqo9_8", "alt_text": "Videokuvaus" } ], "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/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/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: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:p14483/?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:p21257/?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:p2315/?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: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: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:p5164/?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-02-15T11:52:18.440750Z", "last_modified_time": "2024-02-15T11:52:18.440773Z", "date_published": "2024-02-01T08:41:28Z", "start_time": "2024-02-16T08:50:00Z", "end_time": "2024-02-17T10:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 5, "audience_max_age": 60, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 60, "enrolment_start_time": "2024-02-01T09:30:00+02:00", "enrolment_end_time": "2024-02-15T13:53:00+02:00", "local": false, "replaced_by": null, "provider": { "fi": "Hakeli", "sv": "HakeliSV", "en": "HakeliEN", "ru": "HakeliRU", "zh_hans": "HakeliCH", "ar": "HakeliAR" }, "short_description": { "fi": "lyh kuvaus", "sv": "test", "en": "test", "ru": "test", "zh_hans": "test", "ar": "test" }, "name": { "fi": "In-Realtime registration test 1", "sv": "test", "en": "test", "ru": "test", "zh_hans": "test", "ar": "test" }, "description": { "fi": "test", "sv": "test", "en": "<div><div>lorem ipsumia <strong><span style=\"font-size:16pt\">tässä </span></strong><em>hjfyufytdyryu</em></div></div>", "ru": "test", "zh_hans": "test", "ar": "test" }, "provider_contact_info": null, "location_extra_info": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:In-Realtime_license_test31879/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281655", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11930/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10758, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-11T16:26:16.694970Z", "last_modified_time": "2024-02-11T16:26:16.694989Z", "url": "https://www.helmet.fi/download/noname/{08711377-1983-4983-A8AB-C0DCC3284AEB}/109432", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10758/?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:p4354/?format=api" } ], "created_time": "2024-02-11T16:26:16.667348Z", "last_modified_time": "2024-02-15T11:26:39.694436Z", "date_published": "2024-02-11T14:55:00Z", "start_time": "2024-02-11T22:00:00Z", "end_time": "2024-03-31T20:59: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, "provider": null, "short_description": { "fi": "Olet sydämellisesti tervetullut Rikhardinkadun kirjaston lastenosastolle skotlantilaisen linnanherran juhlalliseen satumaailmaan." }, "name": { "fi": "Lastenosaston näyttely: Juhlavastaanotto" }, "description": { "fi": "<p>Juhlavastaanotto skotlantilaisen linnanherra Hamish McLaughlainin vaikuttavissa tiloissa 12.2.-31.3.2024. Aiheena on poikansa Duncainin saama Mozart-ritarin arvonimi.</p><p>Tilaisuutta juhlistamaan on kutsuttu suvun läheisien henkilöiden lisäksi diplomaattikuntaa, sekä sinut, joka olet lapsi tai lapsenmielinen, niinkuin tämä koristelusta vastannut Raili Härö.<br> Koko paikka on täynnä upeita kukka-asetelmia ja muuta kaunista.</p><p>Olet sydämellisesti tervetullut Rikhardinkadun kirjaston lastenosastolle 1. kerrokseen.</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto, 1. krs" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281655/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:280445", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10840/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11930/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7389, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-26T10:30:22.110008Z", "last_modified_time": "2024-02-06T13:41:07.410297Z", "url": "https://www.helmet.fi/download/noname/{C29EE1B0-C452-49C6-A959-2B25F13109BC}/108974", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7389/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-01-26T10:30:22.080352Z", "last_modified_time": "2024-02-15T11:26:00.685448Z", "date_published": "2024-01-26T09:56:00Z", "start_time": "2024-01-31T22:00:00Z", "end_time": "2024-02-28T22: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, "provider": null, "short_description": { "fi": "\"Maisema on aina ollut itseäni inspiroivin aihe. Olen kokeillut vuosien varrella monia tekniikoita ja ilmaisumuotoja kollaaseista fantasiakuviin.\"" }, "name": { "fi": "Helena Ertz: Serenadi Helsingille, osa 2" }, "description": { "fi": "<p>\"Olen Helsingissä työskentelevä kuvataiteilija. Valmistuin Taideteollisesta Korkeakoulusta vuonna 2002 ja työskentelin taiteen ja lastenkulttuurin parissa Tanskassa ja Saksassa vuosina 2002-2009.</p><p>Maisema on aina ollut itseäni inspiroivin aihe. Olen kokeillut vuosien varrella monia tekniikoita ja ilmaisumuotoja kollaaseista fantasiakuviin. Niissäkin maisema on vahvasti läsnä. Viimeisen kolmen vuoden ajan olen tutkinut Helsingin saaristoluontoa, kaupunkimaisemaa, ihmisiä kesä helteessä.</p><p>Aloitin mustavalkoisilla tussipiirroksilla. Uusiin kuviin olen ottanut värit mukaan. Teen kaikki työt enimmäkseen paikan päällä keväästä syksyyn, mutta teen myös tilaustöitä itsellesi tärkeästä kohteesta.\"</p><p>Yhteydenotot: <a href=\"mailto:helena.ertz@gmail.com\">helena.ertz@gmail.com</a></p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Käytävägalleria, 3. krs" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280445/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281830", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10801/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?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:p13050/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10790, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-13T10:26:56.358965Z", "last_modified_time": "2024-02-13T10:26:56.358991Z", "url": "https://www.helmet.fi/download/noname/{E07AD2DC-9D37-4B46-AA07-4643C2026BB6}/109460", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10790/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-02-15T08:25:51.441800Z", "last_modified_time": "2024-02-15T08:25:51.497620Z", "date_published": "2024-02-13T09:30:00Z", "start_time": "2024-02-25T08:00:00Z", "end_time": "2024-02-25T16: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, "provider": null, "short_description": { "fi": "Talviloman ohjelma lapsille ja nuorille" }, "name": { "fi": "Talviloman ohjelma lapsille ja nuorille" }, "description": { "fi": "<p>Kirjastobingo: Tule pelaamaan talvilomalla 19.-25.2. Omenan oma kirjastobingo. Bingopaperin saat kirjaston lastenosastolta. Bingon saaneiden kesken arvotaan kirjapalkinto.</p><p>Maanantai 19.1. klo. 14-15.30 kirjanmerkkipaja Voxissa </p><p>Tiistai 20.1. klo 14.30-18.00 Fifa-turnaus Voxissa </p><p>Keskiviikko 21.1. klo 13-15 Lasten elokuva Voxissa</p><p>Torstai 22.2. klo 16-18 Sanataidepaja Pajassa</p><p>Perjantai 23.2. klo 16-18 Sanataidepaja Voxissa</p><p>Lauantai 24.2. klo 15-17 Aura Nurmi - Voxissa</p><p>(Voxissa pidetään konsolipelit kiinni pajojen aikana.)</p>" }, "provider_contact_info": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281830/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281827", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10801/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?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:p13050/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10790, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-13T10:26:56.358965Z", "last_modified_time": "2024-02-13T10:26:56.358991Z", "url": "https://www.helmet.fi/download/noname/{E07AD2DC-9D37-4B46-AA07-4643C2026BB6}/109460", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10790/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-02-15T08:25:51.236113Z", "last_modified_time": "2024-02-15T08:25:51.289118Z", "date_published": "2024-02-13T09:30:00Z", "start_time": "2024-02-24T08:00:00Z", "end_time": "2024-02-24T16: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, "provider": null, "short_description": { "fi": "Talviloman ohjelma lapsille ja nuorille" }, "name": { "fi": "Talviloman ohjelma lapsille ja nuorille" }, "description": { "fi": "<p>Kirjastobingo: Tule pelaamaan talvilomalla 19.-25.2. Omenan oma kirjastobingo. Bingopaperin saat kirjaston lastenosastolta. Bingon saaneiden kesken arvotaan kirjapalkinto.</p><p>Maanantai 19.1. klo. 14-15.30 kirjanmerkkipaja Voxissa </p><p>Tiistai 20.1. klo 14.30-18.00 Fifa-turnaus Voxissa </p><p>Keskiviikko 21.1. klo 13-15 Lasten elokuva Voxissa</p><p>Torstai 22.2. klo 16-18 Sanataidepaja Pajassa</p><p>Perjantai 23.2. klo 16-18 Sanataidepaja Voxissa</p><p>Lauantai 24.2. klo 15-17 Aura Nurmi - Voxissa</p><p>(Voxissa pidetään konsolipelit kiinni pajojen aikana.)</p>" }, "provider_contact_info": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281827/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269733", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 5497, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-17T13:49:44.014911Z", "last_modified_time": "2024-02-15T07:26:53.200976Z", "url": "https://www.helmet.fi/download/noname/{15FE5347-8E27-4750-B479-E6DB9B7B17E4}/106844", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5497/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-17T14:03:54.865576Z", "last_modified_time": "2024-02-15T08:25:41.622307Z", "date_published": "2023-10-17T11:37:00Z", "start_time": "2024-02-18T14:00:00Z", "end_time": "2024-02-18T15: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, "provider": null, "short_description": { "fi": "Come & enjoy children books and songs in Vietnamese with your kids. In selected events, there will be seasonal themed craft and drawing activities after the reading session.", "en": "Come & enjoy children books and songs in Vietnamese with your kids. In selected events, there will be seasonal themed craft and drawing activities after the reading session." }, "name": { "fi": "Vietnamilainen luku- ja laulupiiri", "en": "Vietnamese Read & Sing Circle" }, "description": { "fi": "<h3>Vietnamilainen luku- ja laulupiiri sunnuntai 18.2.2024 - 16:00 - 17:00, paikka: Stage </h3><p> <br> Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa. Pidettävissä tilaisuuksissa järjestetään lukutuokion jälkeen sesonkiaiheisia askartelu- ja piirustustehtäviä.</p><p>Valmistelemme joitakin vietnamilaisia lastenkirjoja ja -lauluja, mutta voit vapaasti tuoda oman suosikkisi jaettavaksi muiden kanssa. </p><p>Ohjausta vietnamiksi ja englanniksi </p><p>----------------------------</p><h3>Vietnamese Read & Sing Circle Sunday 18.2.2024 - 16:00 - 17:00, Stage </h3><h3></h3><p>Come & enjoy children books and songs in Vietnamese with your kids. In selected events, there will be seasonal themed craft and drawing activities after the reading session.</p><p>We will prepare some Vietnamese children books and songs but feel free to bring your own favorite to share with others.</p>", "en": "<h3>Vietnamese Read & Sing Circle Sunday 18.2.2024 - 16:00 - 17:00, Stage</h3><h3></h3><p>Come & enjoy children books and songs in Vietnamese with your kids. In selected events, there will be seasonal themed craft and drawing activities after the reading session.</p><p>We will prepare some Vietnamese children books and songs but feel free to bring your own favorite to share with others. </p>" }, "provider_contact_info": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281813", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?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:p16485/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10854, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-14T15:27:11.796984Z", "last_modified_time": "2024-02-14T15:27:11.797003Z", "url": "https://www.helmet.fi/download/noname/{7131FC5D-24C0-4BE0-8CC1-4B23D8EFFC06}/109500", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10854/?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:p16485/?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:p6165/?format=api" } ], "created_time": "2024-02-14T15:27:11.776524Z", "last_modified_time": "2024-02-14T15:27:11.880452Z", "date_published": "2024-02-14T13:01:08.903000Z", "start_time": "2024-02-24T11:00:00Z", "end_time": "2024-02-24T13: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, "provider": null, "short_description": { "fi": "Tervetuloa tutustumaan Monikieliseen kirjastoon!" }, "name": { "fi": "Monikielinen kirjasto esittäytyy" }, "description": { "fi": "<p>Tervetuloa tutustumaan monikieliseen kirjastoon ja kirjaston kokoelmaan lauantaina 24.2.2024 klo 13-15 Oodin lastenalueelle!</p><p>Tapahtuma järjestetään osana Satakielikuukautta. Satakielikuukausi on vuosittainen monikielisyyttä juhliva jakso Kansainvälisen äidinkielen päivän (21.2.) ja Maailman runouden päivän (21.3.) välillä. Kuukauden aikana myös kirjastoissa järjestetään tapahtumia, joissa tuodaan esiin kielellistä rikkautta ja tarkastellaan äidinkielen ja kielten merkitystä taiteen, kohtaamisten ja yhdessä tekemisen kautta.</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenalue, 3. krs" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281813/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281802", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?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:p16485/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10853, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-14T15:27:11.534887Z", "last_modified_time": "2024-02-14T15:27:11.534906Z", "url": "https://www.helmet.fi/download/noname/{E7392078-61F3-4F84-B34A-6ABFB7CC5C9E}/109498", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10853/?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:p16485/?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:p6165/?format=api" } ], "created_time": "2024-02-14T15:27:11.506540Z", "last_modified_time": "2024-02-14T15:27:11.634252Z", "date_published": "2024-02-14T12:46:22.620000Z", "start_time": "2024-02-24T12:00:00Z", "end_time": "2024-02-24T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa kuuntelemaan Es-ow & the Ridial Bandin musiikkiesitystä Oodin lasten tapahtumatilaan!" }, "name": { "fi": "Senegalilainen musiikkiesitys lapsille" }, "description": { "fi": "<p>Tervetuloa kuuntelemaan Es-ow & the Ridial Bandin musiikkiesitystä Oodin lasten tapahtumatilaan!</p><p>Yhtyeen musiikki on sekoitus länsiafrikkalaista popmusiikkia, afrobeatia, hiphopia, reggaeta ja jazzia. Soittajat ovat viidestä eri maasta Afrikasta ja Euroopasta: Senegalista, Suomesta, Kongosta, ja Kamerunista. Kaikki bändin jäsenet tuovat musiikkiin lisäksi jotakin omasta kulttuuristaan.</p><p>Tapahtuma järjestetään osana Satakielikuukautta. Satakielikuukausi on vuosittainen monikielisyyttä juhliva jakso Kansainvälisen äidinkielen päivän (21.2.) ja Maailman runouden päivän (21.3.) välillä. Kuukauden aikana myös kirjastoissa järjestetään tapahtumia, joissa tuodaan esiin kielellistä rikkautta ja tarkastellaan äidinkielen ja kielten merkitystä taiteen, kohtaamisten ja yhdessä tekemisen kautta.</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lasten tapahtumatila, 3. krs" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281802/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281800", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8289/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10845, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-14T13:26:02.500615Z", "last_modified_time": "2024-02-14T13:26:02.500635Z", "url": "https://www.helmet.fi/download/noname/{874612DE-9B97-4A84-A6CC-2A85BC8D176C}/109494", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10845/?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:p4354/?format=api" } ], "created_time": "2024-02-14T13:26:02.487651Z", "last_modified_time": "2024-02-14T13:26:02.553606Z", "date_published": "2024-02-14T12:17:00Z", "start_time": "2024-03-02T08:00:00Z", "end_time": "2024-03-02T12: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, "provider": null, "short_description": { "fi": "Lasten lauantain teemana ritarit ja prinsessat." }, "name": { "fi": "Lasten lauantai: ritarit ja prinsessat" }, "description": { "fi": "<p>Ohjelmassa askartelua, suunnistusta, prinsessa- ja ritaritestit sekä muuta mukavaa. </p><p>Satutuokiot klo 11 ja 13.</p><p>Halutessasi voit pukeutua teeman mukaisesti.</p><p>Tervetuloa! </p><p> <em>Kuva: pixabay: Vika_Glitter</em> </p>" }, "provider_contact_info": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281800/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:Lisenssi_ja_description1078482012", "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:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 10842, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-14T11:29:03.468483Z", "last_modified_time": "2024-02-14T11:29:03.468512Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=1e3415f1-24de-40c5-9a72-dc171d7b69bb&Timestamp=638435066724546843&Full=true", "name": "Kuvanimi", "cropping": "", "photographer_name": "Kuvaaja", "alt_text": "Kuvaus", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10842/?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-02-14T11:25:48.497476Z", "last_modified_time": "2024-02-14T11:29:04.934529Z", "date_published": "2024-02-14T11:24:21Z", "start_time": "2024-02-14T11:33:00Z", "end_time": "2024-02-29T13:33:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Järjestäjä" }, "short_description": { "fi": "Lyhyt kuvaus" }, "name": { "fi": "Lisenssi ja description" }, "description": { "fi": "Pitkä kuvaus" }, "provider_contact_info": null, "location_extra_info": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Lisenssi_ja_description1078482012" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:Lisenssi_ja_description1078482012/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:255744", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10828, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-14T10:27:37.864041Z", "last_modified_time": "2024-02-14T10:27:37.864069Z", "url": "https://www.helmet.fi/download/noname/{D7603AC0-1259-4FBC-91C4-08B740C189EB}/62704", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10828/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-02-14T10:27:37.832819Z", "last_modified_time": "2024-02-14T10:27:37.944123Z", "date_published": "2024-02-14T09:00:00Z", "start_time": "2024-03-02T08:00:00Z", "end_time": "2024-03-02T14: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, "provider": null, "short_description": { "fi": "Tapanilan kirjastossa myydään taas kirjaston kokoelmista poistettuja aikakauslehtiä. Tervetuloa tekemään löytöjä heti kymmenestä alkaen!" }, "name": { "fi": "Lehtimyynti" }, "description": { "fi": "Tapanilan kirjastossa myydään taas kirjaston kokoelmista poistettuja aikakauslehtiä.<br><br> Lehdet maksavat 1 € / nippu ja maksuvälineenä käy kortti tai Mobilepay. Tervetuloa tekemään löytöjä heti kymmenestä alkaen!" }, "provider_contact_info": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:255744/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:In-Realtime_license_test3187912136", "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/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: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:p14483/?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:p21257/?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:p2315/?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: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: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:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Vain eur", "sv": "Vain eur", "en": "Vain eur", "ru": "Vain eur", "zh_hans": "Vain eur", "ar": "Vain eur" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136" }, "price": { "fi": "56€", "sv": "56€", "en": "56€", "ru": "56€", "zh_hans": "56€", "ar": "56€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 10827, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-14T10:03:47.819719Z", "last_modified_time": "2024-02-14T10:03:47.819740Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=3817086b-fd2a-42c0-8141-5aca3acd1f71&Timestamp=638423929622419713&Full=true", "name": "Realtime kuvateksti", "cropping": "", "photographer_name": "Kuvaaja", "alt_text": "Alttiteksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10827/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Complete city tour", "url": "https://www.youtube.com/watch?v=oZ462vqo9_8", "alt_text": "Videokuvaus" } ], "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/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/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: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:p14483/?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:p21257/?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:p2315/?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: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: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:p5164/?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-02-14T07:53:25.358138Z", "last_modified_time": "2024-02-14T10:09:51.552537Z", "date_published": "2024-02-01T08:41:28Z", "start_time": "2024-02-16T08:50:00Z", "end_time": "2024-02-17T10:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 5, "audience_max_age": 60, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 60, "enrolment_start_time": "2024-02-01T09:30:00+02:00", "enrolment_end_time": "2024-02-14T10:00:00+02:00", "local": false, "replaced_by": null, "provider": { "fi": "Hakeli", "sv": "HakeliSV", "en": "HakeliEN", "ru": "HakeliRU", "zh_hans": "HakeliCH", "ar": "HakeliAR" }, "short_description": { "fi": "lyh kuvaus", "sv": "test", "en": "test", "ru": "test", "zh_hans": "test", "ar": "test" }, "name": { "fi": "In-Realtime license test 5", "sv": "test", "en": "test", "ru": "test", "zh_hans": "test", "ar": "test" }, "description": { "fi": "test", "sv": "test", "en": "<div><div>lorem ipsumia <strong><span style=\"font-size:16pt\">tässä </span></strong><em>hjfyufytdyryu</em></div></div>", "ru": "test", "zh_hans": "test", "ar": "test" }, "provider_contact_info": null, "location_extra_info": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:In-Realtime_license_test3187912136/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281705", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11756/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?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:p14710/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7643/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10805, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-13T17:27:38.888726Z", "last_modified_time": "2024-02-13T17:27:38.888743Z", "url": "https://www.helmet.fi/download/noname/{01935023-A346-471C-95CA-8A2E4BBA15CB}/109466", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10805/?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/ru/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2024-02-13T17:27:38.867410Z", "last_modified_time": "2024-02-13T17:27:38.976219Z", "date_published": "2024-02-13T11:26:00Z", "start_time": "2024-03-09T11:00:00Z", "end_time": "2024-03-09T13: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, "provider": null, "short_description": { "fi": "Tervetuloa venäjänkieliseen lasten ja perheiden kevättapahtumaan!", "ru": "Приглашаем мальчишек и девчонок, а также их родителей в библиотеку Мююрмяки!" }, "name": { "fi": "Venäjänkielinen kevättapahtuma", "ru": "Весенний праздник" }, "description": { "fi": "<p>Tervetuloa Myyrmäen kirjaston venäjänkieliseen lasten ja perheiden kevättapahtumaan lauantaina 9.3.2024 kello 13-15! </p><p>Päivän ohjelmaa: </p><ul> <li>Klo 13 Keväinen satutuokio: Minun kukkani (venäjänkielinen) </li> <li>Klo 13.30 Yhteislaulu: Kevätkierros (venäjänkielinen)</li> <li>Klo 14-15 Keväinen askartelupaja <br> </li> </ul><p>Vapaa pääsy, tervetuloa! </p>", "ru": "<p>Весенний праздник в библиотеке Мююрмяки! </p><p>Приглашаем мальчишек и девчонок,</p><p>а также их родителей в библиотеку Мююрмяки. 9.3.2024 c 13.00 до 15.00</p><p> В программе: </p><ul> <li>13.00 Весенняя сказка “ Мой цветок” на русском языке. </li> <li>13.30 Поем все вместе весеннюю песенку “ Весенний хоровод”. </li> <li>14-15 Мастерская весенних поделок. </li> </ul></p><p>Вход свободный. </p><p>Добро пожаловать! </p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumatila, 1. kerros", "ru": "1-й этаж" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281705/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281730", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10801/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 10803, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-13T17:27:03.512627Z", "last_modified_time": "2024-02-13T17:27:03.512644Z", "url": "https://www.helmet.fi/download/noname/{D0DA7EF9-6F4B-44CF-AA08-D38BE091E7BE}/109477", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10803/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-02-13T17:27:07.132285Z", "last_modified_time": "2024-02-13T17:27:07.223814Z", "date_published": "2024-02-13T15:01:52.267000Z", "start_time": "2024-02-24T13:00:00Z", "end_time": "2024-02-24T15: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, "provider": null, "short_description": { "fi": "Kiinnostaako rap, runous tai tarinat? Sanataide on hauskaa ja luovaa. Kiinnostus riittää ja halu pitää hauskaa porukalla. Sanataidepajassa pääsee kokeilemaan luovaa kirjoittamista." }, "name": { "fi": "Mitkä on sun sanat -sanataidepajat 2024" }, "description": { "fi": "<p> <b>Nuorille suunnatut \"Mitkä on sun sanat -sanataidepajat\" hiihtolomalla Ison Omenan kirjastolla.</b> <br> <br> Kiinnostaako rap, runous tai tarinat? Sanataide on hauskaa ja luovaa. Kiinnostus riittää ja halu pitää hauskaa porukalla. Sanataidepajassa pääsee kokeilemaan luovaa kirjoittamista.</p><p>Tyytyväisyystakuu: kaikki osaavat! Hiihtolomaviikon torstain ja perjantain sanataidepajat huipentuvat upean kirjailijan ja runoilijan <b>Aura Nurmen </b>työpajaan lauantaina.<br><br> Torstai 22.2. klo 16-18 Mitkä on sun sanat - sanataidepaja kirjaston pajassa. Ohjaajana Inari Mykkänen.</p><p>Perjantai 23.2. klo 16-18 Mitkä on sun sanat - sanataidepaja nuortentila Voxissa. Ohjaajana Inari Mykkänen.</p><p>Lauantai 24.2. klo 15-17 Mitkä on sun sanat - sanataidepaja nuortentila Voxissa. Ohjaajana kirjailija Aura Nurmi.</p><p>(Voxissa pidetään konsolipelit kiinni pajojen aikana.)</p>" }, "provider_contact_info": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281730/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7jp4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/3By5WH8Ky", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7hei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7hhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7hkq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7hnm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7hqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7htm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7hwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7hzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7h5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7iau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7idm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7igy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7iju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7imu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7ipu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7isu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7ivu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7iyq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7i3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7i6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7jke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7jna/?format=api" } ], "images": [ { "id": 150422, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-27T12:30:08.869964Z", "last_modified_time": "2023-11-27T12:30:19.230971Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/151122Kielikahvila_mainos_680_x_382_px.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirrettyjä ihmisiä keltaisella taustalla. Puhekuplissa Tervetuloa, Solmu kielikahvila, moi. Yläkulmassa eläkeliiton logo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150422/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-27T12:30:47.673523Z", "last_modified_time": "2024-02-13T13:31:44.295692Z", "date_published": "2023-11-27T12:24:00Z", "start_time": "2023-11-29T14:00:00Z", "end_time": "2024-05-29T14: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, "provider": { "fi": "Eläkeliiton Yhtä köyttä vetämässä -hanke", "sv": "Eläkeliiton Yhtä köyttä vetämässä -hanke", "en": "Eläkeliiton Yhtä köyttä vetämässä -hanke" }, "short_description": { "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.", "sv": "Öppet och gratis språkcafé för alla som vill öva sig på att prata finska. Nybörjare är också välkomna.", "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. " }, "name": { "fi": "Solmu - suomen kielen kielikahvila", "sv": "Solmu - det finska språkkaféet", "en": "Solmu - the Finnish language cafe" }, "description": { "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan!</p><p>Lisätietoja: Anu Kytömäki, projektipäällikkö, Yhtä köyttä vetämässä -hanke, puh. 040 7257 124, anu.kytomaki@elakeliitto.fi</p><p>Järjestäjä: Eläkeliiton Yhtä köyttä vetämässä -hanke</p>", "sv": "<p>Öppet och gratis språkcafé för alla som vill öva sig på att prata finska. Nybörjare är också välkomna.</p><p>Ingen anmälan behövs och du kan komma med när som helst. I språkcaféet övar du dig på att prata vardagsfinska.</p><p>I språkcaféet får du prata finska med finländare. </p><p>Välkommen med!<br></p>", "en": "<p>A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7jp4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggo2yacu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x65i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x7em/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x7hy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x7lq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x7om/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x7ry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x7vu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x7ze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x74m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2x77u/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-14T07:48:54.650454Z", "last_modified_time": "2024-02-13T13:28:23.506701Z", "date_published": "2023-12-14T07:34:00Z", "start_time": "2024-01-10T16:00:00Z", "end_time": "2024-05-29T16: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, "provider": null, "short_description": { "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!", "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ", "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!" }, "name": { "fi": "Soturikissaklubi", "sv": "Warriorsklubben", "en": "Warriors Cat Club" }, "description": { "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p>Tapaamme keväällä 2024 seuraavina keskiviikkopäivinä.<br>10.1.<br>24.1.<br>7.2.<br>21.2.<br>6.3.<br>20.3.<br>3.4.<br>17.4.<br>15.5.<br>29.5.</p><p>Vappuna 1.5. ei ole Soturikissaklubia.</p>", "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! Under våren 2024 träffas vi följande onsdagar:</p><p>10.1.<br>24.1.<br>7.2.<br>21.2.<br>6.3.<br>20.3.<br>3.4.<br>17.4.<br>15.5.<br>29.5.</p><p>Det blir ingen Warriorsklubb på Valborg 1.5. </p><p>Observera att evenemanget hålls på finska.</p>", "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>We'll meet in spring 2024 on the following Wednesdays:<br>10.1.<br>24.1.<br>7.2.<br>21.2.<br>6.3.<br>20.3.<br>3.4.<br>17.4.<br>15.5.<br>29.5.</p><p>There will be no Warriors Cat Club on May 1st, due to May Day. </p><p>Please note that the event is conducted in Finnish.</p>" }, "provider_contact_info": null, "location_extra_info": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggo2yacu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }