Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1275®istration__remaining_waiting_list_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1276®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1274®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "helmet:251793", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8205/?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:11997/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3011, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:47:31.943869Z", "last_modified_time": "2023-08-15T15:47:31.943887Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9CC1C942-EF91-4109-9C69-3B0548DEEE41}/99268", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3011/?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": "2023-08-15T15:47:31.829089Z", "last_modified_time": "2023-10-18T21:01:04.607022Z", "date_published": "2023-01-07T09:11:00Z", "start_time": "2023-10-18T10:00:00Z", "end_time": "2023-10-18T12: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Sekä lapsille että aikuisille sopiva askartelupaja!" }, "description": { "fi": "<p>Sekä lapsille että aikuisille sopiva askartelupaja, jossa väritetään värityskuvia ja samalla kuunnellaan kirjastontyöntekijän ääneen lukemia tarinoita. Lopuksi värityskuvista tehdään kortteja.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. </p><p>Tervetuloa!</p>" }, "provider": null, "name": { "fi": "Värityskuvista korteiksi tarinoita kuunnellen –askartelupaja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:251793/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59799", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4045, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:53.280565Z", "last_modified_time": "2023-09-07T14:19:53.280589Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730190.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4045/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:19:53.138696Z", "last_modified_time": "2023-10-18T20:30:08.106416Z", "date_published": null, "start_time": "2023-08-19T12:00:00Z", "end_time": "2023-08-19T13: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/94E0CE7EBF318CB943F235C2BE7A2C94/Naattiorkesteri", "sv": "http://www.malmitalo.fi/sv/evenemang/event/94E0CE7EBF318CB943F235C2BE7A2C94/Naattiorkesteri", "en": "http://www.malmitalo.fi/en/events/event/94E0CE7EBF318CB943F235C2BE7A2C94/Naattiorkesteri" }, "provider_contact_info": null, "short_description": { "fi": "Naattiorkesterin mukaansatempaavalla musiikkimatkalla lounastetaan Loiskiaisen kanssa, ampaistaan avaruuteen asti ja mennään metsään mietiskelemään.", "sv": "Naattiorkesteris medryckande musikresa tar med publiken på en lunch med Loiskiainen, en utflykt i raketfart ända upp i rymden och meditation i skogen.", "en": "On the Naattiorkesteri band’s magical musical journey, you will have lunch with the creature they call Loiskiainen, fly up to space and head to the forest for some reflection." }, "description": { "fi": "<p>Naattiorkesterin mukaansatempaavalla musiikkimatkalla lounastetaan Loiskiaisen kanssa, ampaistaan avaruuteen asti ja mennään metsään mietiskelemään.</p><p>Joskus sanat sekoittuvat suussa suhmuraksi ja pissahätäkin voi yhtäkkiä yllättää. Yhtyeen sanoitukset kumpuavat lasten maailmasta, jossa kaikki on mahdollista!</p><p>Soveltuu kaikenikäisille. Konsertin kieli on suomi.</p><p>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "sv": "<p>Naattiorkesteris medryckande musikresa tar med publiken på en lunch med Loiskiainen, en utflykt i raketfart ända upp i rymden och meditation i skogen.</p><p>Ibland blir orden en enda röra i munnen och det händer väl också att man blir akut kissnödig mitt i allt. Orkesterns låttexter hämtar inspiration från barnens värld där allt kan hända!</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "en": "<p>On the Naattiorkesteri band’s magical musical journey, you will have lunch with the creature they call Loiskiainen, fly up to space and head to the forest for some reflection.</p><p>Sometimes words will get jumbled up in your mouth, and you may even unexpectedly have to pee. The band’s lyrics are derived from the world of children where everything is possible!</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "provider": null, "name": { "fi": "Naattiorkesteri – Malmin tapahtumakesä", "sv": "Naattiorkesteri – Malms evenemangssommar", "en": "Naattiorkesteri – Malmi Summer of Events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59799/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60398", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4042, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:52.055385Z", "last_modified_time": "2023-09-07T14:19:52.055407Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730189.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4042/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:51.662847Z", "last_modified_time": "2023-10-18T20:30:05.818265Z", "date_published": null, "start_time": "2023-08-19T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/46AB99E332C6D65E88591B3142429025/Siivet_ry_Oma_laulusi_-konsertti_ja_tyopaja_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/46AB99E332C6D65E88591B3142429025/Siivet_ry_Konsert_och_verkstad_Oma_laulusi", "en": "http://www.malmitalo.fi/en/events/event/46AB99E332C6D65E88591B3142429025/Siivet_ry_Oma_laulusi_-_Concert_and_workshop" }, "provider_contact_info": null, "short_description": { "fi": "Oma laulusi on konsertti 0–100-vuotiaille.", "sv": "Oma laulusi är en konsert för alla mellan 0 och 100 år.", "en": "The ‘Oma laulusi’ concert is intended for people of all ages." }, "description": { "fi": "<p>Oma laulusi on konsertti 0–100-vuotiaille.</p><p>Siivet ry tarjoaa energisen ja välillä pehmeästi sointuvan musiikki-, laulu- rytmi- ja afrikkalaistanssin esityksen. Esitys huipentuu workshoppiin esityksen jälkeen. Lapset vanhempineen saavat tulla tekemään omia laulujaan traditionaalisen goni-soittimen säestyksellä omalla kielellään. Kokeilemme myös suomalaista perinnelaulua afrikkalaiseen musiikkiin.</p><p>Esiintyjät: Pitkän linjan tanssi- sekä kuvataiteilija ja muusikko Sanna Karlsson-Sutisna Suomesta ja muusikko-tanssija Lassina Ouattara Burkina Fasosta.</p><p>Valokuvaaja: Anni Sirkka</p><p>Soveltuu kaikenikäisille. Ohjaus suomeksi. <br>Vapaa pääsy</p>", "sv": "<p>Oma laulusi är en konsert för alla mellan 0 och 100 år.</p><p>Siivet ry serverar en energisk och emellanåt mjukt klingande föreställning med musik, sång, rytm och afrikansk dans. Föreställningen kulminerar i en workshop efteråt. Barnen och deras föräldrar är välkomna att skapa egna låtar på sitt eget språk till det traditionella instrumentet ngoni. Vi testar också på finländsk traditionssång till afrikansk musik.</p><p>Språk: finska</p>", "en": "<p>The ‘Oma laulusi’ concert is intended for people of all ages.</p><p>Siivet ry provides an energetic yet gentle performance of African music, song, rhythm and dance. As a cherry on top, a workshop will be held after the performance. Children and their parents can come and make their own songs accompanied by the traditional ngoni instrument in their own language. We will also try traditional Finnish signing to traditional music.</p><p>Language of instruction: Finnish</p>" }, "provider": null, "name": { "fi": "Siivet ry: Oma laulusi -konsertti ja työpaja – Malmin tapahtumakesä", "sv": "Siivet ry: Konsert och verkstad Oma laulusi – Malms evenemangssommar", "en": "Siivet ry: Oma laulusi - Concert and workshop – Malmi Summer of Events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60398/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59951", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4044, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:52.913935Z", "last_modified_time": "2023-09-07T14:19:52.913955Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731864.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4044/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:52.762923Z", "last_modified_time": "2023-10-18T20:30:03.801205Z", "date_published": null, "start_time": "2023-08-19T10:00:00Z", "end_time": "2023-08-19T11: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, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/07E8BFBAED439BD2A2658E7EFB67BD95/Viittomakielinen_opastus_Emergent_Properties", "sv": "http://www.caisa.fi/sv/evenemang/event/07E8BFBAED439BD2A2658E7EFB67BD95/Guidning_pa_teckensprak_Emergent_Properties", "en": "http://www.caisa.fi/en/events/event/07E8BFBAED439BD2A2658E7EFB67BD95/Sign_language_tour_Emergent_Properties" }, "provider_contact_info": null, "short_description": { "fi": "Gabriella ja Kristian Presnalin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.", "sv": "Gabriella och Kristian Presnals utställnings guidning tolkas på finskt teckenspråk.", "en": "A guided tour of Gabriella and Kristian Pesnals exhibition interpreted into Finnish sign language." }, "description": { "fi": "<p>Gabriella ja Kristian Presnalin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.</p><p>Opastus järjestetään yhteistyössä Ursa Minorin kanssa. Oppaana Aino Laiho.</p><p>Termiä emergentit ominaisuudet käytetään biologiassa ja muilla aloilla kuvaamaan, kuinka järjestelmän yksittäiset osat eivät riitä selittämään, miten koko järjestelmä toimii, kuten ihmiskeho elimineen.</p><p>Tämä tarjoaa myös vertauskuvan siitä, miten alamme ymmärtää omaa identiteettiämme.</p><p>Näyttelyn teoksia ovat inspiroineet taiteilijasisarusten Gabriella ja Kristian Presnalin tekemät haastattelut. Kaksikko esittelee taiteellista tutkimustaan ja havainnollistaa videon, valokuvauksen ja maalauksen avulla Uudenmaan queer-nomadien kertomia tarinoita.</p><p>Suomalais-amerikkalaiset taiteilijasisarukset ovat asuneet Suomessa viimeiset kuusi vuotta. Sitä ennen he ovat asuneet Kanadassa ja useissa Yhdysvaltojen osavaltioissa sekä Ruotsissa.</p>", "sv": "<p>Gabriella och Kristian Presnals utställnings guidning tolkas på finskt teckenspråk.</p><p>Termen framväxande egenskaper används inom biologi och andra områden för att beskriva hur enskilda delar av ett system inte räcker till för att veta hur hela systemet fungerar, liksom organen i en kropp. Detta ger också en analogi till hur vi börjar förstå våra identiteter.</p><p>Detta ger också en analogi till hur vi börjar förstå våra identiteter.</p><p>Verken i denna utställning har inspirerats av intervjuer gjorda av konstnärssyskonen Gabriella och Kristian Presnal. Duon presenterar sin konstnärliga forskning med hjälp av video, fotografi och måleri för att illustrera berättelserna som berättas av queernomader bosatta i Nyland.</p><p>De finsk-amerikanska konstnärssyskonen har bott i Finland de senaste sex åren. Under sin barndom har de bott i Kanada, flera delstater i USA och i Sverige.</p>", "en": "<p>A guided tour of Gabriella and Kristian Pesnals exhibition interpreted into Finnish sign language.</p><p>The term emergent properties is used in biology as well as other fields to describe how isolated individual parts of a system are not enough to know how the entire system itself functions, like organs in a body.</p><p>This also offers an analogy on how we begin to understand our identities as well. The works within this exhibition are inspired by interviews conducted by the pair of artist siblings, Gabriella and Kristian Presnal. The duo presents their artistic research using video, photography, and painting to illustrate the stories told by queer nomadic persons living in Uusimaa.</p><p>The artist siblings are Finnish-American and have lived in Finland for the past 6 years. Previously in their childhood they lived in Canada; multiple states in the U.S., and Sweden.</p>" }, "provider": null, "name": { "fi": "Viittomakielinen opastus: Emergent Properties", "sv": "Guidning på teckenspråk: Emergent Properties", "en": "Sign language tour: Emergent Properties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59951/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59798", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4043, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:52.552778Z", "last_modified_time": "2023-09-07T14:19:52.552801Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730188.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4043/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:52.399933Z", "last_modified_time": "2023-10-18T20:30:02.226157Z", "date_published": null, "start_time": "2023-08-19T10:00:00Z", "end_time": "2023-08-19T13: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, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9C6CBA40DE80EEEBB5E40D2AEED3E34B/Hupsansaa_ry_Puutarhajuhlat-tyopaja_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9C6CBA40DE80EEEBB5E40D2AEED3E34B/Hupsansaa_ry_Verkstaden_Puutarhajuhlat_Tradgardsfesten_", "en": "http://www.malmitalo.fi/en/events/event/9C6CBA40DE80EEEBB5E40D2AEED3E34B/Hupsansaa_ry_Verkstaden_Puutarhajuhlat_Tradgardsfesten_Hupsansaa_ry_Puutarhajuhlat-tyopaja_" }, "provider_contact_info": null, "short_description": { "fi": "Hupsansaa ry:n Puutarhajuhlissa Ala-Malmin puistoon on katettu kukkabuffet.", "sv": "På Hupsansaa ry:s trädgårdsfest i Nedre Malms park står en blomsterbuffé framdukad.", "en": "A flower buffet will be set up in Ala-Malmin puisto park during Hupsansaa ry’s Puutarhajuhlat event." }, "description": { "fi": "<p>Hupsansaa ry:n Puutarhajuhlissa Ala-Malmin puistoon on katettu kukkabuffet.</p><p>Voit loihtia aidoista kukista satumaisia pieniä kimppuja, vehreitä koristeita tai taikasauvoja. Saavu kesäiselle huviretkelle ja nauti vadelmamehua päivävarjojen alla, ota nokoset riippukeinussa ja taiteile piknik-viltillä.</p><p>Nämä juhlat ovat täynnä hurvittelua ja hupsutusta! Työpajassa hyödynnetään hävikkikukkia saatavuuden mukaan. Soveltuu kaikenikäisille, pienet lapset oman aikuisen kanssa. Ohjaus suomeksi.</p><p>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "sv": "<p>På Hupsansaa ry:s trädgårdsfest i Nedre Malms park står en blomsterbuffé framdukad.</p><p>Du kan trolla fram sagolika små buketter, frodiga dekorationer eller en trollstav av riktiga blommor. Verkstaden passar deltagare i alla åldrar, små barn ska ha en vuxen med sig. Handledning ges på finska.</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "en": "<p>A flower buffet will be set up in Ala-Malmin puisto park during Hupsansaa ry’s Puutarhajuhlat event.</p><p>You can use real flowers to craft enchanting bouquets, colourful decorations or magic wands. Suitable for all ages; small children must have be accompanied by an adult. Instruction in Finnish.</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "provider": null, "name": { "fi": "Hupsansaa ry: Puutarhajuhlat-työpaja – Malmin tapahtumakesä", "sv": "Hupsansaa ry: Verkstaden Puutarhajuhlat (”Trädgårdsfesten”) – Malms evenemangssommar", "en": "Hupsansaa ry: Verkstaden Puutarhajuhlat (”Trädgårdsfesten”) Hupsansaa ry: Puutarhajuhlat-työpaja – Malmi Summer of Events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59798/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60544", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4041, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:50.737520Z", "last_modified_time": "2023-09-07T14:19:50.737548Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730385.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4041/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:50.467835Z", "last_modified_time": "2023-10-18T20:30:01.951697Z", "date_published": null, "start_time": "2023-08-19T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/06C08781C9CAEF4FE1BCC24724CA4A49/K-Pop_Dance_Showdown", "sv": "http://www.espanlava.fi/sv/evenemang/event/06C08781C9CAEF4FE1BCC24724CA4A49/K-Pop_Dance_Showdown", "en": "http://www.espanlava.fi/en/events/event/06C08781C9CAEF4FE1BCC24724CA4A49/K-Pop_Dance_Showdown" }, "provider_contact_info": null, "short_description": { "fi": "K-Society järjestää yhdessä Korean suurlähetystön kanssa K-Pop Dance Showdown-tapahtuman", "sv": "K-Society ordnar ett K-Pop Dance Showdown-evenemang tillsammans med Koreas ambassad.", "en": "A K-Pop Dance Showdown event by K-Society and the Korean Embassy." }, "description": { "fi": "<p>K-Society järjestää yhdessä Korean suurlähetystön kanssa K-Pop Dance Showdown-tapahtuman</p><p>Kyseessä on tanssikilpailu, jossa tanssijat esiintyvät korealaisen musiikin tahdittamina ja tuomaristo pisteyttää jokaisen esityksen. Tapahtuma tuo esille korealaista kulttuuria samalla antaen nuorille mahdollisuuden esiintyä, liikkua ja tutustua uusiin ihmisiin, joilla on sama kiinnostuksen kohde.</p>", "sv": "<p>K-Society ordnar ett K-Pop Dance Showdown-evenemang tillsammans med Koreas ambassad.</p><p>Evenemanget är en danstävling där dansarna uppträder med koreansk musik och en jury poängsätter varje uppträdande.</p><p>Evenemanget lyfter fram den koreanska kulturen och samtidigt ger <br>ungdomar möjlighet att uppträda, röra sig och träffa nya människor med samma intressen.</p>", "en": "<p>A K-Pop Dance Showdown event by K-Society and the Korean Embassy.</p><p>The event is a dance competition wherein dancers will dance to Korean music with a jury scoring each performance.</p><p>The event introduces Korean culture and allows young people to perform, dance and get to know new people with the same interests.</p>" }, "provider": null, "name": { "fi": "K-Pop Dance Showdown", "sv": "K-Pop Dance Showdown", "en": "K-Pop Dance Showdown" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60544/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269057", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8277/?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:10847/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4780, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-14T14:53:01.917201Z", "last_modified_time": "2023-09-14T14:53:01.917220Z", "name": "", "url": "https://www.helmet.fi/download/noname/{0C8F22E5-7E6E-4247-89B8-8CB1585E4D21}/105853", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4780/?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": "2023-10-02T12:41:18.709445Z", "last_modified_time": "2023-10-18T17:04:18.899284Z", "date_published": "2023-10-02T11:52:23.543000Z", "start_time": "2023-10-18T15:00:00Z", "end_time": "2023-10-18T15: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa satukahveille!" }, "description": { "fi": "Tänä syksynä Suutarilan kirjastossa tarjotaan satukahvit joka toinen keskiviikko klo 18.<br> Lukijana on vapaaehtoinen satutäti Memma. Vanhemmille kahvi- ja teetarjoilu.<br> Tuokio on suunnattu yli 3-vuotiaille lapsille. <br> Tervetuloa! Kuva: Maarit Hohteri/Helsingin kaupunki" }, "provider": null, "name": { "fi": "Satukahvit" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269057/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266905", "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: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:11193/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3729, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-28T08:22:41.701588Z", "last_modified_time": "2023-08-28T08:22:41.701610Z", "name": "", "url": "https://www.helmet.fi/download/noname/{05408EB7-3D94-4569-9290-CB09F37427F7}/105248", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3729/?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": "2023-08-28T08:24:31.519928Z", "last_modified_time": "2023-10-18T14:47:42.454179Z", "date_published": "2023-08-28T07:18:33.277000Z", "start_time": "2023-09-17T07:00:00Z", "end_time": "2023-09-17T17: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, "location_extra_info": { "fi": "3. krs, Kirjataivas" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kiilan feministinen arkisto/Kiila Feminist Archive on taiteilija Minna Henrikssonin kokoama arkisto taideteoksena." }, "description": { "fi": "<p>Oodin 3. kerroksessa toteutetaan taideinterventio Kiilan Feministinen Arkisto/Kiila Feminist Archive Together Again -festivaalilla 8.9.-17.9.</p><p>Kiilan feministinen arkisto/Kiila Feminist Archive on taiteilija <strong>Minna Henrikssonin </strong>kokoama arkisto taideteoksena. Teos on pitkäkestoinen ja edelleen jatkuva tutkimusprosessi yli kahdeksankymmentä vuotta toimineen taiteilija- ja kirjailijayhdistys Kiilan alkuvuosiin.</p><p>Julkinen interventio toteutetaan Oodi kirjaston ja Rikhardinkadun kirjaston hyllyissä. Kummankin kirjaston kaunokirjallisuuden ja runouden osastoilla on 8.-17. syyskuuta 2023 sarja vihkosia, joissa on suomenkielisiä otteita ja englanninkielisiä käännöksiä neljän kirjailijan valituista novelleista, romaaneista ja runoista: <strong>Tyyne Maija Salmisen</strong>, <strong>Elvi Sinervon</strong>, <strong>Iris Uurron</strong> ja <strong>Katri Valan</strong>. Nämä teokset ovat jääneet pitkälti pois kirjastojen kierrosta, mutta ansaitsisivat paikan sekä suomalaisessa että kansainvälisessä kirjallisuuskaanonissa.</p><p>Minna Henriksson on tehnyt uusia linoleikkauskuvituksia näihin kirjallisuusotteisiin, joita on vihkosissa ja niitä on myös esillä Rikhardinkadun kirjastossa.</p><p>Interventio toteutetaan yhteistyössä lontoolaisen The Showroomin kuraattorin <strong>Lily Hallin</strong> ja Suomen Britannian- ja Irlannin-instituutin taideohjelman johtajan <strong>Karoliina Korpilahden</strong> kanssa. Vihkot on suunnitellut <strong>Kaisa Lassinaro</strong>.</p><p>***</p><p>Intervention at Rikhardinkatu and Oodi public libraries</p><p>The Kiila Feminist Archive at Together Again festival</p><p>Dates: 8.-17.9.2023</p><p>Rikhardinkatu library opening times: Monday to Thursday 8-20, Friday 8-18, Saturday 10-16, Sunday 12-18</p><p>Oodi library opening times: Monday to Friday 8-21, Saturday and Sunday 10-20</p><p>The Kiila Feminist Archive is an archive-as-artwork by artist Minna Henriksson. The work involves a long-term and ongoing process of research into the early years of the Kiila artists’ and writers’ association in Finland, which has been running for over eighty years. </p><p>A public intervention is realised into the shelves of two public libraries in Helsinki: Oodi Library and Rikhardinkatu Library. Between 8-17 September 2023, it will be possible to find a series of booklets that will be inserted into the fiction and poetry sections of each library, holding translations in English and the original Finnish texts of excerpts from selected short stories, novels and poems by four authors: Tyyne Maija Salminen, Elvi Sinervo, Iris Uurto and Katri Vala. These are texts that have gone out of public circulation; and have been largely neglected, both in Finnish and international literary history. </p><p>These excerpts will be accompanied by new linocut illustrations made by Minna Henriksson, which will also be included in the booklets and displayed at the Rikhardinkatu Library.</p><p>The intervention is realised in collaboration with Lily Hall, Curator at The Showroom, London and organised in collaboration with Karoliina Korpilahti, Programme Director, Arts at the Finnish Institute in UK and Ireland. The booklets are designed by Kaisa Lassinaro.</p><p> <em>Image credit:</em> </p><p> <em>Minna Henriksson, Kiila Feminist Archive, installation view, Editorial Tables: Reciprocal Hospitalities, The Showroom, London, 2023. Photo: Dan Weill Photography </em> </p>" }, "provider": null, "name": { "fi": "Kiilan Feministinen Arkisto: interventio Oodissa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266905/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269371", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?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:10691/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5116, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-09T12:44:59.586121Z", "last_modified_time": "2023-10-09T12:44:59.586141Z", "name": "", "url": "https://www.helmet.fi/download/noname/{04D2078E-BD99-41D8-825D-BC913F0C6756}/106615", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5116/?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": "2023-10-09T12:44:58.703850Z", "last_modified_time": "2023-10-18T12:54:17.585042Z", "date_published": "2023-10-09T11:26:00Z", "start_time": "2023-10-18T11:00:00Z", "end_time": "2023-10-18T13: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tule tekemään itsellesi tyylikäs makrameeranneke!" }, "description": { "fi": "<p>Makrameerannekepajassa valmistetaan yksilöllinen koru makrameetekniikalla. Makrameeranneke on tyylikäs asuste kaikenikäisille. </p><p>Tapahtuma on maksuton. </p><p>Tapahtumaan on ilmoittautuminen ja mukaan mahtuu enintään 12 osallistujaa. Ilmoittaudu Hakunilan kirjaston asiakaspalvelutiskillä. </p><p>Asiasana: syysloma</p>" }, "provider": null, "name": { "fi": "Makrameerannekepaja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269371/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267244", "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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3770, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T09:25:48.423764Z", "last_modified_time": "2023-08-30T09:25:48.423783Z", "name": "", "url": "https://www.helmet.fi/download/noname/{5F67205B-381E-4588-8E53-83BBFC061D50}/105357", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3770/?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": "2023-08-30T09:25:48.287680Z", "last_modified_time": "2023-10-18T12:39:54.664072Z", "date_published": "2023-08-30T07:54:00Z", "start_time": "2023-09-17T10:30:00Z", "end_time": "2023-09-17T14: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, "location_extra_info": { "fi": "Popup-alue, 1. kerros" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tule mukaan maksuttomiin ja kaikille avoimiin korttikotelo- ja kenkähuolto työpajoihin sekä juhlistamaan Satumaiset Suutarit –kirjan julkistusta!" }, "description": { "fi": "<p>Satumaiset Suutarit -kirjan julkistusta juhlistetaan Keskustakirjasto Oodissa 17.9.2023. Klo 13.30-<br> 17.30 välillä. Tällöin Oodin ensimmäisen kerroksen täyttävät maksuttomat ja kaikille halukkaille<br> avoimet työpajat.</p><p> <strong>Klo 13.30-15.00 Työpaja</strong> <br> Tule ja tee itsellesi tai lahjaksi nahkainen korttikotelo</p><p> <strong>Klo 15.30-16.00 Satumaiset Suutarit </strong>– kurkistus tarunhohtoisiin tarinoihin ja korjaustyön arkeen<br> Kouluttaja, tietokirjailija Juha Kilpiä haastattelee Susanna Ruuhilahtea ja Ville Hasalaa. Luvassa<br> on ainakin tarunhohtoisia tarinoita ja kurkistuksia korjaavan suutarin arkeen.</p><p> <strong>16.15-17.30 Kenkien huoltoa</strong> <br> Ota mukaan kenkäsi ja huolla ne yhdessä suutareiden kanssa.</p><p>Satumaiset suutarit -kirjan ensimmäinen osio sisältää kuuden suomalaisen huippusuutarin tarinan<br> siitä, miten he ovat päätyneet valmistamaan tai korjaamaan kenkiä ja millaiset asiat tekevät heidän työstään ainutlaatuista ja kiinnostavaa. Tämä osio raottaa ikkunan myös satujen maailmaan – miten moniin satuihin kengät liittyvätkään! Osio kutsuu pohtimaan kengille annettuja merkityksiä ja muistoja, joita kenkiin liittyy.</p><p>Haastatellut suutarit ovat: Nicolai Budenberg, Ville Hasala, Teemu-Pekka Leppänen, Jussi Paljakka, Hanna Piipponen ja Satu Puustinen. Teoksen sydän, kirjan toinen osio, on omistettu suutariopiskelijoille ja muille korjaamisesta kiinnostuneille. Osio sisältää selkeät kuvalliset ohjeet suutareiden yleisimpiin korjaustöihin ja siksi se pitää sisällään lähes 600 kuvaa!</p><p>Kirjan kolmannessa osiossa kirjan tekijät hemmottelevat kotinikkareita yksinkertaisilla nahkatyöohjeilla toiveena, että mahdollisimman moni voisi kokea onnistumisen riemua käsillä tehden. Kirjan ovat kirjoittaneet Susanna Ruuhilahti ja Ville Hasala. Susanna Ruuhilahti on suutari, perhetyön koordinaattori ja tietokirjailija. Ville Hasala on suutarimestari ja Suutariliikkeiden liiton puheenjohtaja. Hän omistaa yrityksen nimeltä Suutarimestari Ville.</p><p> <a href=\"http://www.nektaria.fi\">www.nektaria.fi</a> <br> <a href=\"http://www.suutariliikkeidenliitto.fi\">www.suutariliikkeidenliitto.fi</a> <br> <a href=\"http://www.suutarimestariville.fi\">www.suutarimestariville.fi</a> </p><p>Lisätietoja ja haastattelupyynnöt<br> Susanna Ruuhilahti, sruuhilahti@gmail.com<br> Ville Hasala, ville@suutarimestariville.fi, 0400 285 348</p>" }, "provider": null, "name": { "fi": "Satumaiset Suutarit" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262625", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?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:10675/?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:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2762, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:22.468805Z", "last_modified_time": "2024-02-06T13:38:49.473781Z", "name": "", "url": "https://www.helmet.fi/download/noname/{636B19C9-E946-4298-823D-07C4D4C7C8E1}/75529", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2762/?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:p2433/?format=api" } ], "created_time": "2023-08-15T15:47:35.588215Z", "last_modified_time": "2023-10-18T11:52:46.922935Z", "date_published": "2023-07-04T07:20:06.467000Z", "start_time": "2023-10-18T10:00:00Z", "end_time": "2023-10-18T12: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Onko sinulla kysyttävää netin käytöstä? Miten sitä sähköpostia lähetettiinkään? Digiopastajamme neuvoo sinua." }, "description": { "fi": "<p>Tule kyselemään ja harjoittelemaan erilaisia tietotekniikkaan, laitteisiin, Internetin käyttöön ja ohjelmiin liittyviä taitoja kiireettömässä ja leppoisassa hengessä. Ohjaaja on Laurea-ammattikorkeakoulun opiskelija.<br><br> Varaa oma aikasi kirjastosta joko pistäytymällä paikan päälle tai soita 043 824 8306.</p><p>Asiasana: Digituki</p><p>Kuva: Pixabay.com</p><p> <br> <br> </p>" }, "provider": null, "name": { "fi": "Digiopastus Hakunilan kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262625/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262622", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?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:10675/?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:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2762, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:22.468805Z", "last_modified_time": "2024-02-06T13:38:49.473781Z", "name": "", "url": "https://www.helmet.fi/download/noname/{636B19C9-E946-4298-823D-07C4D4C7C8E1}/75529", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2762/?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:p2433/?format=api" } ], "created_time": "2023-08-15T15:45:10.694713Z", "last_modified_time": "2023-10-18T11:50:23.483827Z", "date_published": "2023-07-04T07:20:06.467000Z", "start_time": "2023-10-11T10:00:00Z", "end_time": "2023-10-11T12: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Onko sinulla kysyttävää netin käytöstä? Miten sitä sähköpostia lähetettiinkään? Digiopastajamme neuvoo sinua." }, "description": { "fi": "<p>Tule kyselemään ja harjoittelemaan erilaisia tietotekniikkaan, laitteisiin, Internetin käyttöön ja ohjelmiin liittyviä taitoja kiireettömässä ja leppoisassa hengessä. Ohjaaja on Laurea-ammattikorkeakoulun opiskelija.<br><br> Varaa oma aikasi kirjastosta joko pistäytymällä paikan päälle tai soita 043 824 8306.</p><p>Asiasana: Digituki</p><p>Kuva: Pixabay.com</p><p> <br> <br> </p>" }, "provider": null, "name": { "fi": "Digiopastus Hakunilan kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262622/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262624", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?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:10675/?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:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2762, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:22.468805Z", "last_modified_time": "2024-02-06T13:38:49.473781Z", "name": "", "url": "https://www.helmet.fi/download/noname/{636B19C9-E946-4298-823D-07C4D4C7C8E1}/75529", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2762/?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:p2433/?format=api" } ], "created_time": "2023-08-15T15:42:26.528053Z", "last_modified_time": "2023-10-18T11:47:02.890380Z", "date_published": "2023-07-04T07:20:06.467000Z", "start_time": "2023-10-04T10:00:00Z", "end_time": "2023-10-04T12: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Onko sinulla kysyttävää netin käytöstä? Miten sitä sähköpostia lähetettiinkään? Digiopastajamme neuvoo sinua." }, "description": { "fi": "<p>Tule kyselemään ja harjoittelemaan erilaisia tietotekniikkaan, laitteisiin, Internetin käyttöön ja ohjelmiin liittyviä taitoja kiireettömässä ja leppoisassa hengessä. Ohjaaja on Laurea-ammattikorkeakoulun opiskelija.<br><br> Varaa oma aikasi kirjastosta joko pistäytymällä paikan päälle tai soita 043 824 8306.</p><p>Asiasana: Digituki</p><p>Kuva: Pixabay.com</p><p> <br> <br> </p>" }, "provider": null, "name": { "fi": "Digiopastus Hakunilan kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262624/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262626", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?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:10675/?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:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2762, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:22.468805Z", "last_modified_time": "2024-02-06T13:38:49.473781Z", "name": "", "url": "https://www.helmet.fi/download/noname/{636B19C9-E946-4298-823D-07C4D4C7C8E1}/75529", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2762/?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:p2433/?format=api" } ], "created_time": "2023-08-15T15:39:51.290132Z", "last_modified_time": "2023-10-18T11:43:07.118009Z", "date_published": "2023-07-04T07:20:06.467000Z", "start_time": "2023-09-27T10:00:00Z", "end_time": "2023-09-27T12: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Onko sinulla kysyttävää netin käytöstä? Miten sitä sähköpostia lähetettiinkään? Digiopastajamme neuvoo sinua." }, "description": { "fi": "<p>Tule kyselemään ja harjoittelemaan erilaisia tietotekniikkaan, laitteisiin, Internetin käyttöön ja ohjelmiin liittyviä taitoja kiireettömässä ja leppoisassa hengessä. Ohjaaja on Laurea-ammattikorkeakoulun opiskelija.<br><br> Varaa oma aikasi kirjastosta joko pistäytymällä paikan päälle tai soita 043 824 8306.</p><p>Asiasana: Digituki</p><p>Kuva: Pixabay.com</p><p> <br> <br> </p>" }, "provider": null, "name": { "fi": "Digiopastus Hakunilan kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262626/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262623", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?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:10675/?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:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2762, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:22.468805Z", "last_modified_time": "2024-02-06T13:38:49.473781Z", "name": "", "url": "https://www.helmet.fi/download/noname/{636B19C9-E946-4298-823D-07C4D4C7C8E1}/75529", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2762/?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:p2433/?format=api" } ], "created_time": "2023-08-15T15:37:27.169880Z", "last_modified_time": "2023-10-18T11:39:39.025903Z", "date_published": "2023-07-04T07:20:06.467000Z", "start_time": "2023-09-20T10:00:00Z", "end_time": "2023-09-20T12: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Onko sinulla kysyttävää netin käytöstä? Miten sitä sähköpostia lähetettiinkään? Digiopastajamme neuvoo sinua." }, "description": { "fi": "<p>Tule kyselemään ja harjoittelemaan erilaisia tietotekniikkaan, laitteisiin, Internetin käyttöön ja ohjelmiin liittyviä taitoja kiireettömässä ja leppoisassa hengessä. Ohjaaja on Laurea-ammattikorkeakoulun opiskelija.<br><br> Varaa oma aikasi kirjastosta joko pistäytymällä paikan päälle tai soita 043 824 8306.</p><p>Asiasana: Digituki</p><p>Kuva: Pixabay.com</p><p> <br> <br> </p>" }, "provider": null, "name": { "fi": "Digiopastus Hakunilan kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262623/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:256034", "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/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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4919, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-27T13:59:13.453490Z", "last_modified_time": "2023-09-27T13:59:13.453506Z", "name": "", "url": "https://www.helmet.fi/download/noname/{14517634-D430-48EF-A4BB-2EE81C797224}/106221", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4919/?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": "2023-09-27T13:59:13.283512Z", "last_modified_time": "2023-10-18T10:47:17.604772Z", "date_published": "2023-02-22T07:11:00Z", "start_time": "2023-10-05T15:00:00Z", "end_time": "2023-10-05T16: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Lukulemmikki Tyyne ottaa vastaan Tapiolassa." }, "description": { "fi": "<p>Lukulemmikki Tyyne odottaa lukijoita ja rapsuttelijoita Tapiolan kirjastossa torstaina 5.10. klo 18-19.</p><p>Tervetuloa!</p>" }, "provider": null, "name": { "fi": "Lukulemmikki Tyyne" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:256034/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266432", "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:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10655/?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: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/yso:p13050/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3527, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T14:26:12.829975Z", "last_modified_time": "2023-08-22T14:26:12.830000Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D8ECC549-C306-44A5-BA0A-5BDF1A3A9866}/105160", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3527/?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": "2023-08-22T14:26:12.666368Z", "last_modified_time": "2023-10-18T10:37:00.589579Z", "date_published": "2023-08-22T12:30:30.630000Z", "start_time": "2023-09-17T10:00:00Z", "end_time": "2023-09-17T12: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, "location_extra_info": { "fi": "Lasten tapahtumatila, 3. krs" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kuuntelemaan tarinaa Sarahista!" }, "description": { "fi": "<p>Tervetuloa sunnuntaina <strong>17.9. klo 13-15 </strong>lasten tapahtumatilaan Oodin 3. kerrokseen kuuntelemaan Sarah, Afrikan laulujen lapsi -tarinaa, tapaamaan kirjailijat ja askartelemaan oma unelmakartta!</p>" }, "provider": null, "name": { "fi": "Sarah Afrikan laulava lapsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266432/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268289", "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:10840/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4784, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T09:26:07.546875Z", "last_modified_time": "2023-09-15T09:26:07.546904Z", "name": "", "url": "https://www.helmet.fi/download/noname/{FFC90F50-4FAA-49C4-A557-5F74C428FF5B}/105868", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4784/?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": "2023-09-15T09:26:07.054825Z", "last_modified_time": "2023-10-18T09:36:37.126477Z", "date_published": "2023-09-15T08:40:00Z", "start_time": "2023-09-17T10:00:00Z", "end_time": "2023-09-17T11: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, "location_extra_info": { "fi": "Kirjatorni, 2. krs" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa mukaan soittamaan kansanmusiikkia erilaisilla puhaltimilla!" }, "description": { "fi": "<p>Tervetuloa mukaan soittamaan kansanmusiikkia erilaisilla puhaltimilla! Ota mukaan oma soittimesi, vaikkapa nokkahuilu, klarinetti tai poikkihuilu. Jameja luotsaavat kansanmuusikot Kirsi Ojala ja Mimmi Laaksonen, Folk Flute Academy Finland</p>" }, "provider": null, "name": { "fi": "Pillijamit Rikhardinkadun kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268289/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269404", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:11777/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5325, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-10T11:10:09.887090Z", "last_modified_time": "2023-10-10T11:10:09.887116Z", "name": "", "url": "https://www.helmet.fi/download/noname/{189118BA-2F4E-4FB0-85AA-4E4D529E9471}/106662", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5325/?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": "2023-10-10T11:10:08.002971Z", "last_modified_time": "2023-10-18T07:46:14.281691Z", "date_published": "2023-10-09T12:00:00Z", "start_time": "2023-10-18T07:00:00Z", "end_time": "2023-10-18T08: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, "location_extra_info": { "fi": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Sateenkaarihistoriakuukauden satuhetki Sellon kirjastossa." }, "description": { "fi": "<h3>Sateenkaarihistoriakuukauden satuhetki</h3><p>Kirjasto jakaa tarinoita historiasta ja jaetusta kulttuuriperinnöstä. Kirjastossa juhlitaan sateenkaarihistorian kuukautta, joka juhlistaa seksuaali- ja sukupuolivähemmistöjen omaa historiaa. Satuhetkelle luetaan Milla Teräksen kirjoittama ja Hannamari Ruohosen kuvittama teos Ensi-lumi. Kirja kertoo matkasta itseksi ja ylpeäksi omasta identiteetistään.</p><p>Satuhetken aikana luvassa on musiikkia ja tanssia.</p><p>Lämpimästi tervetuloa mukaan!</p><p>Kuva: <a href=\"https://www.karisto.fi/onix/media/3215018.jpg?size=original&cl=888008&ch=8eb176ca6b020ff88263d41c7a1d9ac7\">Karisto</a></p>" }, "provider": null, "name": { "fi": "Sateenkaarisatuhetki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269404/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:160408", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?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: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:11686/?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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3739, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-28T14:36:30.558897Z", "last_modified_time": "2023-08-28T14:36:30.558920Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DE104418-24F7-47DF-BA1E-B34783A50EFD}/62835", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3739/?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": "2023-08-28T14:36:30.433495Z", "last_modified_time": "2023-10-18T06:02:36.482778Z", "date_published": "2019-02-01T08:55:00Z", "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T12: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, "location_extra_info": { "fi": "Mika Waltari -sali, 4. krs" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa konserttiin!" }, "description": { "fi": "<p>Konsertissa esiintyvät Töölön Musiikkiopiston oppilaat. <br> Tervetuloa!<br><br><a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\"><u>Töölön kirjasto</u></a></p>" }, "provider": null, "name": { "fi": "Töölön musiikkiopiston konsertti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:160408/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27518, "next": "