Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
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
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 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 coordinate system is the trusty old EPSG:4326 known from all online maps.
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
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.
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
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
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
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
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 event/?local_ongoing_AND=lapset,musiiki
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. The search is non-intelligently fuzzy, it allows two edits per search term which would cover some typos and allow for some grammatic changes: lapsi would match lapset but not lasten.
Example:
event/?local_ongoing_AND=lapsa,musiikki
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, two variations: ?internet_ongoing_AND
and ?internet_ongoing_OR
Note, that local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsa,musiiki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: ?all_ongoing_AND
and ?all_ongoing_OR
Example:
event/?all_ongoing_AND=lapsa,musiiki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
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=helmet
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
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
and duration
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
GET /linkedevents/v1/event/?format=api&internet_based=true
http://api.hel.fi/linkedevents/v1/event/?format=api&internet_based=true&page=2", "previous": null }, "data": [ { "id": "helmet:240220", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 77073, "license": "cc_by", "created_time": "2022-01-10T16:19:11.807508Z", "last_modified_time": "2022-01-10T16:19:11.807539Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DF8A63D-E2EF-4CCC-BD13-7C51E3342F07}/91033", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/77073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-11T13:20:29.489338Z", "last_modified_time": "2022-08-13T20:19:59.778458Z", "date_published": "2022-05-01T21:00:00Z", "start_time": "2022-10-26T09:00:00Z", "end_time": "2022-10-26T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'102.0':36C '12.00':20C 'aart':32C 'asem':18C 'fm':9B,17C 'helm':25C 'helsing':3B,11C 'kanav':10B 'kaupunginkirjasto':4B,12C 'kelo':19C 'kirj':22C 'kirjasto':1A,13C,26C 'kokoelm':27C 'kuuntel':33C 'mhz':37C 'musauutuuks':24C 'musavarasto':31C 'net':39C 'ohjelm':7B,15C 'pääkaupunkiseudu':34C 'radio':6B 'radio-ohjelm':5B 'rol':8B,16C 'soiko':2A,14C 'taajuud':35C 'tarj':21C 'vinkkej':29C 'www.rollfm.fi':40C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele pääkaupunkiseudulla taajuudella 102.0 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": { "fi": "Roll FM 102.0 MHz & rollfm.fi" }, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Helsingin kaupunginkirjaston radio-ohjelma Roll FM -kanavalla." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:240220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:240224", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 77073, "license": "cc_by", "created_time": "2022-01-10T16:19:11.807508Z", "last_modified_time": "2022-01-10T16:19:11.807539Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DF8A63D-E2EF-4CCC-BD13-7C51E3342F07}/91033", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/77073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-11T13:20:25.900959Z", "last_modified_time": "2022-08-13T20:19:56.462400Z", "date_published": "2022-05-01T21:00:00Z", "start_time": "2022-10-19T09:00:00Z", "end_time": "2022-10-19T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'102.0':36C '12.00':20C 'aart':32C 'asem':18C 'fm':9B,17C 'helm':25C 'helsing':3B,11C 'kanav':10B 'kaupunginkirjasto':4B,12C 'kelo':19C 'kirj':22C 'kirjasto':1A,13C,26C 'kokoelm':27C 'kuuntel':33C 'mhz':37C 'musauutuuks':24C 'musavarasto':31C 'net':39C 'ohjelm':7B,15C 'pääkaupunkiseudu':34C 'radio':6B 'radio-ohjelm':5B 'rol':8B,16C 'soiko':2A,14C 'taajuud':35C 'tarj':21C 'vinkkej':29C 'www.rollfm.fi':40C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele pääkaupunkiseudulla taajuudella 102.0 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": { "fi": "Roll FM 102.0 MHz & rollfm.fi" }, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Helsingin kaupunginkirjaston radio-ohjelma Roll FM -kanavalla." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:240224/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:240219", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 77073, "license": "cc_by", "created_time": "2022-01-10T16:19:11.807508Z", "last_modified_time": "2022-01-10T16:19:11.807539Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DF8A63D-E2EF-4CCC-BD13-7C51E3342F07}/91033", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/77073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-11T13:20:21.776465Z", "last_modified_time": "2022-08-13T20:19:52.755081Z", "date_published": "2022-05-01T21:00:00Z", "start_time": "2022-10-12T09:00:00Z", "end_time": "2022-10-12T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'102.0':36C '12.00':20C 'aart':32C 'asem':18C 'fm':9B,17C 'helm':25C 'helsing':3B,11C 'kanav':10B 'kaupunginkirjasto':4B,12C 'kelo':19C 'kirj':22C 'kirjasto':1A,13C,26C 'kokoelm':27C 'kuuntel':33C 'mhz':37C 'musauutuuks':24C 'musavarasto':31C 'net':39C 'ohjelm':7B,15C 'pääkaupunkiseudu':34C 'radio':6B 'radio-ohjelm':5B 'rol':8B,16C 'soiko':2A,14C 'taajuud':35C 'tarj':21C 'vinkkej':29C 'www.rollfm.fi':40C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele pääkaupunkiseudulla taajuudella 102.0 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": { "fi": "Roll FM 102.0 MHz & rollfm.fi" }, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Helsingin kaupunginkirjaston radio-ohjelma Roll FM -kanavalla." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:240219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:236073", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10691/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 80272, "license": "cc_by", "created_time": "2022-05-25T16:19:05.385853Z", "last_modified_time": "2022-05-25T16:19:05.385872Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3D95B658-3DEF-49B9-8D65-82C978CBA7F3}/93605", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/80272/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-05-25T16:19:05.372134Z", "last_modified_time": "2022-08-13T20:19:52.302917Z", "date_published": "2022-05-25T15:52:00Z", "start_time": "2022-10-11T15:00:00Z", "end_time": "2022-10-11T16:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'11.10':7B,32C '18':9B,34C '2022':23B,48C 'alakoulu':123C 'annol':3A,12B,13B,37C,38C,60C,74C,97C,136C 'el':2A,11B,36C,59C,135C 'elinaannol':144C 'eläm':114C 'erikoikirjastonhoitaj':56C 'erityisal':68C 'esikoisteoks':25B,50C 'ete':129C 'etel':90C 'etelä-pohjanm':89C 'haastattel':55C 'heittäytym':115C 'helsinkiläin':62C 'ilmestyn':24B,49C 'instagram':142C 'instagram-til':141C 'its':98C 'juure':87C 'kaik':18B,43C,119C,130C 'kerto':14B,39C 'kevä':22B,47C 'kiel':78C 'kiele':72C 'kirj':122C 'kirjailij':54C,134C,140C 'kirjailijavier':1A 'kirjailijavieraaks':10B,35C 'kirjallisuud':65C 'kirjallisuut':80C 'kirjasto':5B,30C 'kirjoittam':83C 'klo':8B,33C 'kotim':79C 'kotisivu':137C 'kukkiv':27B,52C,107C 'kum':100C 'kunnes':26B,51C,106C 'kute':96C 'laihia':94C 'lakeuks':95C 'lapsuusmaisem':93C 'lisätieto':133C 'lokaku':19B,44C,120C 'luova':82C 'mannil':58C 'marj':57C 'myös':99C,139C 'nuori':110C 'opettaj':66C,105C,111C,124C 'opetus':73C 'opiskelu':76C 'oppil':128C 'pohjanm':91C 'puut':28B,53C,108C 'päähenkilö':103C 'rohkeast':116C 'romaan':17B,42C,102C,109C 'saa':6B,31C 'suome':77C 'suomi':70C 'taiva':20B,45C,121C 'tavoittel':112C 'tekem':127C 'tikkuril':4B,29C 'til':143C 'toise':16B,41C,71C 'turu':84C 'tutustu':138C 'täyt':113C 'uunituor':15B,40C 'uute':117C 'valmis':126C 'väkis':132C 'yliopisto':85C 'äidinkiel':63C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tikkurilan kirjasto saa 11.10. klo 18 kirjailijavieraakseen Elina Annolan. Annola kertoo uunituoreesta toisesta romaanistaan <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2509544__Selina%20annola__P0%2C1__Orightresult__U__X2?lang=fin&suite=cobalt\">Kaikki lokakuun taivaat</a> sekä keväällä 2022 ilmestyneestä esikoisteoksestaan <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2491087__Selina%20annola__Orightresult__U__X4?lang=fin&suite=cobalt\">Kunnes kukkivat puut</a>. Kirjailijaa haastattelee erikoikirjastonhoitaja Marjo Mannila.</p><p>Elina Annola on helsinkiläinen äidinkielen ja kirjallisuuden opettaja, jonka erityisalaa on suomi toisena kielenä -opetus. Annola on opiskellut suomen kieltä, kotimaista kirjallisuutta ja luovaa kirjoittamista Turun yliopistossa. Hänen juurensa ovat Etelä-Pohjanmaalla ja lapsuusmaisemat Laihian lakeuksilla.</p><p>Kuten Annola itsekin, myös kummankin hänen romaaninsa päähenkilö on opettaja. Kunnes kukkivat puut -romaanissa nuori opettaja tavoittelee täyttä elämää heittäytymällä rohkeasti uuteen ja Kaikki lokakuun taivaat -kirjassa alakoulun opettaja on valmis tekemään oppilaiden eteen kaikkensa, vaikka väkisin.</p><p> <a href=\"http://elinaannola.com\">Lisätietoa kirjailijasta Elina Annolan kotisivulla</a>. <a href=\"https://www.instagram.com/elina.annola/\">Tutustu myös kirjailijan Instagram-tiliin @elinaannola.</a></p>" }, "location_extra_info": { "fi": "Musiikkiosasto, 1. krs" }, "name": { "fi": "Kirjailijavieraana Elina Annola" }, "short_description": { "fi": "Tikkurilan kirjasto saa 11.10. klo 18 kirjailijavieraakseen Elina Annolan. Annola kertoo uunituoreesta toisesta romaanistaan Kaikki lokakuun taivaat sekä keväällä 2022 ilmestyneestä esikoisteoksestaan Kunnes kukkivat puut." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:236073/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:240218", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 77073, "license": "cc_by", "created_time": "2022-01-10T16:19:11.807508Z", "last_modified_time": "2022-01-10T16:19:11.807539Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DF8A63D-E2EF-4CCC-BD13-7C51E3342F07}/91033", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/77073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-11T13:20:17.537316Z", "last_modified_time": "2022-08-13T20:19:48.843306Z", "date_published": "2022-05-01T21:00:00Z", "start_time": "2022-10-05T09:00:00Z", "end_time": "2022-10-05T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'102.0':36C '12.00':20C 'aart':32C 'asem':18C 'fm':9B,17C 'helm':25C 'helsing':3B,11C 'kanav':10B 'kaupunginkirjasto':4B,12C 'kelo':19C 'kirj':22C 'kirjasto':1A,13C,26C 'kokoelm':27C 'kuuntel':33C 'mhz':37C 'musauutuuks':24C 'musavarasto':31C 'net':39C 'ohjelm':7B,15C 'pääkaupunkiseudu':34C 'radio':6B 'radio-ohjelm':5B 'rol':8B,16C 'soiko':2A,14C 'taajuud':35C 'tarj':21C 'vinkkej':29C 'www.rollfm.fi':40C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele pääkaupunkiseudulla taajuudella 102.0 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": { "fi": "Roll FM 102.0 MHz & rollfm.fi" }, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Helsingin kaupunginkirjaston radio-ohjelma Roll FM -kanavalla." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:240218/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:240223", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 77073, "license": "cc_by", "created_time": "2022-01-10T16:19:11.807508Z", "last_modified_time": "2022-01-10T16:19:11.807539Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DF8A63D-E2EF-4CCC-BD13-7C51E3342F07}/91033", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/77073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-11T13:20:12.905245Z", "last_modified_time": "2022-08-13T20:19:44.722165Z", "date_published": "2022-05-01T21:00:00Z", "start_time": "2022-09-28T09:00:00Z", "end_time": "2022-09-28T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'102.0':36C '12.00':20C 'aart':32C 'asem':18C 'fm':9B,17C 'helm':25C 'helsing':3B,11C 'kanav':10B 'kaupunginkirjasto':4B,12C 'kelo':19C 'kirj':22C 'kirjasto':1A,13C,26C 'kokoelm':27C 'kuuntel':33C 'mhz':37C 'musauutuuks':24C 'musavarasto':31C 'net':39C 'ohjelm':7B,15C 'pääkaupunkiseudu':34C 'radio':6B 'radio-ohjelm':5B 'rol':8B,16C 'soiko':2A,14C 'taajuud':35C 'tarj':21C 'vinkkej':29C 'www.rollfm.fi':40C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele pääkaupunkiseudulla taajuudella 102.0 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": { "fi": "Roll FM 102.0 MHz & rollfm.fi" }, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Helsingin kaupunginkirjaston radio-ohjelma Roll FM -kanavalla." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:240223/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:240221", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 77073, "license": "cc_by", "created_time": "2022-01-10T16:19:11.807508Z", "last_modified_time": "2022-01-10T16:19:11.807539Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DF8A63D-E2EF-4CCC-BD13-7C51E3342F07}/91033", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/77073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-11T13:20:08.072946Z", "last_modified_time": "2022-08-13T20:19:41.001268Z", "date_published": "2022-05-01T21:00:00Z", "start_time": "2022-09-21T09:00:00Z", "end_time": "2022-09-21T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'102.0':36C '12.00':20C 'aart':32C 'asem':18C 'fm':9B,17C 'helm':25C 'helsing':3B,11C 'kanav':10B 'kaupunginkirjasto':4B,12C 'kelo':19C 'kirj':22C 'kirjasto':1A,13C,26C 'kokoelm':27C 'kuuntel':33C 'mhz':37C 'musauutuuks':24C 'musavarasto':31C 'net':39C 'ohjelm':7B,15C 'pääkaupunkiseudu':34C 'radio':6B 'radio-ohjelm':5B 'rol':8B,16C 'soiko':2A,14C 'taajuud':35C 'tarj':21C 'vinkkej':29C 'www.rollfm.fi':40C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele pääkaupunkiseudulla taajuudella 102.0 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": { "fi": "Roll FM 102.0 MHz & rollfm.fi" }, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Helsingin kaupunginkirjaston radio-ohjelma Roll FM -kanavalla." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:240221/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:240222", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 77073, "license": "cc_by", "created_time": "2022-01-10T16:19:11.807508Z", "last_modified_time": "2022-01-10T16:19:11.807539Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DF8A63D-E2EF-4CCC-BD13-7C51E3342F07}/91033", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/77073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-11T13:20:03.501852Z", "last_modified_time": "2022-08-13T20:19:37.030136Z", "date_published": "2022-05-01T21:00:00Z", "start_time": "2022-09-14T09:00:00Z", "end_time": "2022-09-14T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'102.0':36C '12.00':20C 'aart':32C 'asem':18C 'fm':9B,17C 'helm':25C 'helsing':3B,11C 'kanav':10B 'kaupunginkirjasto':4B,12C 'kelo':19C 'kirj':22C 'kirjasto':1A,13C,26C 'kokoelm':27C 'kuuntel':33C 'mhz':37C 'musauutuuks':24C 'musavarasto':31C 'net':39C 'ohjelm':7B,15C 'pääkaupunkiseudu':34C 'radio':6B 'radio-ohjelm':5B 'rol':8B,16C 'soiko':2A,14C 'taajuud':35C 'tarj':21C 'vinkkej':29C 'www.rollfm.fi':40C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele pääkaupunkiseudulla taajuudella 102.0 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": { "fi": "Roll FM 102.0 MHz & rollfm.fi" }, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Helsingin kaupunginkirjaston radio-ohjelma Roll FM -kanavalla." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:240222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:240217", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 77073, "license": "cc_by", "created_time": "2022-01-10T16:19:11.807508Z", "last_modified_time": "2022-01-10T16:19:11.807539Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DF8A63D-E2EF-4CCC-BD13-7C51E3342F07}/91033", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/77073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-11T13:19:58.846494Z", "last_modified_time": "2022-08-13T20:19:33.050828Z", "date_published": "2022-05-01T21:00:00Z", "start_time": "2022-09-07T09:00:00Z", "end_time": "2022-09-07T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'102.0':36C '12.00':20C 'aart':32C 'asem':18C 'fm':9B,17C 'helm':25C 'helsing':3B,11C 'kanav':10B 'kaupunginkirjasto':4B,12C 'kelo':19C 'kirj':22C 'kirjasto':1A,13C,26C 'kokoelm':27C 'kuuntel':33C 'mhz':37C 'musauutuuks':24C 'musavarasto':31C 'net':39C 'ohjelm':7B,15C 'pääkaupunkiseudu':34C 'radio':6B 'radio-ohjelm':5B 'rol':8B,16C 'soiko':2A,14C 'taajuud':35C 'tarj':21C 'vinkkej':29C 'www.rollfm.fi':40C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele pääkaupunkiseudulla taajuudella 102.0 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": { "fi": "Roll FM 102.0 MHz & rollfm.fi" }, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Helsingin kaupunginkirjaston radio-ohjelma Roll FM -kanavalla." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:240217/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:239310", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10691/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 82286, "license": "cc_by", "created_time": "2022-08-08T08:19:24.490959Z", "last_modified_time": "2022-08-08T08:19:24.490975Z", "name": "", "url": "https://www.helmet.fi/download/noname/{00113919-EDC1-4B50-A651-C5BBB3420A7E}/94911", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/82286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-08-08T08:19:24.478926Z", "last_modified_time": "2022-08-13T20:19:30.463802Z", "date_published": "2022-08-07T21:00:00Z", "start_time": "2022-09-01T15:00:00Z", "end_time": "2022-09-01T16:30:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'1.9.2022':43C '18.00':45C '2016':99C '2020':103C,163C 'adrenal':141C 'aikakaud':146C 'alu':11B 'aura':3A,17B,52C,81C,186C 'els':6A,20B,55C,127C,180C 'eläm':134C 'erikoiskirjastonhoitaj':176C 'esiintyj':170C 'esiintyv':86C 'esikoisteoks':159C 'fluxuks':156C 'fun':160C 'glamour':137C 'haastattel':171C 'haihattelij':91C 'helsinkiläin':84C 'hern':154C 'huikentelij':132C 'japan':120C 'jote':27B,62C 'julkai':158C 'julkais':124C 'julkaistu':94C 'juont':175C 'jänt':109C 'kaik':32B,67C 'kaks':14B,49C,95C 'kalev':108C 'karhu':168C 'kerto':116C 'kertyny':35B,70C 'kirjasto':79C 'klo':44C 'kohdistu':150C 'koler':98C 'kustantamo':123C 'kuva':179C,182C,188C 'lava':140C 'lava-adrenal':139C 'lavarunoilij':16B,51C 'leijonapats':101C 'lopu':23B,58C 'mannil':178C 'marj':177C 'mic':174C 'mik':24B,29B,59C,64C 'moottor':144C 'musiikkiosasto':80C 'myöhem':126C 'nurm':4A,18B,53C,82C,112C,187C 'oikkon':185C 'oona':184C 'ope':173C 'otav':102C,122C,189C 'otava-kustantamo':121C 'paik':73C 'palkino':110C,169C 'palkitu':85C 'parh':111C 'pelinört':89C 'performans':152C 'primaver':161C 'queer':118C 'queer-romans':117C 'romaan':114C 'romans':119C 'runoilij':87C,130C 'runoklub':2A,9B,39C 'runoteo':96C 'saam':12B,47C 'saanu':107C 'sai':166C 'sano':37B,72C 'sanomattom':36B,71C 'seikkailu':135C 'start':41C 'syyskau':40C 'syyskaud':10B 'taiteentekemis':143C 'tanssiv':167C 'tapa':77C 'tervetulo':28B,63C 'tikkuril':78C 'tiks':1A,8B,38C 'tilaisuud':22B,57C 'tutu':76C 'työst':113C 'tärähtäny':136C 'töl':7A,21B,56C,128C,157C,181C 'upeast':42C 'uteliaisuut':149C 'uude':145C 'uus':153C 'valjet':147C 'valovoim':15B,50C 'vanh':75C 'vapa':26B,61C 'vas':183C 'vekkul':88C 'vieraaks':13B,48C 'villieläim':97C,105C 'vuon':162C 'yhteis':151C 'ääre':30B,65C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tiksin Runoklubin syyskausi starttaa upeasti 1.9.2022 klo 18.00, kun saamme vieraaksemme kaksi valovoimaista lavarunoilijaa, Aura Nurmen ja Elsa Töllin! Tilaisuuden lopussa mikki on vapaa, joten tervetuloa mikin ääreen te kaikki, joille on kertynyt sanomattomia sanoja. Paikkana on vanhaan tuttuun tapaan Tikkurilan kirjaston musiikkiosasto.</p><p>Aura Nurmi on helsinkiläinen palkittu esiintyvä runoilija, vekkuli pelinörtti ja haihattelija. Häneltä on julkaistu kaksi runoteosta, Villieläimiä (Kolera 2016) ja Leijonapatsailla (Otava 2020). Näistä Villieläimiä on saanut Kalevi Jäntin palkinnon. Parhaillaan Nurmi työstää romaania, joka kertoo queer-romanssista Japanissa. Otava-kustantamo julkaisee sen myöhemmin.</p><p>Elsa Tölli on runoilija ja huikentelija, jolle elämän seikkailut, tärähtänyt glamour ja lava-adrenaliini ovat taiteentekemisen moottoreita. Uuden aikakauden valjetessa hänen uteliaisuutensa kohdistuu yhteiseen performanssiin, uusiin herneisiin ja fluxukseen. Tölli julkaisi esikoisteoksensa Fun Primavera vuonna 2020 ja se sai Tanssiva Karhu -palkinnon.</p><p>Esiintyjiä haastattelee ja open micin juontaa erikoiskirjastonhoitaja Marjo Mannila.</p><p>Kuvat: Elsa Töllin kuva (vas.) Oona Oikkonen, Aura Nurmen kuva Otava. </p>" }, "location_extra_info": { "fi": "Musiikkiosasto, 1. krs" }, "name": { "fi": "Tiksin runoklubilla Aura Nurmi ja Elsa Tölli" }, "short_description": { "fi": "Tiksin Runoklubin syyskauden aluksi saamme vieraaksemme kaksi valovoimaista lavarunoilijaa, Aura Nurmen ja Elsa Töllin! Tilaisuuden lopussa mikki on vapaa, joten tervetuloa mikin ääreen te kaikki, joille on kertynyt sanomattomia sanoja." }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:239310/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agbioqfdim", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9860/?format=api" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u02120030", "sub_events": [], "images": [ { "id": 82372, "license": "cc_by", "created_time": "2022-08-10T10:11:03.803197Z", "last_modified_time": "2022-08-10T10:15:36.157347Z", "name": "IMG_9141_Nobina.JPG", "url": "http://api.hel.fi/linkedevents/media/images/IMG_9141.JPG", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "IMG_9141_Nobina.JPG", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/82372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-08-10T10:15:36.556134Z", "last_modified_time": "2022-08-10T10:15:36.556170Z", "date_published": null, "start_time": "2022-08-18T10:00:00Z", "end_time": "2022-08-18T11:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'/toihin-nobinalle/opiskele-kuljettajaksi/rekrykoulutus/':180C '1.krs':197C '10.10':51C '11.7':173C '12.12.2022':52C '12.45':201C '2':107C '21':127C '29.8.2022':174C '34':196C '50':41C '600':108C 'aja':97C 'ajo':68C,138C 'ajo-oikeus':137C 'ajo-opetus':67C 'ajokorttiasetuks':154C 'ajokorttikoulutuks':55C 'al':28C,119C 'alanvaihtaj':30C,102C 'aloituspalk':103C 'asiakaspalvelutyö':23C,164C 'autonkuljettaj':6A,16C,63C 'b':132C 'c':135C 'c-luoka':134C 'd':57C 'd-luok':56C 'esim':120C 'hae':2A 'hake':112C 'hakuaik':170C 'hakuinfo':1A,7B,48C 'halua':162C 'huom':181C 'hyv':21C 'hyväksyty':92C 'ilmais':43C 'jälk':87C 'järjestäm':40C 'kamp':193C 'kaut':37C 'kiele':160C 'klo':200C 'koulutuks':91C 'koulutus':53C,80C 'kriteer':155C 'liittyv':65C 'linj':5A,15C,62C 'linja-autonkuljettaj':4A,14C,61C 'link':47C 'lisä':110C,176C 'lomautetu':121C 'lue':175C 'luok':58C 'luoka':136C 'mahdollin':143C 'mahdollisuut':32C 'maisemakonttor':24C 'malminkatu':195C 'monipuol':19C 'muita':60C 'mukais':100C 'määräaikais':123C 'neuvontapist':194C 'nob':8C 'nobin':3A,82C,94C 'oikeus':139C 'ole':198C 'olev':29C 'opetus':69C,146C 'opinto':66C 'oppilaitoks':73C 'oppisopimuks':95C 'osallistu':33C,45C,190C 'paika':199C 'palk':101C 'palkatu':22C 'perehdytys':76C 'plus':109C 'päivä':42C 'pääkaupunkiseudu':83C,104C 'pääse':184C 'reite':84C 'rekrykoulutuks':11C,44C,49C,86C,113C,171C,177C 'riittäv':158C 'riskienhallintakoulutus':148C 'saat':98C 'seuraam':186C 'sisält':54C 'suome':159C 'suorit':72C 'suoritetu':151C 'suorittanu':90C 'syventäv':144C 'taito':161C 'tapahtum':191C 'tapahtuv':79C 'tarj':31C 'tarjoa':9C 'te-toimisto':34C 'teams':185C 'tehd':163C 'tekem':168C 'teoriaopino':71C 'terveydentil':152C 'tilaisuut':187C 'toimisto':36C 'toteut':81C 'toteutus':50C 'tts':38C,74C 'tule':149C 'työ':17C 'työehtosopimuks':99C 'työhö':64C 'työllisty':93C 'työpaik':13C,78C 'työs':124C 'työssäoppimis':96C 'työtehoseur':39C,75C 'työttöm':25C 'työttömyysu':27C,118C 'työtö':116C 'täyt':153C 'vaihe':145C 'valmis':167C 'voit':111C,189C 'vuode':142C 'vuorotyö':169C 'vuotias':128C 'vähin':126C,140C 'www.nobina.fi':179C 'www.nobina.fi/toihin-nobinalle/opiskele-kuljettajaksi/rekrykoulutus/':178C 'yhd':141C 'yhteiskatsomo':192C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p><strong>Nobina tarjoaa sinulle RekryKoulutuksen ja työpaikan!</strong></p>\n<p>Linja-autonkuljettajan työ on monipuolista ja hyvin palkattua asiakaspalvelutyötä maisemakonttorissa. Työttömille tai työttömyysuhan alla oleville alanvaihtajille tarjoamme mahdollisuutta osallistua TE-toimiston kautta TTS Työtehoseuran järjestämään 50 päivän ilmaiseen RekryKoulutukseen.</p>\n<p><a href=\"https://teams.microsoft.com/dl/launcher/launcher.html?url=%2F_%23%2Fl%2Fmeetup-join%2F19%3Ameeting_NjAxNmJjZDMtN2Y4My00ZGEyLWEwZGYtNjBiN2QwOWEwYTA2%40thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%25223feb6bc1-d722-4726-966c-5b58b64df752%2522%252c%2522Oid%2522%253a%2522ccc5fb3d-b85b-46e6-aafb-f10ace488fd4%2522%257d%26anon%3Dtrue&type=meetup-join&deeplinkId=2ace9d23-7f45-463a-9c01-879875321b9b&directDl=true&msLaunch=true&enableMobilePage=true&suppressPrompt=true\"><strong>Osallistu tästä linkistä hakuinfoon >>></strong></a> </p>\n<p><strong>RekryKoulutuksen toteutus 10.10.-12.12.2022:</strong></p>\n<ul>\n<li>Koulutus sisältää ajokorttikoulutuksen D-luokkaan sekä muita linja-autonkuljettajan työhön liittyviä opintoja.</li>\n<li>Ajo-opetus ja teoriaopinnot suoritetaan oppilaitoksessa (TTS Työtehoseura). Perehdytys ja työpaikalla tapahtuva koulutus toteutetaan Nobinan pääkaupunkiseudun reiteillä.</li>\n</ul>\n<p><strong>Mitä RekryKoulutuksen jälkeen?</strong></p>\n<ul>\n<li>Kun olet suorittanut koulutuksen hyväksytysti, työllistyt Nobinalle oppisopimuksella.</li>\n<li>Työssäoppimisen ajalta saat työehtosopimuksen mukaisen palkan</li>\n<li>Alanvaihtajien aloituspalkka pääkaupunkiseudulla on noin 2 600 € plus lisät.</li>\n</ul>\n<p><strong>Voit hakea RekryKoulutukseen, jos:</strong></p>\n<ul>\n<li>Olet työtön tai työttömyysuhan alla (esim. lomautettu tai määräaikaisessa työssä)</li>\n<li>Olet vähintään 21-vuotias</li>\n<li>Sinulla on ollut B- tai C-luokan ajo-oikeus vähintään yhden vuoden (mahdollinen syventävän vaiheen opetus tai riskienhallintakoulutus tulee olla suoritettuna)</li>\n<li>Terveydentilasi täyttää ajokorttiasetuksen kriteerit</li>\n<li>Sinulla on riittävä suomen kielen taito</li>\n<li>Haluat tehdä asiakaspalvelutyötä ja olet valmis tekemään vuorotyötä</li>\n</ul>\n<p><strong>Hakuaika RekryKoulutukseen on 11.7.-29.8.2022</strong></p>\n<p>Lue lisää RekryKoulutuksesta:</p>\n<p><a href=\"https://www.nobina.fi/toihin-nobinalle/opiskele-kuljettajaksi/rekrykoulutus/\">https://www.nobina.fi/toihin-nobinalle/opiskele-kuljettajaksi/rekrykoulutus/</a> </p>\n<p><strong>Huom! </strong>Jos et pääse Teamsiin seuraamaan tilaisuutta, niin voit osallistua tapahtumaan yhteiskatsomossa Kampin neuvontapisteessä (Malminkatu 34, 1.krs). Olethan paikalla klo 12.45!</p>\n<p></p>\n<p></p>\n<p></p>" }, "location_extra_info": { "fi": "" }, "name": { "fi": "Hakuinfo: Hae Nobinalle linja-autonkuljettajaksi!" }, "short_description": { "fi": "Hakuinfo" }, "provider": { "fi": "" }, "info_url": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agbioqfdim/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:af4iecc2uy", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3917/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/?format=api" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 62225, "license": "event_only", "created_time": "2020-01-21T07:12:27.173333Z", "last_modified_time": "2021-12-27T07:44:09.901085Z", "name": "Travel as a Tool for Designer", "url": "http://api.hel.fi/linkedevents/media/images/muotoilija-kaf-franckin-val.jpg", "cropping": "439,0,1481,1042", "photographer_name": "Designmuseo (c) Kaj Franck", "alt_text": "Merimaisema, puita ja saaria", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/62225/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2021-03-30T07:28:08.898037Z", "last_modified_time": "2022-08-01T08:54:26.003607Z", "date_published": null, "start_time": "2020-06-01T08:00:00Z", "end_time": "2022-08-01T09:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'1940':45C 'a':3A 'arkkiteht':43C 'arvo':63C 'as':2A 'ast':48C 'ava':55C 'avu':53C 'designer':6A 'designmuseum.fi':68C 'en':64C 'etsity':32C 'for':5A 'inspiraatio':29C 'intern':67C 'keräty':28C 'kirjeenvaihdo':50C 'liittyv':62C 'luvu':46C 'materiaal':34C 'matkailu':56C 'matko':26C,44C 'matkustamis':8B,17C,61C 'merkity':57C 'mone':14B,23C 'muotoilij':41C 'muotoiluproses':58C 'nykyhetk':47C 'näyttely':38C 'osa':13B,22C,59C 'pohjoismaist':40C 'päiväkirj':49C 'rooli':12B,21C 'suunnittelij':15B,24C 'tarkastel':39C 'tool':4A 'travel':1A 'työtä':16B,25C 'tärk':11B,20C 'uus':33C 'vaikut':31C 'valmistusmenetelm':35C 'valokuv':52C 'virtuaalikierros':7A 'yhteistyökumppan':37C", "search_vector_en": "'1940s':72C '3d':7A 'architect':69C 'associ':98C 'collabor':56C 'correspond':81C 'day':76C 'describ':85C 'design':6A,20B,41C,67C,94C 'designmuseum.fi':108C 'diari':80C 'exhibit':58C 'import':13B,34C 'impuls':27B,48C 'inspir':25B,46C 'int':15B,36C 'internet':107C 'journey':64C 'mani':19B,40C 'manufactur':51C 'materi':29B,50C 'mean':87C 'method':52C 'new':28B,49C 'nordic':66C 'part':91C 'partner':54C 'past':103C 'photograph':83C 'present':60C,75C,106C 'process':95C 'refer':78C 'role':14B,35C 'sourc':23B,44C 'tool':4A 'tour':8A 'travel':1A,9B,30C,89C,100C 'trip':62C 'valu':97C 'work':17B,38C", "search_vector_sv": "'1940':57C '3d':7A 'a':3A 'arbet':20B,32C 'arkitek':54C 'as':2A 'betyd':70C 'dagböck':64C 'del':73C 'design':6A 'designer':19B,31C 'designmuseum.fi':84C 'designprocess':75C 'for':5A 'formgiv':52C 'fotografi':67C 'förr':80C 'gransk':49C 'hänvisning':62C 'idag':60C 'inspiration':38C 'internet':83C 'intryck':40C 'kompanjon':47C 'korrespond':65C 'let':41C 'material':44C 'mång':18B,30C 'nordisk':51C 'nya':43C 'olik':78C 'res':9B,11B,21C,23C,34C,55C 'resan':69C 'resandet':77C 'roll':16B,28C 'rundtur':8A 'saml':37C 'samt':76C 'spel':13B,25C 'stor':15B,27C 'talet':58C 'tillverkningsmetod':45C 'tool':4A 'travel':1A 'utställning':48C 'värd':79C 'öppn':68C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Matkustamisella on ollut tärkeä rooli osana monen suunnittelijan työtä. Matkoilta on kerätty inspiraatiota ja vaikutteita, etsitty uusia materiaaleja, valmistusmenetelmiä ja yhteistyökumppaneita.</p><p>Näyttely tarkastelee pohjoismaisten muotoilijoiden ja arkkitehtien matkoja 1940-luvulta nykyhetkeen asti. </p><p>Päiväkirjojen, kirjeenvaihdon ja valokuvien avulla se avaa matkailun merkitystä muotoiluprosessin osana ja matkustamiseen liittyviä arvoja ennen ja nyt. </p><p>Internet, designmuseum.fi</p>", "sv": "<p>Resandet och resor har spelat en stor roll i mången designers arbete. På resorna har man samlat inspiration och intryck, letat efter nya material, tillverkningsmetoder och kompanjoner. </p><p>Utställningen granskar de nordiska formgivarnas och arkitekternas resor från 1940-talet till idag. Med hänvisningar till dagböcker, korrespondens och fotografier öppnas resans betydelse som en del av designprocessen, samt resandets olika värden förr och nu. </p><p>Internet, designmuseum.fi</p>", "en": "<p>Travel has had an important role int the work of many designers as a source of inspiration and impulses, new materials, manufacturing methods and partners for collaboration. </p><p>The exhibition will present the trips and journeys of Nordic designers and architects from the 1940s to the present day. With reference to diaries, correspondence and photographs, it describes the meaning of travel as part of the design process and values associated with travel in the past and at present. </p><p>Internet, designmuseum.fi</p>" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "name": { "fi": "Travel as a Tool for Designer, virtuaalikierros", "sv": "Travel as a Tool for Designer, 3D rundtur", "en": "Travel as a Tool for Designer, 3D Tour" }, "short_description": { "fi": "Matkustamisella on ollut tärkeä rooli osana monen suunnittelijan työtä. ", "sv": "Resandet och resor har spelat en stor roll i mången designers arbete. ", "en": "Travel has had an important role int the work of many designers as a source of inspiration and impulses, new materials, " }, "provider": { "fi": "Designmuseo", "sv": "Designmuseet", "en": "Design Museum" }, "info_url": { "fi": "https://www.designmuseum.fi/fi/events/virtuaalikierros-nayttelyyn/", "sv": "https://www.designmuseum.fi/sv/events/3d-rundtur-av-travel-as-a-tool-utstallningen/", "en": "https://www.designmuseum.fi/en/events/3d-tour-of-the-travel-as-a-tool-exhibition/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af4iecc2uy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:235176", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10654/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 79540, "license": "cc_by", "created_time": "2022-05-02T21:19:39.974160Z", "last_modified_time": "2022-05-02T21:19:39.974181Z", "name": "", "url": "https://www.helmet.fi/download/noname/{264A421D-409A-47BA-B5A7-255A296CDF46}/93233", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/79540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-05-02T21:19:58.512813Z", "last_modified_time": "2022-07-30T08:18:39.492633Z", "date_published": "2022-05-01T22:00:00Z", "start_time": "2022-06-29T09:00:00Z", "end_time": "2022-06-29T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'105.8':32C '12.00':14C 'aalo':30C 'aart':26C 'asem':12C 'fm':11C 'helm':19C 'helsing':5C 'kaupunginkirjasto':6C 'kelo':13C 'kirj':16C 'kirjasto':1A,7C,20C 'kokoelm':21C 'kuuntel':27C 'mhz':33C 'musauutuuks':18C 'musavarasto':25C 'net':35C 'ohjelm':9C 'radio':29C 'radio-aalo':28C 'rol':10C 'soiko':2A,8C 'taajuud':4B,31C 'tarj':15C 'vinkkej':23C 'virittäydy':3B 'www.rollfm.fi':36C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele radio-aalloilla taajuudella 105.8 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": null, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Virittäydy taajuudelle!" }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:235176/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:235177", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10654/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 79540, "license": "cc_by", "created_time": "2022-05-02T21:19:39.974160Z", "last_modified_time": "2022-05-02T21:19:39.974181Z", "name": "", "url": "https://www.helmet.fi/download/noname/{264A421D-409A-47BA-B5A7-255A296CDF46}/93233", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/79540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-05-02T21:19:58.237549Z", "last_modified_time": "2022-07-23T08:18:14.996903Z", "date_published": "2022-05-01T22:00:00Z", "start_time": "2022-06-22T09:00:00Z", "end_time": "2022-06-22T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'105.8':32C '12.00':14C 'aalo':30C 'aart':26C 'asem':12C 'fm':11C 'helm':19C 'helsing':5C 'kaupunginkirjasto':6C 'kelo':13C 'kirj':16C 'kirjasto':1A,7C,20C 'kokoelm':21C 'kuuntel':27C 'mhz':33C 'musauutuuks':18C 'musavarasto':25C 'net':35C 'ohjelm':9C 'radio':29C 'radio-aalo':28C 'rol':10C 'soiko':2A,8C 'taajuud':4B,31C 'tarj':15C 'vinkkej':23C 'virittäydy':3B 'www.rollfm.fi':36C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele radio-aalloilla taajuudella 105.8 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": null, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Virittäydy taajuudelle!" }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:235177/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:235179", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10654/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 79540, "license": "cc_by", "created_time": "2022-05-02T21:19:39.974160Z", "last_modified_time": "2022-05-02T21:19:39.974181Z", "name": "", "url": "https://www.helmet.fi/download/noname/{264A421D-409A-47BA-B5A7-255A296CDF46}/93233", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/79540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-05-02T21:19:57.812032Z", "last_modified_time": "2022-07-16T08:17:34.168635Z", "date_published": "2022-05-01T22:00:00Z", "start_time": "2022-06-15T09:00:00Z", "end_time": "2022-06-15T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'105.8':32C '12.00':14C 'aalo':30C 'aart':26C 'asem':12C 'fm':11C 'helm':19C 'helsing':5C 'kaupunginkirjasto':6C 'kelo':13C 'kirj':16C 'kirjasto':1A,7C,20C 'kokoelm':21C 'kuuntel':27C 'mhz':33C 'musauutuuks':18C 'musavarasto':25C 'net':35C 'ohjelm':9C 'radio':29C 'radio-aalo':28C 'rol':10C 'soiko':2A,8C 'taajuud':4B,31C 'tarj':15C 'vinkkej':23C 'virittäydy':3B 'www.rollfm.fi':36C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele radio-aalloilla taajuudella 105.8 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": null, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Virittäydy taajuudelle!" }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:235179/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:aga6yb4ihm", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3322/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9860/?format=api" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u02120030", "sub_events": [], "images": [ { "id": 74782, "license": "cc_by", "created_time": "2021-10-22T11:31:16.306633Z", "last_modified_time": "2021-10-22T11:31:55.676241Z", "name": "Kontti kuva.JPG", "url": "http://api.hel.fi/linkedevents/media/images/Kontti_kuva.JPG", "cropping": "228,0,972,743", "photographer_name": "", "alt_text": "kontin esittelyteksti", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/74782/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-07-11T06:52:05.579294Z", "last_modified_time": "2022-07-11T06:52:05.579330Z", "date_published": null, "start_time": "2022-08-11T10:00:00Z", "end_time": "2022-08-11T11:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'1.krs':180C '12.45':184C '34':179C 'alkav':84C 'alkulajittelu':23C,64C 'aloit':118C 'ase':122C 'asiakaspalveluhalu':124C 'asio':140C 'aukioloaiko':69C,108C 'avustustyö':40C 'edu':126C 'eri':93C 'erityis':9C,49C 'haem':7C,45C 'hake':72C 'hakemuks':157C 'hakumenettely':144C 'helsing':1A,4B,47C 'henkilö':76C 'henkilökunt':8C,46C 'huom':162C 'kaik':67C 'kamp':176C 'kan':110C 'kerto':130C 'ketju':29C 'kiele':115C 'klo':183C 'kod':14C,54C 'kont':2A,5B,24C,35C,48C,70C,77C,87C 'kuljetustehtäv':12C,52C 'kyse':139C 'lait':155C 'lisäkoulutu':95C 'lisätieto':127C 'lyhye':85C,119C 'm':22C,63C 'maailm':43C 'mahdollisuus':89C,138C,172C 'mahdollisuut':102C,105C 'malminkatu':178C 'muita':20C,61C 'myymäl':68C,107C 'myymälö':28C 'myös':19C,60C,80C,136C,143C 'nettirekry':128C 'nettirekryy':147C 'neuvontapist':177C 'ohj':37C 'oikeutetu':75C 'osa':31C 'osallistu':145C,173C 'osallistum':151C 'osasto':17C,57C 'osoit':160C 'paika':182C 'palkkatuk':74C,104C 'positiivin':121C 'pukeutumis':16C,56C 'puna':33C 'punais':38C 'pääse':150C,165C 'rekry.helsinginkontti@punainenristi.fi':161C 'rekrytoi':3A,6B 'riittäv':111C 'rist':34C,39C 'saada':90C 'secondhand':27C 'secondhand-myymälö':26C 'seuraam':167C 'siivous':10C,50C 'sov':142C 'suome':32C,41C,114C 'suunnittelu':99C 'taito':116C 'tapahtum':141C,152C,174C 'tarj':18C,58C 'tarkem':131C 'teams':166C 'tehd':66C 'tehtäv':21C,62C,94C,109C,132C 'tilaisuut':168C 'toivo':100C 'tuke':97C 'tule':181C 'tulevaisuud':98C 'tulos':36C 'työkokeilu':81C,120C 'työkokeilujakso':86C 'työkokemu':91C 'työkyky':112C 'työsken':79C,106C 'työsuht':83C 'työtä':65C 'täyte':73C,103C 'use':92C 'valmiut':117C 'vapaamuotois':156C 'voi':71C,78C 'voit':154C 'yhteiskatsomo':175C 'yhteydenottopyynö':159C 'yritys':129C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p><strong>Haemme henkilökuntaa erityisesti siivous- ja kuljetustehtäviin sekä kodin ja pukeutumisen osastoille. Tarjolla myös muita tehtäviä, mm. alkulajittelussa.</strong></p>\n<p>Kontti on secondhand-myymälöiden ketju ja osa Suomen Punaista Ristiä. Kontin tulos ohjataan Punaisen Ristin avustustyöhön Suomessa ja maailmalla.</p>\n<p>Nyt haemme henkilökuntaa Helsingin Konttiin erityisesti siivous- ja kuljetustehtäviin sekä kodin ja pukeutumisen osastoille. Tarjolla on myös muita tehtäviä, mm. alkulajittelussa. Työtä tehdään kaikkina myymälän aukioloaikoina.</p>\n<p>Konttiin voi hakea täyteen palkkatukeen oikeutettu henkilö. Kontissa voi työskennellä myös työkokeilussa, ja työsuhteetkin alkavat lyhyellä työkokeilujaksolla. Kontissa on mahdollisuus saada työkokemusta useista eri tehtävistä, lisäkoulutusta sekä tukea tulevaisuuden suunnitteluun.</p>\n<p><strong>Toivomme sinulta:</strong></p>\n<p>• mahdollisuutta täyteen palkkatukeen</p>\n<p>• mahdollisuutta työskennellä myymälän aukioloaikoina</p>\n<p>• tehtävien kannalta riittävää työkykyä ja suomen kielen taitoa</p>\n<p>• valmiutta aloittaa lyhyellä työkokeilulla</p>\n<p>• positiivinen asenne ja asiakaspalveluhalu on eduksi</p>\n<p><strong>Lisätietoja: </strong>Nettirekryssä yritys kertoo tarkemmin tehtävistä, ja sinulla on myös itse mahdollisuus kysellä asioista. Tapahtumassa sovitaan myös hakumenettelystä.</p>\n<p><a href=\"https://teams.microsoft.com/dl/launcher/launcher.html?url=%2F_%23%2Fl%2Fmeetup-join%2F19%3Ameeting_OTgyOTdhNjQtNmRmNy00NWFhLTg2ZDQtOGVmN2QxNDZlZWI2%40thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%25223feb6bc1-d722-4726-966c-5b58b64df752%2522%252c%2522Oid%2522%253a%2522ccc5fb3d-b85b-46e6-aafb-f10ace488fd4%2522%257d%26anon%3Dtrue&type=meetup-join&deeplinkId=a8597526-42ad-4837-a158-84b7a20a3577&directDl=true&msLaunch=true&enableMobilePage=true&suppressPrompt=true\"><strong>>>> Osallistu tästä nettirekryyn >>> </strong></a> </p>\n<p>Jos et pääse osallistumaan tapahtumaan, niin voit laittaa vapaamuotoisen hakemuksen tai yhteydenottopyynnön osoitteeseen: <a href=\"mailto:rekry.helsinginkontti@punainenristi.fi\">rekry.helsinginkontti@punainenristi.fi</a> </p>\n<p><strong>Huom!</strong> Jos et pääse Teamsiin seuraamaan tilaisuutta, niin sinulla on mahdollisuus osallistua tapahtumaan yhteiskatsomossa Kampin neuvontapisteessämme (Malminkatu 34, 1.krs). Tulethan paikalle klo 12.45</p>" }, "location_extra_info": { "fi": "" }, "name": { "fi": "Helsingin Kontti rekrytoi!" }, "short_description": { "fi": "Helsingin Kontti rekrytoi!" }, "provider": { "fi": "" }, "info_url": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aga6yb4ihm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:235178", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10654/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 79540, "license": "cc_by", "created_time": "2022-05-02T21:19:39.974160Z", "last_modified_time": "2022-05-02T21:19:39.974181Z", "name": "", "url": "https://www.helmet.fi/download/noname/{264A421D-409A-47BA-B5A7-255A296CDF46}/93233", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/79540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2022-05-02T21:19:57.031274Z", "last_modified_time": "2022-07-09T08:17:40.246765Z", "date_published": "2022-05-01T22:00:00Z", "start_time": "2022-06-08T09:00:00Z", "end_time": "2022-06-08T10:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'105.8':32C '12.00':14C 'aalo':30C 'aart':26C 'asem':12C 'fm':11C 'helm':19C 'helsing':5C 'kaupunginkirjasto':6C 'kelo':13C 'kirj':16C 'kirjasto':1A,7C,20C 'kokoelm':21C 'kuuntel':27C 'mhz':33C 'musauutuuks':18C 'musavarasto':25C 'net':35C 'ohjelm':9C 'radio':29C 'radio-aalo':28C 'rol':10C 'soiko':2A,8C 'taajuud':4B,31C 'tarj':15C 'vinkkej':23C 'virittäydy':3B 'www.rollfm.fi':36C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupunginkirjaston Kirjasto soikoon! -ohjelma Roll FM -asemalla kello 12.00.</p><p>Tarjolla kirja- ja musauutuuksia Helmet -kirjastojen kokoelmista sekä vinkkejä ja musavaraston aarteita. Kuuntele radio-aalloilla taajuudella 105.8 MHZ tai netissä <a href=\"https://www.rollfm.fi/?fbclid=IwAR0QpUAj4yk2_0X48_8EhPf0tRtmHvjjkUeL5HxfzGmRo13UqEaVffcBJtw\">https://www.rollfm.fi</a></p>" }, "location_extra_info": null, "name": { "fi": "Kirjasto soikoon!" }, "short_description": { "fi": "Virittäydy taajuudelle!" }, "provider": null, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:235178/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:aga5zjrmf4", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p817/?format=api" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/1SjDIEqt6", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 81654, "license": "event_only", "created_time": "2022-07-08T07:10:31.743485Z", "last_modified_time": "2022-07-08T07:11:26.607530Z", "name": "Lounastauko-keskustelu: Mitä jos? Toisenlaisia tulevaisuuksia", "url": "http://api.hel.fi/linkedevents/media/images/Mita_jos.jpg", "cropping": "325,0,875,550", "photographer_name": "© Good Kombo", "alt_text": "Kysymys merkki sumennettua taustaa vasten", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/81654/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-07-08T07:11:26.791807Z", "last_modified_time": "2022-07-08T07:11:26.791836Z", "date_published": null, "start_time": "2022-09-08T21:01:00Z", "end_time": "2022-09-09T20:59:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'/e/lounastauko-keskustelu-mita-jos-toisenlaisia-tulevaisuuksia-tickets-375904439297':223C '13':209C '9.9.2022':45C,207C 'ajattelu':100C 'ala':149C 'alust':81C 'aut':105C 'avajaispäiv':20B,33C 'avautu':39C 'beilinso':161C 'cal':37C 'club':35C 'dario':177C 'desig':34C,43C 'designmuseo':8B,21C,40C,88C,119C 'dufv':68C 'edeltän':49C 'efe':184C 'ehk':117C 'eläm':144C 'eri':195C 'facebook':90C 'facebook-tapahtum':89C 'fem':180C 'galleria':41C 'gallerianäyttely':121C 'graafin':156C 'hahmottam':106C 'heiko':129C 'helsink':42C 'ilmiö':139C 'ilmoittautumin':220C 'ilmoittautun':219C 'intern':205C 'iren':75C,168C 'johtav':65C 'kalio':189C 'kaupung':201C 'kaupunkimaantieteilij':187C 'kaut':197C 'keskustelu':3A,11B,24C,46C,61C,77C 'kiia':160C 'klo':208C 'koht':101C 'konkretisoimis':53C 'koto':199C 'kuude':194C 'kuule':47C 'kuvanveistäj':170C 'kärkkäin':165C 'kärkkäinen-tunkelo':164C 'käsittelev':192C 'käydä':78C 'link':217C 'live':86C 'lounastau':2A,10B,23C 'lounastauko-keskustelu':1A,9B,22C 'luono':200C 'luova':148C 'lähet':218C 'mahdollis':142C 'maksuto':211C 'martins':72C 'mediataitelij':172C 'metaversum':204C 'miko':67C 'mil':188C 'mon':110C 'muka':63C,154C 'muotoilij':176C 'myös':87C 'nähd':146C 'näyttely':17B,19B,30C,32C,48C,69C,125C,145C,190C 'ogbeid':185C 'ole':118C 'ope':36C 'pasi':163C 'pe':206C 'peko':173C 'peruskysymyks':97C 'perustaj':182C 'planning':181C 'pohd':55C 'pohjautu':126C 'pohtim':123C 'päättäm':202C 'rohk':122C 'sara':71C 'seitsem':147C 'selvityks':131C 'seura':85C 'signaal':130C 'sitr':64C,128C 'suomenkielin':214C 'suosalo':76C,169C 'suunnittelij':157C,162C 'suunnittelumaantieteilij':183C 'syksy':120C 'taideteollin':175C 'taiteilij':159C 'tapahtum':91C 'tausto':18B,31C 'teema':196C 'tekij':150C 'teoks':191C 'tilaisuus':212C 'toisenlais':6A,15B,28C,115C,152C 'toisenlaist':51C 'tulevaisuud':137C 'tulevaisuuks':7A,16B,29C,52C,103C,108C,153C 'tulevaisuusajattelu':57C,96C 'tulevaisuusasiantuntij':66C 'tulevaisuustalo':127C 'tulevaisuut':124C,193C 'tulkin':151C 'tulkitu':136C 'tunkelo':166C 'tunnistetu':134C 'tuottaj':70C 'tutustu':12B,25C 'tärkeä':60C 'töis':198C 'vaikutuks':143C 'vasantol':174C 'vidal':178C 'videotaiteilij':74C 'videotaitelij':167C 'vie':99C 'voi':84C 'voittajanäyttely':38C 'voiva':113C 'week':44C 'www.eventbrite.fi':222C 'www.eventbrite.fi/e/lounastauko-keskustelu-mita-jos-toisenlaisia-tulevaisuuksia-tickets-375904439297':221C 'yhteismuotoiluproses':50C 'yks':95C 'ylip':58C 'yllättäv':102C,138C 'zoom':80C,210C,216C 'zoom-alust':79C 'zoom-link':215C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Designmuseon Lounastauko-keskustelussa tutustutaan Mitä jos? Toisenlaisia tulevaisuuksia -näyttelyn taustoihin näyttelyn avajaispäivänä. Design Club Open Callin voittajanäyttely avautuu Designmuseon Galleriassa Helsinki Design Weekillä 9.9.2022.<br><br>Keskustelussa kuulemme näyttelyä edeltäneestä yhteismuotoiluprosessista, toisenlaisten tulevaisuuksien konkretisoimisesta sekä pohdimme, miksi tulevaisuusajattelu ylipäätään on tärkeää. Keskustelussa ovat mukana Sitran johtava tulevaisuusasiantuntija Mikko Dufva, näyttelyn tuottaja Sara Martinsen sekä videotaiteilija Irene Suosalo.<br><br>Keskustelu käydään Zoom-alustalla, ja sitä voi seurata livenä myös Designmuseon Facebook-tapahtumassa.<br><br>“Mitä jos?” on yksi tulevaisuusajattelun peruskysymyksistä, joka vie ajattelua kohti yllättävämpiä tulevaisuuksia. Se auttaa hahmottamaan, että tulevaisuuksia on monia ja ne voivat olla toisenlaisia, kuin ehkä oletamme. Designmuseon syksyn gallerianäyttelyssä rohkaistaan pohtimaan tulevaisuutta. Näyttely pohjautuu tulevaisuustalo Sitran Heikot signaalit -selvitykseen, jossa on tunnistettu ja tulkittu tulevaisuuden yllättäviä ilmiöitä sekä niiden mahdollisia vaikutuksia elämäämme.<br><br>Näyttelyssä nähdään seitsemän luovan alan tekijän tulkinta toisenlaisista tulevaisuuksista. Mukana ovat graafinen suunnittelija ja taiteilija Kiia<br>Beilinson, suunnittelija Pasi Kärkkäinen-Tunkelo, videotaitelija Irene Suosalo, kuvanveistäjä ja mediataitelija Pekko Vasantola, taideteollinen muotoilija Dario Vidal sekä Femma Planningin perustajat suunnittelumaantieteilijä Efe Ogbeide ja kaupunkimaantieteilijä Milla Kallio. Näyttelyn teokset käsittelevät tulevaisuutta kuuden eri teeman kautta: töissä, kotona, luonnossa, kaupungilla, päättämässä ja metaversumissa. <br><br>Internet <br>Pe 9.9.2022 klo 13 (Zoom)<br><br>Maksuton, tilaisuus on suomenkielinen, Zoom-linkki lähetetään ilmoittautuneille<br>Ilmoittautuminen: <a href=\"https://www.eventbrite.fi/e/lounastauko-keskustelu-mita-jos-toisenlaisia-tulevaisuuksia-tickets-375904439297\">https://www.eventbrite.fi/e/lounastauko-keskustelu-mita-jos-toisenlaisia-tulevaisuuksia-tickets-375904439297</a> </p>" }, "location_extra_info": { "fi": "" }, "name": { "fi": " Lounastauko-keskustelu: Mitä jos? Toisenlaisia tulevaisuuksia" }, "short_description": { "fi": "Designmuseon Lounastauko-keskustelussa tutustutaan Mitä jos? Toisenlaisia tulevaisuuksia -näyttelyn taustoihin näyttelyn avajaispäivänä." }, "provider": { "fi": "Designmuseo" }, "info_url": { "fi": "https://www.designmuseum.fi/fi/events/lounastauko-keskustelu-mita-jos-toisenlaisia-tulevaisuuksia/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aga5zjrmf4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agay73ep4e", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13463/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9607/?format=api" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u02120030", "sub_events": [], "images": [ { "id": 81211, "license": "cc_by", "created_time": "2022-06-23T09:35:41.767955Z", "last_modified_time": "2022-06-23T09:37:33.929216Z", "name": "etela-haaga_kirjasto_230421_kuva_jussi_hellsten_0693_Rajattu.jpg", "url": "http://api.hel.fi/linkedevents/media/images/etela-haaga_kirjasto_230421_kuva_jussi_hellsten_0693_Rajattu_9sEQ0EI.jpg", "cropping": "228,0,972,745", "photographer_name": "", "alt_text": "etela-haaga_kirjasto_230421_kuva_jussi_hellsten_069", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/81211/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-06-23T09:37:34.197103Z", "last_modified_time": "2022-07-06T06:23:25.431361Z", "date_published": null, "start_time": "2022-09-20T10:00:00Z", "end_time": "2022-09-20T12:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-13':173C '-16':166C '1.12.2022':31C '12':165C '12.00':121C '12.9':163C '13.00':98C '13.9':170C '15.00':99C '2.krs':128C '20.9.2022':96C '2022':118C '22.9':117C '23':179C '25':41C,220C '2kk':49C '3.10':30C '34':127C '9':172C '9.00':120C 'a2':180C 'aikuisopisto':28C,64C 'ala':6A,10C,19C,71C,193C,213C 'ale':81C 'alk':47C 'ammat':26C,62C 'ao':177C 'apu':151C 'asiak':205C 'asiantuntij':228C 'aula':183C 'avu':4A 'citymark':89C 'cv':134C,152C 'easto':90C 'elanto':80C 'en':142C 'haastattelu':112C,114C,130C,141C 'hae':184C 'hakemuks':132C,155C 'hakuinfo':93C,94C,143C 'halua':190C 'helsing':22C,122C,226C 'helsinkiläis':43C,222C 'hok':79C 'hok-elanto':78C 'ikärajapas':208C 'ilmoittautumis':113C 'järjest':115C,162C 'järjestäv':29C 'k':88C 'k-citymark':87C 'kamp':124C 'kaupa':1A,5A,9C,12C,18C,20C,32C,37C,70C,74C,158C,186C,192C,200C,212C 'kertov':102C 'kiinnost':7C 'kiinnostun':39C 'klo':97C,119C,164C,171C 'kohderyhm':218C 'kohtaamis':206C 'kuulu':55C 'liito':21C 'lisä':196C 'loka':51C 'loka-marrasku':50C 'luok':167C,174C 'lähiopetuspäiv':60C,215C 'mahdollisuus':146C,232C 'malminkatu':126C 'mark':84C 'marrasku':52C 'muka':73C,140C 'muutam':56C 'n':153C 'neuvontapist':125C 'nouda':181C 'ohj':111C 'ohjelm':3A,14C,36C,67C,76C,188C 'olev':104C 'osallistu':11C,91C,147C,182C,233C 'ota':138C 'perehdytys':35C 'perehdytys-ohjelm':34C 'perehtym':58C 'polku':2A,13C,33C,75C,159C,187C 'prism':85C 'päiv':129C 'päätyty':68C 's':83C 's-mark':82C 'saada':195C 'saat':150C 'sama':17C 'si':135C 'sisältyv':216C 'sisälö':108C 'stad':25C,61C,176C 'suorit':207C 'tarj':103C 'tarkem':110C 'tavoit':65C 'teams':100C 'teb120':168C 'tec21':175C 'tehtäv':46C,107C,201C,214C 'tekemis':156C 'teollisuuskatu':178C 'tieto':197C 'tiist':95C 'torst':116C 'tukev':59C 'tutustu':191C 'työeläm':203C 'työhaastattelu':160C 'työhö':57C,194C 'työkokeilu':48C,234C 'työkokeiluai':217C 'työkokeilupaiko':105C 'työllisty':16C,69C,211C 'työllisyyspalvelu':23C,123C,227C 'työnhakij':45C,224C 'työnhakupaj':148C,161C 'työskentely':8C 'työttöm':44C,223C 'työturvallisuuskort':210C 'töis':38C 'valm':136C 'valmiuks':199C 'varm':225C 'varmuut':204C 'vart':131C 'vuotia':42C,221C 'yrityks':72C,101C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p><strong>Kiinnostaako työskentely kaupan alalla? Osallistu Kaupan polku -ohjelmaan ja työllisty samalla kaupan alalle!</strong></p>\n<p>Kaupan liitto, Helsingin työllisyyspalvelut ja Stadin ammatti- ja aikuisopisto järjestävät 3.10. – 1.12.2022 Kaupan polku -perehdytys-ohjelman kaupan töistä kiinnostuneille yli 25-vuotiaille helsinkiläisille työttömille työnhakijoille.</p>\n<p>Tehtävä alkaa työkokeiluna (2kk) loka-marraskuussa ja siihen kuuluu muutamia työhön perehtymistä tukevia lähiopetuspäiviä Stadin ammatti- ja aikuisopistossa. Tavoitteena on ohjelman päätyttyä työllistyä kaupan alan yritykseen. <strong>Mukana Kaupan polku -ohjelmassa ovat HOK-Elanto (Alepa, S-Market, Prisma) ja K-Citymarket Easton.</strong></p>\n<p><a href=\"https://teams.microsoft.com/dl/launcher/launcher.html?url=%2F_%23%2Fl%2Fmeetup-join%2F19%3Ameeting_NGIzN2U1Y2YtNTI3NC00ZWZhLWI5MTUtZTkyZDc0MGExYzk4%40thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%25223feb6bc1-d722-4726-966c-5b58b64df752%2522%252c%2522Oid%2522%253a%2522149d5e9b-9a40-4782-9581-00a32f7e63ad%2522%257d%26anon%3Dtrue&type=meetup-join&deeplinkId=27c49a71-4b0c-46a8-8d4b-319e6957e96f&directDl=true&msLaunch=true&enableMobilePage=true&suppressPrompt=true\"><strong>Osallistu tästä hakuinfoon >>></strong></a> </p>\n<p><strong>Hakuinfossa tiistaina 20.9.2022 klo 13.00–15.00 (Teams) </strong>yritykset kertovat tarjolla olevista työkokeilupaikoista ja tehtävien sisällöistä sekä tarkemmat ohjeet haastatteluihin ilmoittautumisesta.</p>\n<p><strong>Haastattelut järjestetään torstaina 22.9. 2022 klo 9.00–12.00 Helsingin työllisyyspalvelut, Kampin neuvontapiste</strong> (Malminkatu 34, 2.krs). Päivitä haastattelua varten hakemuksesi ja CV:si valmiiksi, ja ota ne mukaasi haastatteluun.</p>\n<p><strong>Ennen hakuinfoa sinulla on mahdollisuus osallistua työnhakupajaan</strong>, jossa saat apua CV:n ja hakemuksen tekemiseen sekä Kaupan polku -työhaastatteluun. Työnhakupajat järjestetään 12.9. klo 12-16 (luokka TEB120) ja 13.9. klo 9-13 (luokka Tec21) Stadin AO, Teollisuuskatu 23 A2. Noudamme osallistujat aulasta.</p>\n<p><strong>Hae mukaan Kaupan polku -ohjelmaan, jos haluat:</strong></p>\n<ul>\n<li>Tutustua kaupan alan työhön</li>\n<li>Saada lisää tietoa ja valmiuksia kaupan tehtävistä ja työelämästä</li>\n<li>Varmuutta asiakkaiden kohtaamiseen</li>\n<li>Suorittaa ikärajapassin ja työturvallisuuskortin</li>\n<li>Työllistyä kaupan alan tehtäviin</li>\n</ul>\n<p>Lähiopetuspäivät sisältyvät työkokeiluaikaan.</p>\n<p><strong>Kohderyhmä:</strong> Yli 25 -vuotiaat <strong>helsinkiläiset</strong> työttömät työnhakijat. Varmista Helsingin työllisyyspalveluiden asiantuntijalta, että sinulla on mahdollisuus osallistua työkokeiluun.</p>\n<p></p>" }, "location_extra_info": { "fi": "" }, "name": { "fi": "Kaupan polku -ohjelman avulla kaupan alalle!" }, "short_description": { "fi": "-" }, "provider": { "fi": "Helsingin työllisyyspalvelut" }, "info_url": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agay73ep4e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agaxdbfdbe", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13463/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p478/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/?format=api" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9607/?format=api" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u02120030", "sub_events": [], "images": [ { "id": 81079, "license": "cc_by", "created_time": "2022-06-20T11:02:27.696580Z", "last_modified_time": "2022-06-20T11:02:52.148857Z", "name": "7E7A0669.jpg", "url": "http://api.hel.fi/linkedevents/media/images/7E7A0669.jpg", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "7E7A0669.jpg", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/81079/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-06-17T11:55:26.873791Z", "last_modified_time": "2022-07-05T07:39:56.657632Z", "date_published": null, "start_time": "2022-08-04T10:00:00Z", "end_time": "2022-08-04T11:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'16':57C '18':123C '2':40C '2.12.2022':87C,94C '21.12.2022':102C '25.11.2022':79C '3.10':101C '5':85C '5.9':78C,93C '6':41C '9':56C,86C 'a2.1':111C 'aika':16C,61C 'aikuisopisto':53C 'ala':73C 'ammat':51C 'ao':137C 'avoin':7C,69C 'eri':30C 'fyysin':120C 'haku':6C,68C 'hakuinfo':132C 'halu':112C 'haluav':23C 'helsink':127C 'helsinkiläis':19C 'hetk':67C 'hyvä':119C 'ikä':125C 'iltapäiväkerhon':95C 'järjest':14C,28C 'kaupa':72C 'kiele':107C 'klo':55C 'kohtuullin':105C 'kokopäiv':48C 'kotikun':126C 'koulutuks':18C,27C,37C,71C,104C 'koulutusaik':77C,84C,92C,100C 'kunto':121C 'kuukaut':42C 'lisätieto':133C,135C 'lukutaito':110C 'lyhy':39C 'lyhytkoulutuks':11C 'maaha':75C,82C,90C,98C 'maahanmuuttaj':21C 'muuttan':76C,83C,91C,99C 'nope':1A 'nopeast':25C 'ohjaaj':96C 'opiskelu':43C 'osaaj':3A 'osaamiskeskuks':10C,139C 'osaamiskeskus':13C 'osallistu':130C 'päivittäin':62C 'pääs':24C,113C 'reit':2A 'riipu':64C 'ruokapalvelutyöntekij':80C 'seuraav':70C 'stad':9C,12C,50C,136C,138C 'suome':45C,106C 'suullin':108C 'syksy':15C 'tapahtu':44C 'tarvittav':117C 'teoriaosuus':49C 'toimipaik':54C 'työaika':63C 'työeläm':26C,114C 'työharjoittelu':36C,60C 'työnantaj':31C 'työnhaku':128C 'työpaik':65C 'työsken':116C 'työttöm':20C 'työvoimakoulutuks':134C 'työvoimakoulutus':4A,74C,81C,89C,97C 'työvuoro':118C 'täl':66C 'use':8C,17C 'valintakriteer':103C 'valmius':115C 'varastoal':88C 'voima':129C 'vuode':124C 'vähin':122C 'väl':58C 'yhteistyö':29C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p><strong>Nyt haku avoinna useisiin Stadin osaamiskeskuksen lyhytkoulutuksiin!</strong></p>\n<p>Stadin osaamiskeskus järjestää syksyn aikana useita koulutuksia helsinkiläisille työttömille maahanmuuttajille, jotka haluavat päästä nopeasti työelämään. Koulutukset järjestetään yhteistyössä eri työnantajien kanssa ja niissä on työharjoittelu. </p>\n<p>Koulutukset ovat lyhyitä: 2–6 kuukautta. Opiskelu tapahtuu suomeksi ja on kokopäivästä: teoriaosuus Stadin ammatti- ja aikuisopiston toimipaikassa klo 9–16 välillä ja työharjoittelun aikana päivittäinen työaika riippuu työpaikasta.</p>\n<p><strong>Tällä hetkellä haku avoinna seuraaviin koulutuksiin:</strong></p>\n<ul>\n<li><a href=\"https://stadinao.fi/stadin-osaamiskeskus/kaikki-koulutukset/hot-right-now/kaupan-alan-tyovoimakoulutus/\">Kaupan alan työvoimakoulutus</a> maahan muuttaneille (Koulutusaika: 5.9.–25.11.2022) </li>\n<li><a href=\"https://stadinao.fi/stadin-osaamiskeskus/kaikki-koulutukset/hot-right-now/ruokapalvelu-syksy-2022/\">Ruokapalvelutyöntekijän työvoimakoulutus</a> maahan muuttaneille (Koulutusaika: 5. 9 .–2.12.2022) </li>\n<li><a href=\"https://stadinao.fi/stadin-osaamiskeskus/kaikki-koulutukset/hot-right-now/varastoalan-tvk/\">Varastoalan työvoimakoulutus</a> maahan muuttaneille (Koulutusaika: 5.9.–2.12.2022) </li>\n<li><a href=\"https://stadinao.fi/stadin-osaamiskeskus/kaikki-koulutukset/hot-right-now/iltapaivakerhon-ohjaaja/\">Iltapäiväkerhon ohjaajan työvoimakoulutus</a> maahan muuttaneille (Koulutusaika: 3.10. –21.12.2022) </li>\n</ul>\n<p><strong>Valintakriteerit koulutuksiin:</strong></p>\n<ul>\n<li>Kohtuullinen suomen kielen suullinen ja lukutaito (A2.1)</li>\n<li>Halu päästä työelämään</li>\n<li>Valmius työskennellä tarvittavissa työvuoroissa</li>\n<li>Hyvä fyysinen kunto</li>\n<li>Vähintään 18 vuoden ikä</li>\n<li>Kotikunta Helsinki</li>\n<li>Työnhaku voimassa</li>\n</ul>\n<p><a href=\"https://teams.microsoft.com/dl/launcher/launcher.html?url=%2F_%23%2Fl%2Fmeetup-join%2F19%3Ameeting_MzM5Njc1YTQtOTUzYi00YmQ4LWFjZDQtM2Q2NzQ4YjdkZmRi%40thread.v2%2F0%3Fcontext%3D%257b%2522Tid%2522%253a%25223feb6bc1-d722-4726-966c-5b58b64df752%2522%252c%2522Oid%2522%253a%25228762f4da-13f4-4bb2-85c6-a3a43ffd546f%2522%257d%26anon%3Dtrue&type=meetup-join&deeplinkId=3fd56af1-49f8-4a9c-83cb-41d1a010f1ca&directDl=true&msLaunch=true&enableMobilePage=true&suppressPrompt=true\"><strong>Osallistu tästä hakuinfoon >>></strong></a></p>\n<p><a href=\"https://tyomarkkinatori.fi/palvelut/0f43cc47-de92-4f1e-b3a8-b3524b32cb92/tyovoimakoulutus\">Lisätietoa työvoimakoulutuksesta </a> </p>\n<p><a href=\"https://stadinao.fi/stadin-osaamiskeskus/\">Lisätietoa Stadin AO / Stadin osaamiskeskuksesta</a> </p>" }, "location_extra_info": { "fi": "" }, "name": { "fi": "Nopea reitti osaajaksi – työvoimakoulutus" }, "short_description": { "fi": "-" }, "provider": { "fi": "Helsingin työllisyyspalvelut" }, "info_url": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agaxdbfdbe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 1528, "next": "