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/?location=tprek:28473
http://api.hel.fi/linkedevents/v1/event/?location=tprek%3A28473&page=2", "previous": null }, "data": [ { "id": "helsinki:agajsrmxtq", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1182/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7708/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9607/" } ], "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": 79617, "license": "cc_by", "created_time": "2022-05-06T12:06:06.907784Z", "last_modified_time": "2022-05-06T12:08:36.269766Z", "name": "entrepreneurdayforwomen_rajattu.png", "url": "http://api.hel.fi/linkedevents/media/images/entrepreneurdayforwomen_rajattu.png", "cropping": "298,0,902,605", "photographer_name": "", "alt_text": "entrepreneurdayforwomen_rajattu.png", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/79617/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2022-05-06T12:08:36.530794Z", "last_modified_time": "2022-05-06T12:13:19.139353Z", "date_published": null, "start_time": "2022-06-06T09:00:00Z", "end_time": "2022-06-06T13: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": "'-12.10':85C '-12.25':88C '-13':456C '-13.00':92C '-13.35':141C '-14.20':211C '-14.55':264C '-15.30':312C '-16.00':390C '00710':457C '11':455C '12.00':84C '12.10':87C '12.30':91C '13.05':140C '13.50':210C '14.25':263C '15.00':311C '15.30':389C '2015':139C '2021':280C '2022':429C '2500':302C '2m':310C '4':309C '6':428C 'a':21C,100C,111C,147C,159C,219C,306C,335C 'abou':80C,167C,198C,236C 'advertising':246C 'al':402C 'ali':266C,273C 'am':313C,327C,350C 'an':69C,206C,269C,325C,377C 'and':49C,52C,62C,75C,133C,162C,172C,223C,229C,260C,328C,343C,362C,370C,380C,393C 'are':16C 'as':205C,324C 'at':11C 'awesom':70C 'b2b':259C 'b2c':261C 'basic':256C 'be':41C,203C 'believing':340C 'benef':371C 'better':189C 'binding':419C 'boost':30C 'busines':22C,33C,101C,112C,120C,193C 'by':43C,115C,445C 'cancel':434C 'charg':400C 'city':14C,452C 'click':409C 'cof':392C 'come':422C 'communities':363C 'companies':132C,361C 'company':290C 'connections':51C 'crowd':71C 'day':2A,8C 'desig':145C,156C,188C 'designer':161C 'designing':168C 'diaspor':358C 'discover':144C,155C 'divers':182C 'diversity':366C 'do':26C,146C,157C,177C,440C 'educates':360C 'email':448C 'employ':300C 'employment':135C 'empowering':63C 'empowerment':339C 'entrepreneur':1A,7C,149C,207C,270C,276C,326C 'entrepreneurial':56C 'entrepreneurs':46C,65C 'entrepreneurship':349C 'equality':378C 'espo':274C 'event':396C,408C,425C 'eventbrit':414C,443C 'existing':32C 'experienced':74C 'experiences':171C 'expert':379C 'fadumo':265C,272C 'femal':45C 'fictio':232C 'find':53C,134C 'finding':320C 'finland':24C,103C,114C,137C,151C,209C,459C 'first':415C 'for':3A,9C,401C,406C 'founder':154C,354C 'founders':384C 'free':398C 'from':372C 'functions':369C 'gathered':68C 'get':47C 'group':317C,336C 'grow':294C 'hal':15C,388C,453C 'has':127C,293C 'have':67C 'head':118C 'healthcar':303C 'hear':105C 'helped':128C 'helps':185C 'helsink':13C,451C,458C 'her':181C,283C,289C 'here':410C 'hoda':315C,329C,374C,386C 'hoiwa':267C,291C 'how':97C,108C,175C,237C,288C 'if':430C 'impactful':169C 'in':19C,23C,60C,102C,113C,136C,150C,208C,295C,341C,348C,364C 'incredibl':284C 'inner':55C,322C 'inspired':42C 'inspiring':73C 'integrating':365C 'interested':18C 'into':367C 'is':158C,165C,194C,215C,239C,352C,376C,397C,418C 'it':373C 'join':58C 'journalist':226C 'june':427C 'just':245C,296C 'kati':93C,116C 'keynot':227C 'knowledgeabl':76C 'lappeteläin':94C,117C 'later':437C 'lead':252C,332C 'lear':39C 'learning':61C 'like':37C 'locatio':450C 'long':220C 'map':461C 'marketing':214C,224C,238C,262C 'may':439C 'med':249C 'mohamed':316C,330C,351C,375C 'more':40C,106C,216C,240C,243C 'much':242C 'muhon':213C,218C 'need':201C 'networking':391C 'new':48C 'non':231C 'non-fictio':230C 'of':72C,119C,122C,258C,277C,287C,308C,355C,382C,385C,399C 'one':381C 'opening':20C,89C 'operations':34C 'or':25C,247C,444C 'other':44C 'others':174C,186C 'over':301C 'oy':268C,292C 'pamel':142C,152C 'participants':403C 'passionat':166C 'peopl':129C 'please':411C,421C 'pohjoisesplanad':454C 'pr':222C 'practices':257C 'professional':225C 'professionals':304C 'program':121C 'putting':344C 'qj':357C 'qj-diaspor':356C 'refreshments':394C 'refugees':96C,124C,126C 'register':405C,412C 'registratio':417C,436C 's':275C 'sallamaar':212C,217C 'same':179C 'sending':446C 'servic':160C 'services':190C 'share':282C 'she':184C,195C,250C,359C 'sinc':138C 'skills':183C 'so':241C,420C,441C 'social':248C 'speaker':228C 'spokes':143C,153C 'start':99C,110C,131C 'startup':95C,123C,125C 'story':271C,286C 'strength':57C,323C 'subject':83C 'succes':285C 'successful':148C,204C 'talk':79C,197C,235C 'teacher':163C 'teaching':173C 'than':244C 'that':345C 'the':12C,178C,255C,278C,353C,383C,395C,407C,416C,424C 'their':192C,368C 'this':81C 'through':254C 'time':221C 'to':6C,29C,38C,78C,98C,109C,130C,176C,187C,202C,299C,334C,346C,404C,423C,433C 'turnover':307C 'two':297C 'us':59C,253C,333C,447C 'use':347C 'user':170C 'using':180C 'valuabl':50C,82C 'view':460C 'we':66C,104C 'welcom':5C,86C 'what':199C 'whatever':191C 'who':164C 'wil':196C,234C,251C,281C,331C 'wish':28C,432C 'with':305C 'wome':4A,10C,64C,77C 'words':90C 'work':318C,337C 'would':35C 'writer':233C 'year':279C 'years':298C 'you':17C,27C,36C,200C,431C,438C 'your':31C,54C,321C,435C 'yourself':342C 'yrityshelsinki@hel.fi':449C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p><strong>Welcome to Entrepreneur Day for Women at the Helsinki City Hall!</strong></p>\n<p>Are you interested in opening a business in Finland? Or do you wish to boost your existing business operations? Would you like to learn more, be inspired by other female entrepreneurs, get new and valuable connections, and find your inner entrepreneurial strength? </p>\n<p>Join us in learning and empowering women entrepreneurs. We have gathered an awesome crowd of inspiring, experienced, and knowledgeable women to talk about this valuable subject. </p>\n<p><strong>12.00-12.10 </strong>Welcome </p>\n<p><strong>12.10-12.25 </strong>Opening words </p>\n<p><strong>12.30-13.00</strong> Kati Lappeteläinen, Startup Refugees: How to start a business in Finland </p>\n<p>We hear more on how to start a business in Finland by <strong>Kati Lappeteläinen</strong>, Head of business program of Startup Refugees. Startup refugees has helped people to start companies and find employment in Finland since 2015. </p>\n<p><strong>13.05-13.35</strong> Pamela Spokes, Discover Design Do: A successful entrepreneur in Finland </p>\n<p><strong>Pamela Spokes</strong>, Founder, Discover Design Do is a service designer and teacher who is passionate about designing impactful user experiences and teaching others how to do the same. Using her diverse skillset, she helps others to design better services – whatever their business is. She will talk about what you need to be successful as an entrepreneur in Finland. </p>\n<p><strong>13.50-14.20</strong> Sallamaari Muhonen: Marketing is more </p>\n<p><strong>Sallamaari Muhonen</strong>, a long time PR and marketing professional, journalist, keynote speaker and non-fiction writer will talk about how Marketing is more: so much more than just advertising or social media! She will lead us through the basic practices of b2b and b2c marketing. </p>\n<p><strong>14.25-14.55 </strong>Fadumo Ali, Hoiwa Oy: An entrepreneur story </p>\n<p><strong>Fadumo Ali</strong>, Espoo’s Entrepreneur of the year 2021 will share her incredible success story of how her company Hoiwa Oy has grown in just two years to employ over 2500 healthcare professionals with a turnover of 4,2m€. </p>\n<p><strong>15.00-15.30 </strong>Amina ja Hodan Mohamed: Group work on finding your inner strength as an entrepreneur </p>\n<p><strong>Amina and Hodan Mohamed</strong>, will lead us to a group work on empowerment, believing in yourself and putting that to use in entrepreneurship. Amina Mohamed is the founder of Qj-Diasporassa. She educates companies and communities in integrating diversity into their functions, and benefit from it. Hodan Mohamed is an equality expert and one of the founders of Hodan ja Halla. </p>\n<p><strong>15.30-16.00 </strong>Networking, coffee and refreshments. </p>\n<p>The event is free of charge for all participants. </p>\n<p><a href=\"https://www.eventbrite.com/e/entrepreneur-day-for-women-tickets-332932910297\"><strong>>>> To register for the event, click here >>> </strong></a> </p>\n<p>Please register on Eventbrite first. The registration is binding, so please come to the event on June 6, 2022. If you wish to cancel your registration later, you may do so on Eventbrite or by sending us email <a href=\"mailto:yrityshelsinki@hel.fi\">yrityshelsinki@hel.fi </a> </p>\n<p>Location: Helsinki City Hall, Pohjoisesplanadi 11-13, 00710, Helsinki, Finland <a href=\"https://www.eventbrite.com/e/entrepreneur-day-for-women-tickets-332932910297#listings-root__event-location-map\">View Map </a> </p>" }, "location_extra_info": { "fi": "" }, "name": { "fi": "Entrepreneur Day for Women " }, "short_description": { "fi": "-" }, "provider": { "fi": "Helsingin työllisyyspalvelut" }, "info_url": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agajsrmxtq/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:af23cf24zi", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p25338/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3111/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/2720657031483703/", "language": "fi" } ], "offers": [ { "is_free": false, "price": { "fi": "12€", "en": "12€" }, "info_url": { "fi": "https://www.varaaheti.fi/friskishelsinki/fi", "en": "https://www.varaaheti.fi/friskishelsinki/fi" }, "description": { "fi": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [ { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf3aji/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf3axm/" } ], "images": [ { "id": 67982, "license": "event_only", "created_time": "2020-11-10T07:19:31.208677Z", "last_modified_time": "2020-11-10T07:19:31.208701Z", "name": "Liikuntaloitsu", "url": "http://api.hel.fi/linkedevents/media/images/123008590_3690297804369659_.jpg", "cropping": "286,0,914,628", "photographer_name": "Friskis&Svettis Helsinki ry", "alt_text": "Valoa pimeydessä", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/67982/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2020-11-10T07:38:19.740898Z", "last_modified_time": "2020-11-30T13:15:32.987974Z", "date_published": null, "start_time": "2020-11-17T17:00:00Z", "end_time": "2020-12-05T16:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": true, "search_vector_fi": "'-18':62C '-21':57C '/friskishelsinki/fi':68C '12':64C '16':61C '17.11':54C '19':56C '20':70C '5':75C '5.12':59C 'avu':26C 'ede':53C 'elämyks':92C 'erilais':81C 'es':30C 'etel':19C 'etelä-helsing':18C 'heijastim':88C 'helsing':20C 'joogahetk':37C 'kaamoks':21C 'kahd':14C 'kaivopuisto':38C,48C 'kannustav':34C 'kaupungintalo':45C,52C 'kaupunkivaelluks':6B,10C 'kaut':49C 'kesä':41C 'klo':55C,60C 'km':76C 'kokemis':25C 'kulk':44C 'kävely':17C 'liikuntaloitsu':2A,3B,7C,11C 'luova':90C 'lähiympäristö':36C 'lähtö':51C 'lämpim':78C 'löytöretk':35C 'max':69C 'miele':40C 'muisto':42C 'n':74C 'ohjelmallin':16C 'olympiaterminaal':50C 'osallistu':71C,89C 'osallistumismaksu':63C 'ota':79C 'otsalampu':84C 'palaut':39C 'peruutetu':1A 'piirt':32C 'pimeyt':94C 'pituus':73C 'puisto':93C 'pukeudu':77C 'reit':43C,72C 'taite':22C 'tans':5B,9C 'taskulampu':85C 'tun':15C 'tutu':28C 'tähtitorninmäe':46C 'uus':31C 'valo':4B,8C,82C 'valokäädy':83C 'valopan':86C 'valot':27C 'varauks':65C 'www.varaaheti.fi':67C 'www.varaaheti.fi/friskishelsinki/fi':66C 'yhd':24C 'yhteis':91C 'ympäristö':29C", "search_vector_en": "'-18.00':85C '-21.00':80C '/friskishelsinki/fi':94C '12':88C '16.00':84C '17.11':77C '19.00':79C '20':96C '5':100C '5.12':82C 'accord':103C 'admiss':86C 'also':21B,45C 'approx':99C 'bring':107C 'cancel':1A 'citi':2A,6B,30C,59C,75C 'creat':120C 'dark':126C 'departur':70C 'dress':102C 'experi':123C 'fairi':112C 'fee':87C 'flashlight':115C 'front':72C 'hall':60C,76C 'headlamp':114C 'helsinki':17B,41C,58C,74C 'hike':3A,7B,14B,31C,38C 'inspir':12B,36C 'kaivopuisto':28B,52C,64C 'km':101C 'length':98C 'light':5A,9B,33C,111C,113C 'max':95C 'moment':23B,47C 'olymp':68C 'park':29B,53C,65C,129C 'particip':119C 'person':97C 'pre':90C 'pre-registr':89C 'reflector':117C 'registr':91C 'rout':55C 'run':56C 'share':122C 'southern':16B,40C 'termin':69C 'tähtitorninmäki':62C 'urban':13B,37C 'varieti':109C 'weather':106C 'www.varaaheti.fi':93C 'www.varaaheti.fi/friskishelsinki/fi':92C 'yoga':25B,49C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Liikuntaloitsu - valon tanssia kaupunkivaelluksella</p><p>Liikuntaloitsu on noin kahden tunnin ohjelmallinen kävely Etelä-Helsingin kaamoksessa. Taiteen ja yhdessä kokemisen avulla valotetaan tutustakin ympäristöstä esiin uusia piirteitä, jotka kannustavat löytöretkelle lähiympäristöön. Joogahetki Kaivopuistossa palauttaa mieleen kesän muistot. </p><p>Reitti kulkee Kaupungintalolta Tähtitorninmäen ja Kaivopuiston kautta Olympiaterminaaliin. </p><p>Lähtö Kaupungintalon edestä<br>17.11. klo 19-21 ja 5.12. klo 16-18</p><p>Osallistumismaksu 12€, <br>varaukset: https://www.varaaheti.fi/friskishelsinki/fi</p><p>Max 20 osallistujaa, reitin pituus n. 5 km</p><p>Pukeudu lämpimästi. Ota mukaan erilaisia valoja: valokäädyt, otsalamput, taskulamput, valopannat ja heijastimet. Osallistujat luovat yhteisen elämyksen puistojen pimeyteen.</p>", "en": "<p>City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park.</p><p>The route runs from Helsinki City Hall through Tähtitorninmäki and Kaivopuisto Park to the Olympic Terminal. </p><p>Departure: In front of Helsinki City Hall<br>17.11. at 19.00-21.00 and 5.12. at 16.00-18.00</p><p>Admission fee 12€,<br>pre-registration: https://www.varaaheti.fi/friskishelsinki/fi<br> <br>Max. 20 persons, length approx. 5 km</p><p>Dress according to the weather. Bring a variety of lights: fairy lights, headlamps, flashlights and reflectors. The participants create a shared experience in the darkness of the parks.</p>" }, "location_extra_info": null, "name": { "fi": "Peruutettu: Liikuntaloitsu", "en": "Cancelled: City Hike With Lights" }, "short_description": { "fi": "Liikuntaloitsu - valon tanssia kaupunkivaelluksella", "en": "City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park." }, "provider": { "fi": "Friskis&Svettis Helsinki ry", "en": "Friskis&Svettis Helsinki ry" }, "info_url": { "fi": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat", "en": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf24zi/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:af23cf3axm", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p25338/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3111/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf24zi/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/2720657031483703/", "language": "fi" } ], "offers": [ { "is_free": false, "price": { "fi": "12€", "en": "12€" }, "info_url": { "fi": "https://www.varaaheti.fi/friskishelsinki/fi", "en": "https://www.varaaheti.fi/friskishelsinki/fi" }, "description": { "fi": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 67982, "license": "event_only", "created_time": "2020-11-10T07:19:31.208677Z", "last_modified_time": "2020-11-10T07:19:31.208701Z", "name": "Liikuntaloitsu", "url": "http://api.hel.fi/linkedevents/media/images/123008590_3690297804369659_.jpg", "cropping": "286,0,914,628", "photographer_name": "Friskis&Svettis Helsinki ry", "alt_text": "Valoa pimeydessä", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/67982/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2020-11-10T07:38:20.747182Z", "last_modified_time": "2020-11-30T13:15:32.875220Z", "date_published": null, "start_time": "2020-12-05T14:00:00Z", "end_time": "2020-12-05T16: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": true, "search_vector_fi": "'-18':62C '-21':57C '/friskishelsinki/fi':68C '12':64C '16':61C '17.11':54C '19':56C '20':70C '5':75C '5.12':59C 'avu':26C 'ede':53C 'elämyks':92C 'erilais':81C 'es':30C 'etel':19C 'etelä-helsing':18C 'heijastim':88C 'helsing':20C 'joogahetk':37C 'kaamoks':21C 'kahd':14C 'kaivopuisto':38C,48C 'kannustav':34C 'kaupungintalo':45C,52C 'kaupunkivaelluks':6B,10C 'kaut':49C 'kesä':41C 'klo':55C,60C 'km':76C 'kokemis':25C 'kulk':44C 'kävely':17C 'liikuntaloitsu':2A,3B,7C,11C 'luova':90C 'lähiympäristö':36C 'lähtö':51C 'lämpim':78C 'löytöretk':35C 'max':69C 'miele':40C 'muisto':42C 'n':74C 'ohjelmallin':16C 'olympiaterminaal':50C 'osallistu':71C,89C 'osallistumismaksu':63C 'ota':79C 'otsalampu':84C 'palaut':39C 'peruutetu':1A 'piirt':32C 'pimeyt':94C 'pituus':73C 'puisto':93C 'pukeudu':77C 'reit':43C,72C 'taite':22C 'tans':5B,9C 'taskulampu':85C 'tun':15C 'tutu':28C 'tähtitorninmäe':46C 'uus':31C 'valo':4B,8C,82C 'valokäädy':83C 'valopan':86C 'valot':27C 'varauks':65C 'www.varaaheti.fi':67C 'www.varaaheti.fi/friskishelsinki/fi':66C 'yhd':24C 'yhteis':91C 'ympäristö':29C", "search_vector_en": "'-18.00':85C '-21.00':80C '/friskishelsinki/fi':94C '12':88C '16.00':84C '17.11':77C '19.00':79C '20':96C '5':100C '5.12':82C 'accord':103C 'admiss':86C 'also':21B,45C 'approx':99C 'bring':107C 'cancel':1A 'citi':2A,6B,30C,59C,75C 'creat':120C 'dark':126C 'departur':70C 'dress':102C 'experi':123C 'fairi':112C 'fee':87C 'flashlight':115C 'front':72C 'hall':60C,76C 'headlamp':114C 'helsinki':17B,41C,58C,74C 'hike':3A,7B,14B,31C,38C 'inspir':12B,36C 'kaivopuisto':28B,52C,64C 'km':101C 'length':98C 'light':5A,9B,33C,111C,113C 'max':95C 'moment':23B,47C 'olymp':68C 'park':29B,53C,65C,129C 'particip':119C 'person':97C 'pre':90C 'pre-registr':89C 'reflector':117C 'registr':91C 'rout':55C 'run':56C 'share':122C 'southern':16B,40C 'termin':69C 'tähtitorninmäki':62C 'urban':13B,37C 'varieti':109C 'weather':106C 'www.varaaheti.fi':93C 'www.varaaheti.fi/friskishelsinki/fi':92C 'yoga':25B,49C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Liikuntaloitsu - valon tanssia kaupunkivaelluksella</p><p>Liikuntaloitsu on noin kahden tunnin ohjelmallinen kävely Etelä-Helsingin kaamoksessa. Taiteen ja yhdessä kokemisen avulla valotetaan tutustakin ympäristöstä esiin uusia piirteitä, jotka kannustavat löytöretkelle lähiympäristöön. Joogahetki Kaivopuistossa palauttaa mieleen kesän muistot. </p><p>Reitti kulkee Kaupungintalolta Tähtitorninmäen ja Kaivopuiston kautta Olympiaterminaaliin. </p><p>Lähtö Kaupungintalon edestä<br>17.11. klo 19-21 ja 5.12. klo 16-18</p><p>Osallistumismaksu 12€, <br>varaukset: https://www.varaaheti.fi/friskishelsinki/fi</p><p>Max 20 osallistujaa, reitin pituus n. 5 km</p><p>Pukeudu lämpimästi. Ota mukaan erilaisia valoja: valokäädyt, otsalamput, taskulamput, valopannat ja heijastimet. Osallistujat luovat yhteisen elämyksen puistojen pimeyteen.</p>", "en": "<p>City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park.</p><p>The route runs from Helsinki City Hall through Tähtitorninmäki and Kaivopuisto Park to the Olympic Terminal. </p><p>Departure: In front of Helsinki City Hall<br>17.11. at 19.00-21.00 and 5.12. at 16.00-18.00</p><p>Admission fee 12€,<br>pre-registration: https://www.varaaheti.fi/friskishelsinki/fi<br> <br>Max. 20 persons, length approx. 5 km</p><p>Dress according to the weather. Bring a variety of lights: fairy lights, headlamps, flashlights and reflectors. The participants create a shared experience in the darkness of the parks.</p>" }, "location_extra_info": null, "name": { "fi": "Peruutettu: Liikuntaloitsu", "en": "Cancelled: City Hike With Lights" }, "short_description": { "fi": "Liikuntaloitsu - valon tanssia kaupunkivaelluksella", "en": "City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park." }, "provider": { "fi": "Friskis&Svettis Helsinki ry", "en": "Friskis&Svettis Helsinki ry" }, "info_url": { "fi": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat", "en": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf3axm/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:af23cf3aji", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p25338/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3111/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf24zi/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/2720657031483703/", "language": "fi" } ], "offers": [ { "is_free": false, "price": { "fi": "12€", "en": "12€" }, "info_url": { "fi": "https://www.varaaheti.fi/friskishelsinki/fi", "en": "https://www.varaaheti.fi/friskishelsinki/fi" }, "description": { "fi": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 67982, "license": "event_only", "created_time": "2020-11-10T07:19:31.208677Z", "last_modified_time": "2020-11-10T07:19:31.208701Z", "name": "Liikuntaloitsu", "url": "http://api.hel.fi/linkedevents/media/images/123008590_3690297804369659_.jpg", "cropping": "286,0,914,628", "photographer_name": "Friskis&Svettis Helsinki ry", "alt_text": "Valoa pimeydessä", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/67982/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2020-11-10T07:38:20.635306Z", "last_modified_time": "2020-11-10T07:38:20.635332Z", "date_published": null, "start_time": "2020-11-17T17:00:00Z", "end_time": "2020-11-17T19: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": true, "search_vector_fi": "'-18':61C '-21':56C '/friskishelsinki/fi':67C '12':63C '16':60C '17.11':53C '19':55C '20':69C '5':74C '5.12':58C 'avu':25C 'ede':52C 'elämyks':91C 'erilais':80C 'es':29C 'etel':18C 'etelä-helsing':17C 'heijastim':87C 'helsing':19C 'joogahetk':36C 'kaamoks':20C 'kahd':13C 'kaivopuisto':37C,47C 'kannustav':33C 'kaupungintalo':44C,51C 'kaupunkivaelluks':5B,9C 'kaut':48C 'kesä':40C 'klo':54C,59C 'km':75C 'kokemis':24C 'kulk':43C 'kävely':16C 'liikuntaloitsu':1A,2B,6C,10C 'luova':89C 'lähiympäristö':35C 'lähtö':50C 'lämpim':77C 'löytöretk':34C 'max':68C 'miele':39C 'muisto':41C 'n':73C 'ohjelmallin':15C 'olympiaterminaal':49C 'osallistu':70C,88C 'osallistumismaksu':62C 'ota':78C 'otsalampu':83C 'palaut':38C 'piirt':31C 'pimeyt':93C 'pituus':72C 'puisto':92C 'pukeudu':76C 'reit':42C,71C 'taite':21C 'tans':4B,8C 'taskulampu':84C 'tun':14C 'tutu':27C 'tähtitorninmäe':45C 'uus':30C 'valo':3B,7C,81C 'valokäädy':82C 'valopan':85C 'valot':26C 'varauks':64C 'www.varaaheti.fi':66C 'www.varaaheti.fi/friskishelsinki/fi':65C 'yhd':23C 'yhteis':90C 'ympäristö':28C", "search_vector_en": "'-18.00':84C '-21.00':79C '/friskishelsinki/fi':93C '12':87C '16.00':83C '17.11':76C '19.00':78C '20':95C '5':99C '5.12':81C 'accord':102C 'admiss':85C 'also':20B,44C 'approx':98C 'bring':106C 'citi':1A,5B,29C,58C,74C 'creat':119C 'dark':125C 'departur':69C 'dress':101C 'experi':122C 'fairi':111C 'fee':86C 'flashlight':114C 'front':71C 'hall':59C,75C 'headlamp':113C 'helsinki':16B,40C,57C,73C 'hike':2A,6B,13B,30C,37C 'inspir':11B,35C 'kaivopuisto':27B,51C,63C 'km':100C 'length':97C 'light':4A,8B,32C,110C,112C 'max':94C 'moment':22B,46C 'olymp':67C 'park':28B,52C,64C,128C 'particip':118C 'person':96C 'pre':89C 'pre-registr':88C 'reflector':116C 'registr':90C 'rout':54C 'run':55C 'share':121C 'southern':15B,39C 'termin':68C 'tähtitorninmäki':61C 'urban':12B,36C 'varieti':108C 'weather':105C 'www.varaaheti.fi':92C 'www.varaaheti.fi/friskishelsinki/fi':91C 'yoga':24B,48C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Liikuntaloitsu - valon tanssia kaupunkivaelluksella</p><p>Liikuntaloitsu on noin kahden tunnin ohjelmallinen kävely Etelä-Helsingin kaamoksessa. Taiteen ja yhdessä kokemisen avulla valotetaan tutustakin ympäristöstä esiin uusia piirteitä, jotka kannustavat löytöretkelle lähiympäristöön. Joogahetki Kaivopuistossa palauttaa mieleen kesän muistot. </p><p>Reitti kulkee Kaupungintalolta Tähtitorninmäen ja Kaivopuiston kautta Olympiaterminaaliin. </p><p>Lähtö Kaupungintalon edestä<br>17.11. klo 19-21 ja 5.12. klo 16-18</p><p>Osallistumismaksu 12€, <br>varaukset: https://www.varaaheti.fi/friskishelsinki/fi</p><p>Max 20 osallistujaa, reitin pituus n. 5 km</p><p>Pukeudu lämpimästi. Ota mukaan erilaisia valoja: valokäädyt, otsalamput, taskulamput, valopannat ja heijastimet. Osallistujat luovat yhteisen elämyksen puistojen pimeyteen.</p>", "en": "<p>City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park.</p><p>The route runs from Helsinki City Hall through Tähtitorninmäki and Kaivopuisto Park to the Olympic Terminal. </p><p>Departure: In front of Helsinki City Hall<br>17.11. at 19.00-21.00 and 5.12. at 16.00-18.00</p><p>Admission fee 12€,<br>pre-registration: https://www.varaaheti.fi/friskishelsinki/fi<br> <br>Max. 20 persons, length approx. 5 km</p><p>Dress according to the weather. Bring a variety of lights: fairy lights, headlamps, flashlights and reflectors. The participants create a shared experience in the darkness of the parks.</p>" }, "location_extra_info": null, "name": { "fi": "Liikuntaloitsu", "en": "City Hike With Lights" }, "short_description": { "fi": "Liikuntaloitsu - valon tanssia kaupunkivaelluksella", "en": "City hike with lights is an inspiring urban hike in Southern Helsinki. There will be also a moment of yoga in the Kaivopuisto Park." }, "provider": { "fi": "Friskis&Svettis Helsinki ry", "en": "Friskis&Svettis Helsinki ry" }, "info_url": { "fi": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat", "en": "https://www.friskissvettis.fi/Helsinki/Uutiset/Ekstrat" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23cf3aji/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afx4fcj3x4", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2339/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3128/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com/olensuperada/", "language": "fi" }, { "name": "extlink_twitter", "link": "https://twitter.com/OlenSuperAda/", "language": "fi" }, { "name": "extlink_facebook", "link": "https://www.facebook.com/OlenSuperAda/", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 62252, "license": "event_only", "created_time": "2020-01-21T11:23:55.097621Z", "last_modified_time": "2020-01-21T11:23:55.097643Z", "name": "Super-Ada", "url": "http://api.hel.fi/linkedevents/media/images/Super-Ada.jpg", "cropping": "576,0,1344,768", "photographer_name": "Super-Ada", "alt_text": null, "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/62252/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/" } ], "created_time": "2020-01-20T10:39:31.271306Z", "last_modified_time": "2020-01-21T11:25:16.386345Z", "date_published": null, "start_time": "2020-02-07T13:00:00Z", "end_time": "2020-02-07T16: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": true, "search_vector_fi": "'-18':42C,119C '-22':12B,27C '15':41C,118C '16':11B,26C '7.2':116C '7.2.2020':39C 'ada':3A,6B,21C,53C 'aiemp':77C 'ala':18B,33C,49C,65C,71C,81C,104C 'ennakkotieto':78C 'eri':66C,75C 'helsing':36C,114C 'ilmoittautumin':112C 'it':17B,32C,48C,80C 'it-al':16B,31C,47C,79C 'jaeta':88C 'järjest':35C 'järjestäm':94C 'kannust':10B,25C 'kaupungintalo':37C,115C 'kesätyöpaik':46C 'kiinnostav':61C 'kilpailu':43C 'klo':40C,117C 'koodaustyöpaj':95C 'kute':92C 'kuulev':74C 'laitepalkinto':97C 'lisätieto':110C 'maksuto':98C 'muita':90C 'muodost':56C 'myös':89C 'nais':15B,30C 'nuor':14B,29C 'nuore':59C 'ohjelmoin':83C 'opintomahdollisuuks':76C 'opiskelij':72C 'oppilaitost':108C 'palkinto':91C 'perjant':38C 'pääpalkinto':44C 'pääsy':121C 'rastir':57C 'super':2A,5B,20C,52C 'super-ad':1A,4B,19C 'super-ada-tapahtum':51C 'tapaav':68C 'tapahtum':7B,22C,34C,54C,87C,99C 'tarkoituks':8B,23C 'tarvits':85C 'tava':62C 'tietotekniik':64C,70C,103C 'tietotekniikka-al':63C,69C,102C 'toteut':100C 'tutustuv':60C 'työtehtäv':67C 'vapa':120C 'vapaaehtoisvoim':101C 'verkosto':106C 'vuotia':13B,28C 'www.superada.net':113C 'yhteistyö':109C 'yrityks':50C,93C 'yrityst':105C 'ytim':55C", "search_vector_en": "'-18.00':108C '-4':87C '15.00':107C '3':86C '7.2':106C '7th':10B,36C 'ada':3A,6B,32C 'aim':15B,41C 'citi':13B,39C,104C 'compet':82C 'competit':70C 'consist':72C 'differ':74C,91C 'encourag':17B,43C 'entri':110C 'event':7B,33C,66C 'februari':9B,35C 'free':109C 'fun':69C 'futur':60C 'girl':18B,44C,81C 'hall':14B,40C,105C 'helsinki':12B,38C,103C 'industri':29B,55C 'job':102C 'primal':62C 'relat':77C 'repres':26B,52C 'reward':99C 'seven':90C 'station':92C 'studi':23B,49C 'summer':101C 'super':2A,5B,31C 'super-ada':1A,4B,30C 'task':79C 'team':84C,96C 'technolog':24B,50C,76C 'technology-rel':75C 'theme':63C 'track':71C 'win':95C 'women':21B,47C 'work':78C 'young':20B,46C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Super-Ada -tapahtuman tarkoituksena on kannustaa 16-22-vuotiaita nuoria naisia it-alalle.</p><p>Tapahtuma järjestetään Helsingin kaupungintalolla perjantaina 7.2.2020 klo 15-18. Kilpailun pääpalkintona on kesätyöpaikka it-alan yrityksessä. </p><p>Super-Ada-tapahtuman ytimen muodostaa rastirata, jossa nuoret tutustuvat kiinnostavalla tavalla tietotekniikka-alan eri työtehtäviin, tapaavat tietotekniikka-alan opiskelijoita ja kuulevat eri opintomahdollisuuksista. Aiempia ennakkotietoja it-alasta tai ohjelmoinnista ei tarvitse olla. </p><p>Tapahtumassa jaetaan myös muita palkintoja, kuten yrityksen järjestämä koodaustyöpaja sekä laitepalkintoja. Maksuton tapahtuma toteutetaan vapaaehtoisvoimin tietotekniikka-alan yritysten, verkostojen ja oppilaitosten yhteistyönä.<br>Lisätietoja ja ilmoittautuminen: www.superada.net</p><p>Helsingin kaupungintalo<br>7.2. klo 15-18</p><p>Vapaa pääsy</p>", "en": "<p>Super-Ada event on February 7th at Helsinki City Hall aims at encouraging girls and young women to study technology by representing the IT industry now and in the future. </p><p>The primal theme of the event is a fun competition track consisting of different technology-related work tasks. The girls compete in teams of 3-4. There are seven different stations and the winning team will be rewarded with summer jobs. </p><p>Helsinki City Hall<br>7.2. 15.00-18.00</p><p>Free entry</p>" }, "location_extra_info": null, "name": { "fi": "Super-Ada", "en": "Super-Ada" }, "short_description": { "fi": "Super-Ada -tapahtuman tarkoituksena on kannustaa 16-22-vuotiaita nuoria naisia it-alalle.", "en": "Super-Ada event on February 7th at Helsinki City Hall aims at encouraging girls and young women to study technology by representing the IT industry" }, "provider": { "fi": "Nice Tuesday ry", "en": "Nice Tuesday ry" }, "info_url": { "fi": "http://www.superada.net", "en": "http://www.superada.net/brief-in-english/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afx4fcj3x4/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afxh3wkjiu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5554/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "http://www.instagram.com/torikorttelit", "language": "fi" }, { "name": "extlink_facebook", "link": "https://www.facebook.com/events/448278342492991/", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 60205, "license": "cc_by", "created_time": "2019-11-18T08:53:29.213194Z", "last_modified_time": "2019-11-18T08:53:29.213216Z", "name": "Kestävä joulukuusi -näyttely", "url": "http://api.hel.fi/linkedevents/media/images/45628538064_cf0a46aa42_k.jpg", "cropping": "320,0,1600,1280", "photographer_name": "Torikorttelit (c) Jussi Hellsten", "alt_text": null, "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/60205/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2019-11-18T09:30:22.411500Z", "last_modified_time": "2019-11-18T09:30:22.411530Z", "date_published": null, "start_time": "2019-11-24T12:00:00Z", "end_time": "2019-12-24T21: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": true, "search_vector_fi": "'-24.12':71C '24.11':70C 'alo':22C 'avautu':6B,13C 'bloggaaj':61C 'ele':41C 'elokuv':38C 'eri':21C 'fok':51C 'fors':44C 'haastetu':20C 'henkilö':24C 'iik':43C 'it':52C 'joonas':55C 'joulu':37C 'jouluku':2A,8B,15C,29C 'kanto':58C 'kaupungintalo':68C 'kestäv':1A,7B,14C 'koristelem':27C 'kuk':28C 'leeve':42C 'mar':39C 'marrasku':10B,17C 'mediaperso':47C 'miko':48C 'muka':34C 'noora':62C 'näyttely':3A,9B,16C 'oma':30C 'pelt':49C 'peltol':50C 'piirtäj':54C 'pääsy':73C 'rin':57C 'rinta-kanto':56C 'ryhm':26C 'sarjakuv':53C 'shingler':63C 'sisäpih':69C 'sisäpiho':5B,12C 'skidi':66C 'skidit-tiim':65C 'tarin':33C 'tiimi':67C 'toimittaj':45C,60C 'toimittaja-bloggaaj':59C 'torikorttel':4B,11C 'tunnetu':23C 'tyyl':31C 'täydellin':36C 'vapa':72C 'ylip':40C", "search_vector_en": "'-24.12':66C '24.11':65C 'behind':38C 'christma':1A,4B,17C 'citi':15B,28C,50C,62C 'courtyard':12B,25C,46C,64C 'decor':35C 'entri':68C 'exhibit':3A,6B,19C 'festiv':41C 'free':67C 'hall':16B,29C,51C,63C 'helsinki':14B,27C,49C,61C 'one':58C,60C 'open':9B,22C,40C 'reveal':57C 'start':43C 'stori':37C 'tree':2A,5B,18C,31C,54C 'uniqu':34C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Torikortteleiden sisäpihoille avautuu Kestävä joulukuusi -näyttely marraskuussa.</p><p>Mukaan on haastettu eri alojen tunnettuja henkilöitä ja ryhmiä koristelemaan kukin joulukuusi omalla tyylillään ja tarinallaan.</p><p>Mukana ovat Täydellinen Joulu -elokuvan Maria Ylipää, Elena Leeve, Iikka Forss, toimittaja ja mediapersoona Mikko ”Peltsi” Peltola, Fok_it -sarjakuvan piirtäjä Joonas Rinta-Kanto, toimittaja-bloggaaja Noora Shingler ja Skidit-tiimi.</p><p>Kaupungintalon sisäpiha<br>24.11.-24.12.</p><p>Vapaa pääsy</p>", "en": "<p>Christmas Tree Exhibition will be opened in the courtyard of Helsinki City Hall.</p><p>Each tree has a unique decoration and story behind. The opening festivities will start in the courtyard of the Helsinki City Hall and the trees will be revealed one by one. </p><p>Helsinki City Hall, courtyard<br>24.11.-24.12.</p><p>Free entry</p>" }, "location_extra_info": null, "name": { "fi": "Kestävä joulukuusi -näyttely", "en": "Christmas Tree Exhibition" }, "short_description": { "fi": "Torikortteleiden sisäpihoille avautuu Kestävä joulukuusi -näyttely marraskuussa.", "en": "Christmas Tree Exhibition will be opened in the courtyard of Helsinki City Hall." }, "provider": { "fi": "Torikorttelit", "en": "Tori Quarters" }, "info_url": { "fi": "https://www.facebook.com/events/448278342492991/", "en": "https://www.facebook.com/events/448278342492991/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afxh3wkjiu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afxcbwisze", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2945/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com/helsinki_oppii/", "language": "fi" }, { "name": "extlink_twitter", "link": "https://twitter.com/helsinkioppii?lang=en", "language": "fi" }, { "name": "extlink_facebook", "link": "https://www.facebook.com/helsinkieducationweek/", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 59789, "license": "cc_by", "created_time": "2019-10-31T07:52:48.418213Z", "last_modified_time": "2019-10-31T07:52:48.418233Z", "name": "Helsinki Education Week 2019", "url": "http://api.hel.fi/linkedevents/media/images/HEW_tunnus.jpg", "cropping": "159,0,1023,864", "photographer_name": "Helsinki Education Week", "alt_text": null, "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/59789/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:2/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2019-10-31T08:05:27.376313Z", "last_modified_time": "2019-10-31T08:05:27.376340Z", "date_published": null, "start_time": "2019-11-03T22:01:00Z", "end_time": "2019-11-08T21: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": true, "search_vector_fi": "'-8.11':79C '200':17B,33C '2019':4A '4':78C 'aika':14B,30C,59C 'ammattilais':66C 'ava':47C 'educatio':2A,6B,22C 'elinikäis':75C 'halua':71C 'helsing':44C 'helsink':1A,5B,21C,60C,70C,77C 'huoltaj':52C 'hyvä':42C 'jo':45C 'järjest':15B,31C 'kaik':40C 'kansainväl':68C 'kansainvälis':64C 'kasvatuks':54C 'kaupunk':20B,36C 'ker':12B,28C 'kiinnostun':55C 'koulutuks':65C 'laaja':56C 'media':69C 'myös':62C 'opettaj':48C 'oppij':50C 'oppilaitostenjohdo':51C 'oppimis':76C 'panost':72C 'pääsy':81C 'saapu':61C 'sato':63C 'tapahtum':18B,34C 'tavoit':37C 'tehd':46C 'toise':11B,27C 'toteut':8B,24C 'vapa':80C 'vertaisoppimis':73C 'viiko':13B,29C,58C 'vuon':10B,26C 'week':3A,7B,23C 'yleisö':57C 'ympär':19B,35C", "search_vector_en": "'-8.11':152C '200':53C '2019':4A '2nd':15B,27C '4':151C 'also':134C 'around':58C 'bodi':116C 'care':43C 'centr':44C 'citi':60C 'come':102C,120C 'comprehens':75C 'day':42C 'discuss':95C 'doubl':36C 'educ':2A,6B,18C,47C 'emphasis':65C 'enterpris':113C 'entri':154C 'event':32C,54C,62C,87C,133C 'fill':81C 'focus':97C 'free':153C 'game':148C 'held':10B,22C 'help':140C 'helsinki':1A,5B,17C,40C,150C 'idea':123C 'increas':107C 'institut':48C 'involv':136C 'last':38C 'learn':57C,76C,137C 'learner':70C,90C 'lunch':129C 'mani':130C 'mind':118C 'new':127C,142C 'novemb':12B,24C 'number':30C 'organis':51C,88C 'particip':108C 'peopl':110C 'platform':149C 'prepar':126C 'programm':64C 'promis':79C 'relat':55C 'relax':114C 'robot':146C 'school':45C,128C 'session':96C 'showcas':109C 'technolog':143C 'time':16B,28C 'topic':99C 'varieti':85C 'voic':67C 'way':105C 'week':3A,7B,19C,63C,78C 'well':72C 'well-b':71C 'wide':84C 'workshop':93C 'year':39C", "search_vector_sv": "'-8.11':124C '2019':4A '250':17B,41C '4':123C 'andr':12B,36C 'anländ':119C 'bäst':109C 'daghem':73C 'del':24B,48C 'diskussionstillfäll':101C 'education':2A,7B,31C 'evenemang':18B,42C,53C,93C 'finn':90C 'fritt':125C 'god':83C 'gång':13B,37C 'helhetsbeton':71C 'helsingfor':78C,121C,122C 'helsinki':1A,6B,30C 'huvudfokus':63C 'håll':10B,34C 'internationell':116C 'inträd':126C 'komm':88C 'koppling':20B,44C 'ligg':62C 'lär':22B,46C,66C,72C,86C,105C 'läroinrättning':76C 'modell':84C 'mäng':92C 'ordn':14B,38C,54C 'presenter':79C 'runt':55C 'röst':67C 'samarbet':113C 'sammanlag':15B,39C 'samt':70C 'samtid':102C 'skol':74C 'stad':58C 'svensk':28B,52C 'såsom':97C 'uppgiftsban':99C 'utbildningsexpert':117C 'verksam':81C 'välj':95C 'välmåend':69C 'värld':111C 'week':3A,8B,32C 'workshopp':98C 'år':61C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsinki Education Week toteutetaan tänä vuonna toisen kerran. Viikon aikana järjestetään yli 200 tapahtumaa ympäri kaupunkia. </p><p>Tavoitteena on, että kaikkea sitä hyvää mitä Helsingissä jo tehdään, avataan opettajille ja oppijoille, oppilaitostenjohdolle, huoltajille ja kasvatuksesta kiinnostuneelle laajalle yleisölle. </p><p>Viikon aikana Helsinkiin saapuu myös satoja kansainvälisiä koulutuksen ammattilaisia sekä kansainvälistä mediaa. Helsinki haluaa panostaa vertaisoppimiseen ja elinikäiseen oppimiseen. </p><p>Helsinki<br>4.-8.11.</p><p>Vapaa pääsy</p>", "sv": "<p>Under Helsinki Education Week, som hålls för andra gången, ordnas sammanlagt över 250 evenemang med koppling till lärande – en del av dem på svenska. </p><p>Evenemangen ordnas runt om i staden och i år ligger huvudfokus på de lärandes röst och välmående samt helhetsbetonat lärande. </p><p>Daghem, skolor och läroinrättningar i Helsingfors presenterar sin verksamhet och goda modeller för lärande. Det kommer att finnas en mängd evenemang att välja mellan, såsom workshoppar, uppgiftsbanor och diskussionstillfällen. Samtidigt kan man lära sig av de bästa i världen och samarbeta med de internationella utbildningsexperter som anländer till Helsingfors.</p><p>Helsingfors<br>4.-8.11.</p><p>Fritt inträde</p>", "en": "<p>Helsinki Education Week will be held in November for the 2nd time. The number of events has more than doubled from last year: Helsinki’s day care centres, schools and educational institutions will be organising over 200 events related to learning around the city.<br>The event week programme emphasises the voice of the learner, well-being and comprehensive learning. </p><p>The week promises to filled with a wide variety of events organised by learners, such as workshops and discussion sessions, focusing on topics such as coming up with ways to increase participation, showcasing people’s own enterprises, relaxing the body and mind and coming up with ideas for and preparing new school lunches. </p><p>Many of the events also will involve learning with the help of new technologies, such as robotics and game platforms.</p><p>Helsinki<br>4.-8.11.</p><p>Free entry</p>" }, "location_extra_info": null, "name": { "fi": "Helsinki Education Week 2019", "sv": "Helsinki Education Week 2019", "en": "Helsinki Education Week 2019" }, "short_description": { "fi": "Helsinki Education Week toteutetaan tänä vuonna toisen kerran. Viikon aikana järjestetään yli 200 tapahtumaa ympäri kaupunkia.", "sv": "Under Helsinki Education Week, som hålls för andra gången, ordnas sammanlagt över 250 evenemang med koppling till lärande – en del av dem på svenska. ", "en": "Helsinki Education Week will be held in November for the 2nd time. " }, "provider": { "fi": "Helsingin kaupunki, Kasko", "sv": "City of Helsinki, Education Department", "en": "City of Helsinki, Education Department" }, "info_url": { "fi": "https://helsinkieducationweek.com/fi", "sv": "https://helsinkieducationweek.com/en", "en": "https://helsinkieducationweek.com/en" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afxcbwisze/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afvctvbxkq", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:13/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:8/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2382/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2386/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26655/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p28404/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_twitter", "link": "https://twitter.com/HRInfoshare", "language": "fi" }, { "name": "extlink_facebook", "link": "https://www.facebook.com/events/345294636334326/", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:02300", "sub_events": [], "images": [ { "id": 54637, "license": "cc_by", "created_time": "2019-04-17T05:35:45.016636Z", "last_modified_time": "2019-04-17T05:35:45.016658Z", "name": "Helsinki Loves Developers 22.5.2019", "url": "http://api.hel.fi/linkedevents/media/images/HelLovesDev_220519.jpg", "cropping": "224,0,736,511", "photographer_name": "", "alt_text": null, "data_source": "helsinki", "publisher": "ahjo:02300", "@id": "http://api.hel.fi/linkedevents/v1/image/54637/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/en/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2019-04-17T05:45:34.810527Z", "last_modified_time": "2019-05-09T10:06:39.993275Z", "date_published": null, "start_time": "2019-05-22T12:00:00Z", "end_time": "2019-05-22T15: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": true, "search_vector_fi": "'-13':134C '-18':111C '/events/345294636334326/':155C '/open-data-finland/events/260668131/':158C '11':133C '15':110C '2035':25C '22.5.2019':108C 'ala':130C 'ala-aul':129C 'analytiik':86C 'aula':131C 'avo':162C 'avoim':62C,104C 'data':40C,56C,63C,80C,85C,105C 'data-analytiik':84C 'developers':3A,9B,114C 'digitaalist':92C 'edellyt':29C 'edistäv':18B,123C 'energ':73C 'energiankulutuks':32C,60C 'energianmuuto':17B,122C 'energiarenessans':4A 'englan':167C 'esimerk':83C 'esittelyj':171C 'facebo':149C 'facebook':141C 'halua':21C 'helsing':5A,52C,127C 'helsink':1A,7B,20C,95C,112C 'hiilineutraal':23C 'hri.fi':69C 'hyödy':102C 'hyödyl':55C 'hyödynnettäv':68C 'hyödynt':82C 'ilmoittautu':147C 'irt':103C 'joko':148C 'jot':41C 'julk':139C 'järjest':126C,166C 'kaik':161C 'kannust':96C 'kaupungintalo':128C 'kaut':152C 'ke':107C 'keskustelu':173C 'kestäv':50C 'kiinteistöyhtiö':88C 'klo':109C 'kohdennetu':91C 'kuink':79C 'kulutustapo':44C 'käydä':175C 'käytänö':27C 'loves':2A,8B,113C 'luoda':48C 'luoma':15B,98C,120C 'luomis':94C 'läht':34C 'm':57C 'maksuto':164C 'meetup':143C,151C 'men':26C 'minkäl':72C 'muuto':31C 'muutoks':37C,46C 'myös':66C,146C,176C 'ohjelm':136C 'oppim':11B,116C 'osallistum':13B,118C 'ottam':101C 'palj':54C 'palvelu':70C,93C 'pian':140C 'pohjoisesplanad':132C 'puhu':138C 'päättäj':90C 'rakennuks':58C 'ratkaisu':19B,51C,99C,124C 'sopiv':39C 'suome':177C 'suur':30C 'tapahtum':144C 'tarj':77C 'tarp':169C 'tarv':38C 'tehd':45C 'tervetulo':6B,106C 'tilaisuud':135C 'tilaisuus':125C,159C,165C 'tilaisuut':10B,115C 'tulev':35C 'uus':49C 'vapaast':65C 'verkostoitum':12B,117C 'voi':145C 'voida':174C 'voim':42C 'voisi':81C 'vuos':36C 'vuote':24C 'www.facebook.com':154C 'www.facebook.com/events/345294636334326/':153C 'www.meetup.com':157C 'www.meetup.com/open-data-finland/events/260668131/':156C 'yhd':16B,121C 'ymmärt':43C 'ympäristödat':75C", "search_vector_en": "'/events/345294636334326/':209C '/open-data-finland/events/260668131/':212C '2035':36C 'aim':29C 'also':78C,184C,202C 'analyt':107C 'appropri':51C 'avail':79C,97C 'benefit':128C 'boost':4A,25B,150C 'build':72C 'carbon':33C 'carbon-neutr':32C 'chang':49C,60C 'charg':170C 'citi':193C 'co':21B,146C 'co-creat':20B,145C 'come':46C 'compani':115C 'consumpt':57C,75C 'contribut':18B,143C 'creat':22B,62C,110C,124C,147C 'data':52C,70C,84C,95C,103C,106C,132C 'decis':117C 'decision-mak':116C 'develop':3A,13B,137C 'digit':111C 'discuss':182C 'e.g':71C,104C 'encourag':121C 'energi':5A,26B,43C,74C,92C,151C 'english':177C 'entranc':196C 'environment':94C 'etc':119C 'event':14B,138C,162C,172C,200C 'everyon':166C 'facebook':204C 'finnish':188C 'free':168C 'get':127C 'habit':58C 'hall':194C 'held':175C,186C 'helsinki':1A,8A,11B,28C,65C,120C,135C,192C 'hous':114C 'hri.fi':86C 'huge':42C 'kind':90C 'learn':16B,140C 'lobbi':197C 'lot':67C 'love':2A,12B,136C 'make':59C 'maker':118C 'mean':40C 'meetup':206C 'need':190C 'network':17B,142C 'neutral':34C 'open':83C,131C,164C 'order':54C 'practis':38C 'present':180C 'program':154C 'publish':159C 'requir':50C 'servic':87C,112C 'solut':23B,64C,125C,148C 'soon':160C 'speaker':156C 'sustain':63C 'tapahtumatori':198C 'transit':6A,27B,44C,152C 'understand':56C 'use':69C 'utilis':101C 'venu':191C 'via':85C 'welcom':9B,133C 'www.facebook.com':208C 'www.facebook.com/events/345294636334326/':207C 'www.meetup.com':211C 'www.meetup.com/open-data-finland/events/260668131/':210C 'year':47C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsinki haluaa olla hiilineutraali vuoteen 2035 mennessä – käytännössä tämä edellyttää suurta muutosta energiankulutuksessa ja -lähteissä tulevina vuosina! Muutoksessa tarvitaan sopivaa dataa, jotta voimme ymmärtää kulutustapoja, tehdä muutoksia ja luoda uusia, kestäviä ratkaisuja. Helsingillä on paljon hyödyllistä dataa mm. rakennuksista ja energiankulutuksesta. Nämä avoimet datat ovat vapaasti myös sinun hyödynnettävissä hri.fi-palvelussa.</p><p>Mutta minkälaista energia- ja ympäristödataa on tarjolla? Ja kuinka dataa voisi hyödyntää esimerkiksi data-analytiikassa ja kiinteistöyhtiöille tai päättäjille kohdennettujen digitaalisten palvelujen luomisessa? Helsinki kannustaa sinua luomaan ratkaisuja ja ottamaan hyödyn irti avoimesta datasta! Tervetuloa ke 22.5.2019 klo 15-18 Helsinki Loves Developers -tilaisuuteen oppimaan, verkostoitumaan, osallistumaan ja luomaan yhdessä energianmuutosta edistäviä ratkaisuja!</p><p>Tilaisuus järjestetään Helsingin kaupungintalon ala-aulassa (Pohjoisesplanadi 11-13). Tilaisuuden ohjelma ja puhujat julkaistaan pian Facebookissa ja MeetUpissa. Tapahtumaan voi myös ilmoittautua joko Facebookin tai MeetUpin kautta.</p><p>https://www.facebook.com/events/345294636334326/<br>https://www.meetup.com/Open-Data-Finland/events/260668131/</p><p>Tilaisuus on kaikille avoin ja maksuton. Tilaisuus järjestetään englanniksi, mutta tarpeen mukaan esittelyjä ja keskustelua voidaan käydä myös suomeksi.</p>", "en": "<p>Helsinki aims to be carbon-neutral in 2035 - in practise this means a huge energy transition in coming years! The change requires appropriate data in order to understand consumption habits, make changes and create sustainable solutions. Helsinki has lots of useful data, e.g. buildings and energy consumption. These are also available for you as open data via hri.fi service.</p><p>But which kind of energy and environmental data is available? And how to utilise this data e.g. in data analytics or in creating digital services for housing companies, decision-makers etc.? Helsinki encourages you to create solutions and get benefits out of open data!</p><p>Welcome to Helsinki Loves Developers event to learn more, network, contribute and co-create solutions to boost energy transition!</p><p>A program and speakers will be published soon.</p><p>This event is open for everyone and free of charge. The event will be held in English but some presentations and discussions can also be held in Finnish if needed.</p><p>Venue: Helsinki City Hall, the entrance lobby (Tapahtumatori)</p><p>This event is also at Facebook and Meetup: https://www.facebook.com/events/345294636334326/<br>https://www.meetup.com/Open-Data-Finland/events/260668131/</p>" }, "location_extra_info": { "fi": "Helsingin kaupungintalon ala-aulan Tapahtumatori", "en": "Venue: Helsinki City Hall, the entrance lobby (Tapahtumatori)" }, "name": { "fi": "Helsinki Loves Developers: Energiarenessanssi Helsingissä", "en": "Helsinki Loves Developers: Boosting energy transition in Helsinki" }, "short_description": { "fi": "Tervetuloa Helsinki Loves Developers -tilaisuuteen oppimaan, verkostoitumaan, osallistumaan ja luomaan yhdessä energianmuutosta edistäviä ratkaisuja!", "en": "Welcome to Helsinki Loves Developers event to learn, network, contribute and co-create solutions to boost energy transition!" }, "provider": { "fi": "Helsinki Region Infoshare", "en": "Helsinki Region Infoshare" }, "info_url": { "fi": "https://hri.fi/fi/helsinki-loves-developers-energiarenessanssi-helsingissa/", "en": "https://hri.fi/en_gb/helsinki-loves-developers-boosting-energy-transition/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afvctvbxkq/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afr5se67ou", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p725/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p755/" } ], "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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2018-06-07T07:09:08.341989Z", "last_modified_time": "2018-06-07T07:09:08.350004Z", "date_published": null, "start_time": "2018-06-15T14:30:00Z", "end_time": null, "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": true, "search_vector_fi": "'1917':16C '1924':40C 'aiko':54C 'alkuperäis':23C 'and':62C 'arkkiteht':28C 'café':17C 'carlos':32C,60C 'chamber':68C 'contur':43C 'cumpars':6B 'cumparsit':12C,49C 'danz':76C 'de':75C 'ensim':13C,36C 'escuel':73C 'firpo':8C 'gardel':2A,33C,61C 'gerardo':29C,63C 'girald':19C 'juhlasal':78C 'kaik':53C 'kaupungintalo':77C 'kert':14C,37C 'kirjoittanu':45C 'la':5B,11C,18C,48C 'levyt':34C 'matos':30C,64C 'montevideo':22C 'muotoutunu':51C 'musi':24C 'music':69C 'musiik':59C 'nacional':74C 'nuori':27C 'orchestr':70C 'orkester':9C 'pascual':42C 'pääkaupung':21C 'roberto':7C 'rodriguez':31C,65C 's':67C,72C 'sana':47C 'sodr':66C,71C 'soit':10C 'suite':1A 'suositu':57C 'säveltäny':26C 'tango':58C 'to':4B 'tribut':3B 'tunnetu':55C 'uruguay':20C 'vas':38C 'vuon':15C,39C 'yks':52C", "search_vector_en": "'1917':13C '1924':54C 'architect':43C 'ballroom':108C 'café':27C 'carlo':56C,83C 'chamber':94C 'citi':32C,106C 'compos':39C 'contursi':69C 'convert':72C 'cumparsita':6B,11C,20C 'dancer':97C 'danza':104C 'de':103C 'discoveri':71C 'emblemat':77C 'escuela':101C 'firpo':15C 'first':23C,58C 'gardel':2A,57C,84C 'gerardo':44C,86C 'giralda':29C 'hall':107C 'helsinki':105C 'interpret':89C 'la':5B,10C,19C,28C 'lyric':65C 'mato':45C,87C 'montevideo':34C 'music':37C,80C,82C,95C 'nacion':102C 'orchestra':17C,96C 'origin':36C 'pascual':68C 'piec':78C 'play':18C 'record':59C 'roberto':14C 'rodriguez':46C,88C 'sodr':92C,99C 'song':63C 'suit':1A 'tango':74C 'time':24C 'tribut':3B,8C 'worldwid':81C 'written':66C 'year':53C 'young':42C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Roberto Firpon orkesteri soitti La Cumparsitan ensimmäistä kertaa vuonna 1917 Café la Giraldassa, Uruguayn pääkaupungissa Montevideossa.</p><p>Alkuperäisen musiikin on säveltänyt nuori arkkitehti Gerardo Matos Rodriguez. Carlos Gardel levytti sen ensimmäistä kertaa vasta vuonna 1924, kun Pascual Contursi oli kirjoittanut siihen sanat.</p><p>La Cumparsitasta on muotoutunut yksi kaikkien aikojen tunnetuimmista ja suosituimmista tangoista.</p><p>Musiikki:<br/>Carlos Gardel and Gerardo Matos Rodriguez</p><p>Sodre's Chamber Music Orchestra</p><p>Sodre´s Escuela Nacional de Danza</p><p>Kaupungintalo, juhlasali</p>", "en": "<p>A Tribute to La Cumparsita </p><p>In 1917, Roberto Firpo's Orchestra played La Cumparsita for the first time at the Café la Giralda in the City of Montevideo. </p><p>The original music was composed by a young architect, Gerardo Matos Rodriguez. But, it was not until the year 1924 when Carlos Gardel first recorded it as a song with lyrics written by Pascual Contursi. </p><p>The discovery converted this tango as an emblematic piece of music worldwide.</p><p>Music:<br/>Carlos Gardel and Gerardo Matos Rodriguez</p><p>Interpreted by the Sodre's Chamber Music Orchestra</p><p>Dancers from Sodre´s Escuela Nacional de Danza</p><p>Helsinki City Hall, Ballroom<br/></p>" }, "location_extra_info": null, "name": { "fi": "Suite Gardel", "en": "Suite Gardel" }, "short_description": { "fi": "Tribute to La Cumparsita", "en": "Tribute to La Cumparsita" }, "provider": { "fi": "Uruguayn Suurlähetystö", "en": "Embassy of Uruguay" }, "info_url": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afr5se67ou/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afr3jnx5sm", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7765/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/283522962186595/", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2018-05-31T05:41:21.427163Z", "last_modified_time": "2018-05-31T09:44:09.759290Z", "date_published": null, "start_time": "2018-06-06T13:00:00Z", "end_time": "2018-06-06T15: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": true, "search_vector_fi": "'/e/participation-design-in-the-city-of-helsinki-tickets-46060373818':47C 'aktivism':11B,24C 'br':44C 'city':5A 'desig':2A 'ennakkoilmoittautumin':43C 'helsink':7A 'in':3A 'innovaatio':9B,22C 'julkis':13B,26C 'kahd':18B,31C 'kaik':35C 'keskittyv':17B,30C 'keskustelem':37C 'kutsu':34C 'kysymyks':16B,29C 'merkityks':39C 'monimutk':15B,28C 'muotoilu':10B,23C,38C 'of':6A 'participatio':1A 'pääsy':42C 'sektor':14B,27C 'seminaar':20B,33C 'sosiaalis':8B,21C 'the':4A 'tun':19B,32C 'vapa':41C 'www.eventbrite.com':46C 'www.eventbrite.com/e/participation-design-in-the-city-of-helsinki-tickets-46060373818':45C 'yhteiskun':40C", "search_vector_en": "'/e/participation-design-in-the-city-of-helsinki-tickets-46060373818':211C '/social':169C '00':159C,201C '10':166C '16':158C,165C,181C,186C '18':200C '20':182C '35':187C 'activist':78C 'adopt':11B,30C 'alreadi':123C 'appli':109C 'approach':116C 'around':93C 'becom':146C 'book':208C 'bring':103C 'bump':129C 'challeng':98C 'chang':119C,150C,173C 'changer':84C 'citi':5A,24B,43C,53C,60C,193C 'collabor':115C 'collect':145C 'combin':175C 'come':132C 'communiti':177C 'complex':96C 'convers':92C 'deepen':133C 'design':2A,54C,77C,110C,176C,196C 'discuss':190C 'done':124C 'effect':148C 'end':203C 'entri':205C 'especi':21B,40C 'even':90C 'event':47C,202C 'exchang':73C 'experi':138C 'finland':19B,38C,174C 'flourish':157C 'folk':199C 'free':204C 'get':160C 'great':67C 'helsinki':7A,26B,45C,62C,195C 'idea':74C 'innov':76C,170C,180C 'intent':100C 'invit':87C 'keep':128C 'know':162C 'made':49C 'meet':70C,191C 'method':111C 'might':144C 'mikael':167C 'network':135C 'obstacl':131C 'offici':80C 'open':188C 'opportun':68C 'particip':1A,56C,198C 'peopl':105C 'planner':57C 'possibl':50C,183C 'pre':207C 'pre-book':206C 'promot':12B,31C 'public':79C 'respond':94C 'second':184C 'see':156C 'seppälä':168C 'share':136C 'social':75C,97C,179C 'space':189C 'success':126C 'system':112C,118C,152C,172C 'talk':140C,185C 'think':16B,35C,113C 'togeth':104C 'type':14B,33C 've':122C 'want':107C,154C 'whether':120C 'world':83C 'www.eventbrite.com':210C 'www.eventbrite.com/e/participation-design-in-the-city-of-helsinki-tickets-46060373818':209C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Sosiaalisiin innovaatioihin, muotoiluun, aktivismiin ja julkisen sektorin monimutkaisiin kysymyksiin keskittyvä kahden tunnin seminaari kutsuu kaikki mukaan keskustelemaan muotoilun merkityksestä yhteiskunnassa. </p><p>Vapaa pääsy, ennakkoilmoittautuminen:<br>https://www.eventbrite.com/e/participation-design-in-the-city-of-helsinki-tickets-46060373818</p>", "en": "<p>How can we adopt promote this type of thinking here in Finland and especially in the City of Helsinki? The event is made possible by the city designers and participation planners of the City of Helsinki and it’s a great opportunity to meet them and exchange ideas. </p><p>Social innovator, designer, activist, public official or other world changer are all invited to an evening of conversation around responding to complex social challenges.</p><p>The intention is to bring together people who want to apply design methods, systems thinking and collaborative approaches to systems change. Whether you've already done that successfully or keep bumping into obstacles, come deepen your network, share your experiences and talk about how we might collectively become more effective at changing the systems we want to see flourish.</p><p>16:00 Getting to know each other <br/>16:10 Mikael Seppälä/Social Innovation for Systems Change Finland: Combining Design & Communities for Social Innovation<br/> 16:20 Possible second talk<br/> 16:35 Open Space -discussions & meeting the City of Helsinki Designers and Participation folks <br/> 18:00 Event Ends</p><p>Free entry, pre-booking: https://www.eventbrite.com/e/participation-design-in-the-city-of-helsinki-tickets-46060373818</p>" }, "location_extra_info": null, "name": { "fi": "Participation & Design in the City of Helsinki", "en": "Participation & Design in the City of Helsinki" }, "short_description": { "fi": "Sosiaalisiin innovaatioihin, muotoiluun, aktivismiin ja julkisen sektorin monimutkaisiin kysymyksiin keskittyvä kahden tunnin seminaari", "en": "How can we adopt promote this type of thinking here in Finland and especially in the City of Helsinki? " }, "provider": { "fi": "Social Innovation for Systems Change Finland", "en": "Social Innovation for Systems Change Finland" }, "info_url": { "fi": "https://www.facebook.com/events/283522962186595/", "en": "https://www.facebook.com/events/283522962186595/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afr3jnx5sm/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afrqmedtiu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:8/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5164/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7765/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/Kaupunkioletsina/", "language": "fi" } ], "offers": [ { "is_free": false, "price": { "fi": "Ilmainen" }, "info_url": { "fi": "" }, "description": { "fi": "" } } ], "data_source": "helsinki", "publisher": "ahjo:02100", "sub_events": [], "images": [ { "id": 43906, "license": "cc_by", "created_time": "2018-04-27T07:47:51.734257Z", "last_modified_time": "2018-04-27T07:47:51.734276Z", "name": "be9e1.jpg", "url": "http://i63.tinypic.com/be9e1.jpg", "cropping": "", "photographer_name": "Eetu Ahanen / Helsinki Marketing", "alt_text": null, "data_source": "helsinki", "publisher": "ahjo:02100", "@id": "http://api.hel.fi/linkedevents/v1/image/43906/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2018-04-27T07:45:31.461264Z", "last_modified_time": "2018-05-18T17:51:39.841460Z", "date_published": null, "start_time": "2018-05-31T06:00:00Z", "end_time": "2018-05-31T13: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": true, "search_vector_fi": "'/kanava/fi.':118C '1':205C '10.00':142C '11.00':152C '12.00':154C '12.15':159C '12.45':174C '13.30':190C '13.40':194C '14.10':196C '16.00':198C '16.30':201C '2':243C '2018':33C '3':271C '31.5':49C '4':303C '5':327C '8.30':120C '9.00':124C '9.15':130C 'a':361C 'aamukahv':123C 'aihe':85C 'aika':34C 'aja':138C 'ajatushautomo':103C 'aktiivis':57C 'aloit':223C 'alue':206C 'alueellin':214C 'alueellis':236C 'aluepäällikö':187C 'and':144C 'anttil':102C 'apulaispormestar':79C,127C 'asiantuntij':55C,94C 'askel':239C 'asuinalue':211C 'asuk':222C,310C 'aut':219C 'ava':78C,320C 'avaus':126C 'avu':256C,297C 'blomberg':182C 'budjet':272C 'budjetoin':64C,179C,255C,275C,280C,292C 'budjetoint':156C,166C,249C,307C 'cities':87C 'demos':104C 'dialog':231C 'director':148C 'edist':227C 'ehdot':312C 'ehdotuks':301C 'el':358C 'eli':216C 'ella.tanskanen':360C 'ent':38C 'eri':228C 'ertiö':185C 'es':208C,264C 'eteenp':221C 'etsim':268C 'executiv':147C 'fasilitaattor':354C 'government':143C 'hankeideo':293C 'hel.fi':362C 'hellon':283C 'helsing':4A,12B,24C,43C,105C,131C,164C,210C,331C 'helsink':114C 'helsinki-kanav':113C 'hentton':173C 'hyvä':318C 'ide':263C 'ideo':316C 'ideoim':278C 'iku':305C 'ilmoittautumin':107C,121C 'its':145C 'j':96C,150C 'jaako':181C 'jo':347C 'johannes':101C 'johdo':355C 'johtaj':91C 'juont':99C 'kahvitau':195C 'kaik':209C,246C,257C 'kairimo':189C 'kanav':115C 'kansainväl':83C 'katj':172C 'katr':188C 'kaupung':21B,25C,317C,338C 'kaupunk':52C,74C,162C 'kaupunkiaktiv':180C 'kaupunkilais':35C,58C,258C 'kaupunkilaist':157C 'kaupunkiosallistumis':93C 'kehit':295C,313C 'kehittämisehdotuks':225C 'kehittämispäällikö':167C 'kero':285C 'keskustel':66C 'keskustelem':18B,266C 'keskustelu':177C 'kevä':32C 'kick':6A,45C 'kiinnostav':61C 'kir':168C 'koken':353C 'kommenttipuheenvuoro':175C 'konkreettis':300C,345C 'kuink':253C 'kulttuur':134C 'kutsu':50C 'kuule':60C 'kuulu':245C 'kuuluv':261C 'käynt':16B,31C 'käyttäjälähtö':325C 'käytäntöj':270C 'laitio':141C 'lee':97C,151C 'lisätiedo':356C 'lounas':153C 'luom':299C 'maailm':336C 'maine':335C 'mite':72C,290C 'monipuolis':39C 'muodo':69C 'muotoilem':233C 'myung':95C,149C 'nasim':80C,128C 'niittäny':334C 'nimety':213C 'näkyy':37C 'näkökulm':62C,84C 'of':7A,46C,88C 'ohjelm':119C 'op':328C 'oppin':341C 'osallistu.hel.fi':304C,308C 'osallistuv':63C,155C,165C,178C,248C,254C,274C,279C,291C,306C 'osallisuud':19B,54C,67C,191C,237C,342C 'osallisuus':27C,244C,250C 'osallisuusmal':5A,13B,44C,132C 'osallisuuspel':332C,352C 'osallisuussuunnitelm':346C 'osallisuut':3A,42C,329C 'palvelu':309C 'palvelumuotoilutoimisto':282C 'paremp':73C 'parh':269C 'pel':273C,281C,296C,302C 'pelaam':330C,351C 'pelillistämin':276C 'pelillistämis':286C 'pelituokio':349C 'peopl':146C 'periaat':133C 'pohd':288C 'potk':14B,30C 'potku':2A,41C 'projektipäällikö':171C 'päättyny':109C 'päätyy':203C 'raken':75C 'rakentamis':22B 'rakentan':344C 'rakentu':251C 'razmyar':81C,129C 'saava':259C 'sado':348C 'seminaar':9B,47C,59C,98C,106C,110C,125C,202C,357C 'servic':89C 'seura':112C 'seuraav':238C 'silm':158C 'stadiluo':217C 'stadiluots':241C 'suunnittelu':326C 'tanskan':359C 'tavoit':323C 'tehd':160C 'tervetulo':265C,277C 'tilaisuud':77C 'titi':184C 'toimialajohtaj':139C 'toiminnallis':322C 'toimiv':161C 'tom':140C 'torst':48C 'tule':17B,232C,350C 'tuore':26C 'tutkij':100C 'tutkijatohtor':183C 'tutu':193C 'työntekij':53C,215C,339C 'työpaj':192C,197C,199C,204C,319C 'täyn':1A,11B 'uudistus':36C 'uus':68C 'vaikuttamismahdollisuuks':40C 'valitettav':8B 'vapa':137C 'vapaa-aj':136C 'verk':169C 'verkkopalvelu':321C 'verkosto':90C 'viemä':220C 'voi':111C,294C 'voiva':311C 'vuorovaikutusmal':29C 'väestöryhm':229C 'väl':230C 'www.helsinkikanava.fi':117C 'www.helsinkikanava.fi/kanava/fi.':116C 'yhd':23B,76C,163C,240C,289C 'yhdenvertain':247C 'yhdenvertaisuud':252C 'yht':51C 'yhteenveto':200C 'yhteistyö':234C 'ääne':207C,260C 'äänest':315C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Helsingin kaupungin tuore osallisuus- ja vuorovaikutusmalli potkaistaan käyntiin kevään 2018 aikana. Kaupunkilaisille uudistus näkyy entistä monipuolisempina vaikuttamismahdollisuuksina.</p><p>Potkua osallisuuteen – Helsingin osallisuusmallin kick off -seminaari torstaina 31.5. kutsuu yhteen kaupunkien työntekijät, osallisuuden asiantuntijat ja aktiiviset kaupunkilaiset. Seminaarissa kuulemme kiinnostavia näkökulmia osallistuvasta budjetoinnista sekä keskustelemme osallisuuden uusista muodoista ja siitä, miten parempaa kaupunkia rakennetaan yhdessä.</p><p>Tilaisuuden avaa apulaispormestari Nasima Razmyar, ja kansainvälistä näkökulmaa aiheeseen tuo Cities of Service -verkoston johtaja ja kaupunkiosallistumisen asiantuntija Myung J. Lee. Seminaarin juontaa tutkija Johannes Anttila ajatushautomo Demos Helsingistä.</p><p>Seminaariin ilmoittautuminen on päättynyt.</p><p>Seminaaria voi seurata Helsinki-kanavalla https://www.helsinkikanava.fi/kanava/fi.</p><p><br/>Ohjelma</p><p>8.30 Ilmoittautuminen ja aamukahvit<br/>9.00 Seminaarin avaus, apulaispormestari Nasima Razmyar<br/>9.15 Helsingin osallisuusmallin periaatteet, kulttuurin ja vapaa-ajan toimialajohtaja Tommi Laitio<br/>10.00 Government and its People, Executive Director Myung J. Lee<br/>11.00 Lounas<br/>12.00 Osallistuva budjetointi kaupunkilaisten silmin<br/>12.15 Tehdään toimiva kaupunki yhdessä – Helsingin osallistuva budjetointi<br/>Kehittämispäällikkö Kirsi Verkka ja projektipäällikkö Katja Henttonen<br/>12.45 Kommenttipuheenvuorot ja keskustelua osallistuvasta<br/>budjetoinnista<br/>Kaupunkiaktivisti Jaakko Blomberg, tutkijatohtori Titi Ertiö ja<br/>aluepäällikkö Katri Kairimo<br/>13.30 Osallisuuden työpajat tutuksi<br/>13.40 Kahvitauko<br/>14.10 Työpajat<br/>16.00 Työpajojen yhteenveto<br/>16.30 Seminaari päättyy</p><p><br/>Työpajat</p><p>1. Alueiden äänet esiin<br/>Kaikille Helsingin asuinalueille on nimetty alueellinen työntekijä eli stadiluotsi, joka auttaa viemään eteenpäin asukkaiden aloitteita ja kehittämisehdotuksia<br/>sekä edistää eri väestöryhmien välistä dialogia. Tule muotoilemaan yhteistyön ja alueellisen osallisuuden seuraavia askelia yhdessä stadiluotsien kanssa.</p><p>2. Osallisuus kuuluu kaikille – yhdenvertainen osallistuva budjetointi<br/>Osallisuus rakentuu yhdenvertaisuudelle. Kuinka osallistuvan budjetoinnin avulla kaikki kaupunkilaiset saavat äänensä kuuluviin ja ideansa esiin? Tervetuloa keskustelemaan ja etsimään parhaita käytäntöjä.</p><p>3. Budjetti pelissä – osallistuvan budjetoinnin pelillistäminen<br/>Tervetuloa ideoimaan osallistuvan budjetoinnin peliä palvelumuotoilutoimisto Hellonin kanssa. Kerromme pelillistämisestä sekä pohdimme yhdessä, miten<br/>osallistuvan budjetoinnin hankeideoita voi kehitellä pelin avulla ja luomme konkreettisen ehdotuksen pelistä.</p><p>4. Osallistu.hel.fi – ikkuna osallistuvaan budjetointiin<br/>Osallistu.hel.fi-palvelussa asukkaat voivat ehdottaa, kehittää ja äänestää ideoita kaupungin hyväksi. Työpajassa avaamme verkkopalvelun toiminnallisia tavoitteita ja käyttäjälähtöistä suunnittelua.</p><p>5. Opitaan osallisuutta pelaamalla<br/>Helsingin osallisuuspeli on niittänyt mainetta maailmalla, ja kaupungin työntekijät ovat oppineet osallisuudesta ja rakentaneet konkreettisia osallisuussuunnitelmia jo sadoissa pelituokioissa. Tule pelaamaan osallisuuspeliä kokeneiden fasilitaattoreiden johdolla!</p><p><br/>Lisätiedot seminaarista:</p><p>Ella Tanskanen<br/>ella.tanskanen (a) hel.fi</p>" }, "location_extra_info": { "fi": "", "en": "" }, "name": { "fi": "TÄYNNÄ Potkua osallisuuteen - Helsingin osallisuusmallin kick off", "en": "" }, "short_description": { "fi": "Valitettavasti seminaari on täynnä. Helsingin osallisuusmalli potkaistaan nyt käyntiin. Tule keskustelemaan osallisuudesta ja kaupungin rakentamisesta yhdessä." }, "provider": { "en": "" }, "info_url": { "fi": "https://www.hel.fi/helsinki/fi/kaupunki-ja-hallinto/osallistu-ja-vaikuta/vaikuttamiskanavat/osallisuus-ja-vuorovaikutusmalli/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afrqmedtiu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:14306", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": { "fi": "https://www.hel.fi/kanslia/virka-fi" }, "description": null } ], "data_source": "hko", "publisher": "ahjo:46104", "sub_events": [], "images": [ { "id": 42235, "license": "event_only", "created_time": "2018-02-02T12:15:27.699165Z", "last_modified_time": "2018-02-02T12:15:27.699186Z", "name": "kaupungintalo14-03-09001.jpg", "url": "http://helsinginkaupunginorkesteri.fi/sites/default/files/images/concert/73efb9f8-eb6a-4a3f-b02b-a1ef7678cc57/kaupungintalo14-03-09001.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:46104", "@id": "http://api.hel.fi/linkedevents/v1/image/42235/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2018-02-02T12:15:28.001929Z", "last_modified_time": "2018-05-12T07:00:10.212977Z", "date_published": null, "start_time": "2018-05-12T11:00:00Z", "end_time": "2018-05-12T12: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": true, "search_vector_fi": "'etukät':24C 'hko':7C 'juhlasal':12C 'kamarimusiik':1A 'kamarimusiikkikonsert':3B,5C,10C 'kaupungintalo':2A,4B,6C,11C 'keväis':14C 'kolm':13C 'konsert':16C 'lauant':15C 'lipu':20C 'muusiko':9C 'n':8C 'pääsy':19C 'tervetulo':25C 'vapa':18C 'vara':23C 'voi':22C", "search_vector_en": "'chamber':1A,6B,13C 'citi':4A,11B,18C 'concert':8B,15C 'entranc':21C 'free':20C 'hall':5A,12B,19C 'helsinki':10B,17C 'music':2A,7B,14C", "search_vector_sv": "'fritt':12C 'helsingfor':6B,10C 'inträd':13C 'kammarmusik':1A 'kammarmusikkonsert':4B,8C 'stadshus':7B,11C 'stadshuset':3A", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kamarimusiikkikonsertti kaupungintalolla</p>HKO:n muusikoiden kamarimusiikkikonsertit kaupungintalon juhlasalissa kolmena keväisenä lauantaina. Konserttiin on vapaa pääsy, lippuja ei voi varata etukäteen. Tervetuloa!", "sv": "<p>Kammarmusikkonsert i Helsingfors stadshus</p><p>Fritt inträde.</p>", "en": "<p>Chamber music concert at Helsinki City Hall </p>Free entrance!" }, "location_extra_info": { "fi": "Kaupungintalo", "sv": "Stadshuset", "en": "City Hall" }, "name": { "fi": "Kamarimusiikkia kaupungintalolla", "sv": "Kammarmusik i stadshuset ", "en": "Chamber music at City Hall" }, "short_description": { "fi": "Kamarimusiikkikonsertti kaupungintalolla", "sv": "Kammarmusikkonsert i Helsingfors stadshus", "en": "Chamber music concert at Helsinki City Hall " }, "provider": null, "info_url": { "fi": "http://helsinginkaupunginorkesteri.fi/fi/node/14306", "sv": "http://helsinginkaupunginorkesteri.fi/sv/node/14306", "en": "http://helsinginkaupunginorkesteri.fi/en/node/14306" }, "@id": "http://api.hel.fi/linkedevents/v1/event/hko:14306/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afrslz2q54", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15875/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/370906356726460/", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2018-05-03T12:08:26.607727Z", "last_modified_time": "2018-05-03T12:08:26.612572Z", "date_published": null, "start_time": "2018-05-07T13:00:00Z", "end_time": "2018-05-07T14: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": true, "search_vector_fi": "'/forms/d/e/1faipqlsde_luggibkcq71iz21i4j8eta3flauwt52yvptx_gftrmxba/viewform?usp=sf_link':33C 'bureaucracy':5A 'charles':1A,16B,28C 'creativ':4A 'docs.google.com':32C 'docs.google.com/forms/d/e/1faipqlsde_luggibkcq71iz21i4j8eta3flauwt52yvptx_gftrmxba/viewform?usp=sf_link':31C 'englanninkielis':9B,21C 'ennakkoilmoittautumin':30C 'järjest':7B,19C 'kaupungintalo':8B,20C 'kaupunkiakatem':6B,18C 'kaupunkitutkij':15B,27C 'kirjailij':13B,25C 'landry':2A,17B,29C 'lueno':10B,22C 'pitä':12B,24C 'the':3A", "search_vector_en": "'/forms/d/e/1faipqlsde_luggibkcq71iz21i4j8eta3flauwt52yvptx_gftrmxba/viewform?usp=sf_link':62C 'author':9B,33C 'bureaucraci':5A,15B,29B,39C,53C 'charl':1A,10B,34C 'creativ':4A,14B,38C 'docs.google.com':61C 'docs.google.com/forms/d/e/1faipqlsde_luggibkcq71iz21i4j8eta3flauwt52yvptx_gftrmxba/viewform?usp=sf_link':60C 'event':59C 'guest':6B,30C 'hidden':21B,45C 'landri':2A,11B,35C 'lectur':7B,31C 'lock':25B,49C 'plese':54C 'potenti':22B,46C 'public':28B,52C 'reservoir':19B,43C 'sign':55C 'talent':24B,48C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kaupunkiakatemia järjestää kaupungintalolla englanninkielisen luennon, jonka pitää <br/>kirjailija ja kaupunkitutkija Charles Landry. </p><p>Ennakkoilmoittautuminen: <br/>https://docs.google.com/forms/d/e/1FAIpQLSdE_luggiBKcQ71iZ21i4j8eTA3FLAUwT52yVPTx_GFTRmXBA/viewform?usp=sf_link</p>", "en": "<p>Guest lecture by author Charles Landry on the creative bureaucracy. \"There is a reservoir of hidden potential and talent locked up in public bureaucracies.”</p><p>Plese sign up for the event: <br/>https://docs.google.com/forms/d/e/1FAIpQLSdE_luggiBKcQ71iZ21i4j8eTA3FLAUwT52yVPTx_GFTRmXBA/viewform?usp=sf_link</p>" }, "location_extra_info": null, "name": { "fi": "Charles Landry: The Creative Bureaucracy", "en": "Charles Landry: The Creative Bureaucracy" }, "short_description": { "fi": "Kaupunkiakatemia järjestää kaupungintalolla englanninkielisen luennon, jonka pitää \nkirjailija ja kaupunkitutkija Charles Landry. ", "en": "Guest lecture by author Charles Landry on the creative bureaucracy. \"There is a reservoir of hidden potential and talent locked up in public bureaucracies.”" }, "provider": { "fi": "Kaupunkiakatemia", "en": "Kaupunkiakatemia" }, "info_url": { "fi": "https://www.facebook.com/events/370906356726460/", "en": "https://www.facebook.com/events/370906356726460/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afrslz2q54/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:14303", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": { "fi": "https://www.hel.fi/kanslia/virka-fi" }, "description": null } ], "data_source": "hko", "publisher": "ahjo:46104", "sub_events": [], "images": [ { "id": 42234, "license": "event_only", "created_time": "2018-02-02T12:15:27.187510Z", "last_modified_time": "2018-02-02T12:15:27.187529Z", "name": "kaupungintalo14-03-09001.jpg", "url": "http://helsinginkaupunginorkesteri.fi/sites/default/files/images/concert/73efb9f8-eb6a-4a3f-b02b-a1ef7678cc57/kaupungintalo14-03-09001.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:46104", "@id": "http://api.hel.fi/linkedevents/v1/image/42234/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2018-02-01T10:15:28.729733Z", "last_modified_time": "2018-04-07T11:15:14.232799Z", "date_published": null, "start_time": "2018-04-07T11:00:00Z", "end_time": "2018-04-07T12: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": true, "search_vector_fi": "'etukät':26C 'hko':9C 'juhlasal':5B,8C,14C 'kamarimusiik':1A 'kamarimusiikkikonsert':3B,6C,12C 'kaupungintalo':2A,4B,7C,13C 'keväis':16C 'kolm':15C 'konsert':18C 'lauant':17C 'lipu':22C 'muusiko':11C 'n':10C 'pääsy':21C 'tervetulo':27C 'vapa':20C 'vara':25C 'voi':24C", "search_vector_en": "'chamber':1A,6B,13C 'citi':4A,11B,18C 'concert':8B,15C 'ei':34C 'etukäteen':37C 'hall':5A,12B,19C 'helsinki':10B,17C 'hko':20C 'juhlasalissa':25C 'kamarimusiikkikonsertit':23C 'kaupungintalon':24C 'keväisenä':27C 'kolmena':26C 'konserttiin':29C 'lauantaina':28C 'lippuja':33C 'music':2A,7B,14C 'muusikoiden':22C 'n':21C 'pääsi':32C 'tervetuloa':38C 'vapaa':31C 'varata':36C 'voi':35C", "search_vector_sv": "'fritt':12C 'helsingfor':6B,10C 'inträd':13C 'kammarmusik':1A 'kammarmusikkonsert':4B,8C 'stadshus':7B,11C 'stadshuset':3A", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kamarimusiikkikonsertit kaupungintalon juhlasalissa</p> <p>HKO:n muusikoiden kamarimusiikkikonsertit kaupungintalon juhlasalissa kolmena keväisenä lauantaina. Konserttiin on vapaa pääsy, lippuja ei voi varata etukäteen. Tervetuloa!</p>", "sv": "<p>Kammarmusikkonserter i Helsingfors stadshus</p><p>Fritt inträde.</p>", "en": "<p>Chamber music concerts at Helsinki City Hall</p><p>HKO:n muusikoiden kamarimusiikkikonsertit kaupungintalon juhlasalissa kolmena keväisenä lauantaina. Konserttiin on vapaa pääsy, lippuja ei voi varata etukäteen. Tervetuloa!</p>" }, "location_extra_info": { "fi": "Kaupungintalo", "sv": "Stadshuset", "en": "City Hall" }, "name": { "fi": "Kamarimusiikkia kaupungintalolla", "sv": "Kammarmusik i stadshuset ", "en": "Chamber music at City Hall" }, "short_description": { "fi": "Kamarimusiikkikonsertit kaupungintalon juhlasalissa\n\n\n\n\n\n ", "sv": "Kammarmusikkonserter i Helsingfors stadshus", "en": "Chamber music concerts at Helsinki City Hall" }, "provider": null, "info_url": { "fi": "http://helsinginkaupunginorkesteri.fi/fi/node/14303", "sv": "http://helsinginkaupunginorkesteri.fi/sv/node/14303", "en": "http://helsinginkaupunginorkesteri.fi/en/node/14303" }, "@id": "http://api.hel.fi/linkedevents/v1/event/hko:14303/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afp6hrpbvu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:8/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p12259/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13862/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4679/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p742/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afp6hrovwa/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [ { "name": "extlink_twitter", "link": "https://twitter.com/search?f=tweets&vertical=default&q=%23helvaltuusto", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:02100", "sub_events": [], "images": [ { "id": 40308, "license": "event_only", "created_time": "2017-11-22T12:48:27.926503Z", "last_modified_time": "2017-11-22T12:48:27.926525Z", "name": "Helsingin kaupunginvaltuusto 2017 kesällä.", "url": "http://api.hel.fi/linkedevents/media/images/Kaupunginvaltuusto_OK__2017_0061__webiso.jpg", "cropping": "210,0,790,581", "photographer_name": "Pertti Nisonen / Helsingin kaupunki", "alt_text": null, "data_source": "helsinki", "publisher": "ahjo:02100", "@id": "http://api.hel.fi/linkedevents/v1/image/40308/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2017-11-22T12:48:37.293923Z", "last_modified_time": "2018-03-22T08:53:04.202647Z", "date_published": null, "start_time": "2018-03-28T15:00:16.473000Z", "end_time": "2018-03-28T19:00:16.473000Z", "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": true, "search_vector_fi": "'14':41C 'ajankohtais':14B,26C 'asia':30C 'asio':15B,27C 'edeltäv':38C 'el':9B,21C 'esityslist':34C 'helsing':1A,6B,18C 'helsink':48C 'helsinki-kanav':47C 'julk':36C 'kanav':49C 'kaupung':12B,24C 'kaupunginvaltuusto':2A,4B,16C 'kelo':40C 'kokou':37C,42C 'kokouks':10B,22C,28C 'kokous':3A 'kork':7B,19C 'kotisivu':33C 'käsiteltäv':29C 'lis':35C 'löytyv':31C 'myös':45C 'pääte':11B,23C 'päättäv':8B,20C 'seura':44C 'torst':39C 'tärk':13B,25C 'valtuusto':32C 'verko':46C 'voi':43C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kaupunginvaltuusto on Helsingin korkein päättävä elin. Kokouksessa päätetään kaupungin tärkeistä ajankohtaisista asioista.</p><p>Kokouksessa käsiteltävät asiat löytyvät valtuuston kotisivulta esityslistasta. Lista julkaistaan kokousta edeltävänä torstaina kello 14.</p><p>Kokousta voi seurata myös verkossa <a href=\"http://www.helsinkikanava.fi/www/kanava/fi/sarjat/sarja?id=48\">Helsinki-kanavalla</a>.</p>" }, "location_extra_info": { "fi": "Esteetön pääsy valtuuston lehterille os. Sofiankatu 3." }, "name": { "fi": "Helsingin kaupunginvaltuuston kokous" }, "short_description": { "fi": "Kaupunginvaltuusto on Helsingin korkein päättävä elin. Kokouksessa päätetään kaupungin tärkeistä ajankohtaisista asioista." }, "provider": null, "info_url": { "fi": "http://www.hel.fi/www/Helsinki/fi/kaupunki-ja-hallinto/paatoksenteko/kaupunginvaltuusto/esityslistat/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afp6hrpbvu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afresftfqi", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:8/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p12259/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13862/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4679/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p742/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_twitter", "link": "https://twitter.com/search?f=tweets&vertical=default&q=%23helvaltuusto", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:02100", "sub_events": [], "images": [ { "id": 40308, "license": "event_only", "created_time": "2017-11-22T12:48:27.926503Z", "last_modified_time": "2017-11-22T12:48:27.926525Z", "name": "Helsingin kaupunginvaltuusto 2017 kesällä.", "url": "http://api.hel.fi/linkedevents/media/images/Kaupunginvaltuusto_OK__2017_0061__webiso.jpg", "cropping": "210,0,790,581", "photographer_name": "Pertti Nisonen / Helsingin kaupunki", "alt_text": null, "data_source": "helsinki", "publisher": "ahjo:02100", "@id": "http://api.hel.fi/linkedevents/v1/image/40308/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/sv/" } ], "audience": [], "created_time": "2018-03-21T15:03:47.330823Z", "last_modified_time": "2018-03-21T15:03:47.334172Z", "date_published": null, "start_time": "2018-04-04T15:00:00Z", "end_time": "2018-04-04T19: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": true, "search_vector_fi": "'14':42C 'ajankohtais':15B,27C 'asia':31C 'asio':16B,28C 'edeltäv':39C 'el':10B,22C 'esityslist':35C 'helsing':1A,7B,19C 'helsink':49C 'helsinki-kanav':48C 'julk':37C 'kanav':50C 'kaupung':13B,25C 'kaupunginvaltuusto':2A,5B,17C 'kelo':41C 'kokou':38C,43C 'kokouks':11B,23C,29C 'kokous':4A 'kork':8B,20C 'kotisivu':34C 'käsiteltäv':30C 'lis':36C 'löytyv':32C 'myös':46C 'pääte':12B,24C 'päättäv':9B,21C 'seura':45C 'torst':40C 'tärk':14B,26C 'valtuusto':33C 'verko':47C 'voi':44C 'ylimääräin':3A", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kaupunginvaltuusto on Helsingin korkein päättävä elin. Kokouksessa päätetään kaupungin tärkeistä ajankohtaisista asioista.</p><p>Kokouksessa käsiteltävät asiat löytyvät valtuuston kotisivulta esityslistasta. Lista julkaistaan kokousta edeltävänä torstaina kello 14.</p><p>Kokousta voi seurata myös verkossa <a href=\"http://www.helsinkikanava.fi/www/kanava/fi/sarjat/sarja?id=48\">Helsinki-kanavalla</a>.</p>" }, "location_extra_info": { "fi": "Esteetön pääsy valtuuston lehterille os. Sofiankatu 3." }, "name": { "fi": "Helsingin kaupunginvaltuuston ylimääräinen kokous" }, "short_description": { "fi": "Kaupunginvaltuusto on Helsingin korkein päättävä elin. Kokouksessa päätetään kaupungin tärkeistä ajankohtaisista asioista." }, "provider": null, "info_url": { "fi": "http://www.hel.fi/www/Helsinki/fi/kaupunki-ja-hallinto/paatoksenteko/kaupunginvaltuusto/esityslistat/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afresftfqi/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:14291", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "price": null, "info_url": { "fi": "https://www.hel.fi/kanslia/virka-fi" }, "description": null } ], "data_source": "hko", "publisher": "ahjo:46104", "sub_events": [], "images": [ { "id": 42233, "license": "event_only", "created_time": "2018-02-02T12:15:26.605206Z", "last_modified_time": "2018-02-02T12:15:26.605225Z", "name": "kaupungintalo14-03-09001.jpg", "url": "http://helsinginkaupunginorkesteri.fi/sites/default/files/images/concert/73efb9f8-eb6a-4a3f-b02b-a1ef7678cc57/kaupungintalo14-03-09001.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:46104", "@id": "http://api.hel.fi/linkedevents/v1/image/42233/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2018-01-30T10:15:29.396725Z", "last_modified_time": "2018-03-17T12:15:17.520767Z", "date_published": null, "start_time": "2018-03-17T12:00:00Z", "end_time": "2018-03-17T13: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": true, "search_vector_fi": "'etukät':26C 'hko':9C 'juhlasal':5B,8C,14C 'kamarimusiik':1A 'kamarimusiikkikonsert':3B,6C,12C 'kaupungintalo':2A,4B,7C,13C 'keväis':16C 'kolm':15C 'konsert':18C 'lauant':17C 'lipu':22C 'muusiko':11C 'n':10C 'pääsy':21C 'tervetulo':27C 'vapa':20C 'vara':25C 'voi':24C", "search_vector_en": "'chamber':1A,6B,13C 'citi':4A,11B,18C 'concert':8B,15C 'entranc':21C 'free':20C 'hall':5A,12B,19C 'helsinki':10B,17C 'music':2A,7B,14C", "search_vector_sv": "'fritt':12C 'helsingfor':6B,10C 'inträd':13C 'kammarmusik':1A 'kammarmusikkonsert':4B,8C 'stadshus':7B,11C 'stadshuset':3A", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kamarimusiikkikonsertit kaupungintalon juhlasalissa</p><p>HKO:n muusikoiden kamarimusiikkikonsertit kaupungintalon juhlasalissa kolmena keväisenä lauantaina. Konserttiin on vapaa pääsy, lippuja ei voi varata etukäteen. Tervetuloa!</p>", "sv": "<p>Kammarmusikkonserter i Helsingfors stadshus</p><p>Fritt inträde.</p>", "en": "<p>Chamber music concerts at Helsinki City Hall</p><p>Free entrance.</p>" }, "location_extra_info": { "fi": "Kaupungintalo", "sv": "Stadshuset", "en": "City Hall" }, "name": { "fi": "Kamarimusiikkia kaupungintalolla", "sv": "Kammarmusik i stadshuset ", "en": "Chamber music at City Hall" }, "short_description": { "fi": "Kamarimusiikkikonsertit kaupungintalon juhlasalissa", "sv": "Kammarmusikkonserter i Helsingfors stadshus", "en": "Chamber music concerts at Helsinki City Hall" }, "provider": null, "info_url": { "fi": "http://helsinginkaupunginorkesteri.fi/fi/node/14291", "sv": "http://helsinginkaupunginorkesteri.fi/sv/node/14291", "en": "http://helsinginkaupunginorkesteri.fi/en/node/14291" }, "@id": "http://api.hel.fi/linkedevents/v1/event/hko:14291/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afqwmkbl3i", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/" } ], "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:02100", "sub_events": [], "images": [ { "id": 42269, "license": "cc_by", "created_time": "2018-02-05T13:23:46.398776Z", "last_modified_time": "2018-02-05T13:23:46.398810Z", "name": "virka_7605.jpg", "url": "http://api.hel.fi/linkedevents/media/images/virka_7605.jpg", "cropping": "75,0,375,300", "photographer_name": "Aino Huovio", "alt_text": null, "data_source": "helsinki", "publisher": "ahjo:02100", "@id": "http://api.hel.fi/linkedevents/v1/image/42269/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/et/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/en/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2018-02-05T13:29:24.186742Z", "last_modified_time": "2018-02-15T13:42:32.814696Z", "date_published": null, "start_time": "2018-02-25T12:00:00Z", "end_time": "2018-02-25T13: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": true, "search_vector_fi": "'300':37C 'alttosaksofon':30C 'andreas':50C 'ensim':38C 'hemeīs':43C 'huippukonsert':15B 'ilmais':14B 'ir':53C 'itsenäisyyd':2A 'itsenäisyysjulistuks':5B 'juhl':13B 'juhlakonsert':3A 'kozlov':20C 'kulunu':7B 'kuulman':47C 'kuulmann-mart':46C 'lend':51C 'mahtu':36C 'mart':48C 'muas':18C 'muun':17C 'night':28C 'ohjelmisto':16C 'piano':32C,44C,55C 'pianotrio':24C 'pärt':26C 'pääsy':34C 'saksofo':41C 'saksofon':22C 'sal':35C 'sata':8B 'scenery':29C 'selo':52C 'sigrid':45C 'tatj':19C 'trio':42C 'tule':10B 'uusberg':27C 'uutuusteos':21C 'vapa':33C 'veld':40C 'viettäm':11B 'virgo':39C 'viro':1A,4B,12B 'viulu':49C 'vuot':9B 'zahharenkov':54C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Ohjelmistossa muun muassa Tatjana Kozlovan uutuusteos saksofonille ja pianotriolle sekä Pärt Uusbergin Night Scenery alttosaksofonille ja pianolle. Vapaa pääsy. Saliin mahtuu 300 ensimmäistä.</p><p>Virgo Veldi (saksofoni) & Trio Hemeīs (Piano)<br/> Sigrid Kuulmann-Martin (viulu) <br/> Andreas Lend (sello)<br/> Irina Zahharenkova (piano)</p>" }, "location_extra_info": { "fi": "Helsingin kaupungintalon juhlasali, Sofiankatu 1" }, "name": { "fi": "Viron itsenäisyyden juhlakonsertti " }, "short_description": { "fi": "Viron itsenäisyysjulistuksesta on kulunut sata vuotta. Tule viettämään Viron juhlaa ilmaiseen huippukonserttiin." }, "provider": { "fi": "Eesti Instituut ja Virka-galleria" }, "info_url": { "fi": "https://www.hel.fi/kanslia/virka-fi/tapahtumat/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqwmkbl3i/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afp6hrpd7a", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:8/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p12259/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13862/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4679/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p742/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afp6hrovwa/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_twitter", "link": "https://twitter.com/search?f=tweets&vertical=default&q=%23helvaltuusto", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:02100", "sub_events": [], "images": [ { "id": 40308, "license": "event_only", "created_time": "2017-11-22T12:48:27.926503Z", "last_modified_time": "2017-11-22T12:48:27.926525Z", "name": "Helsingin kaupunginvaltuusto 2017 kesällä.", "url": "http://api.hel.fi/linkedevents/media/images/Kaupunginvaltuusto_OK__2017_0061__webiso.jpg", "cropping": "210,0,790,581", "photographer_name": "Pertti Nisonen / Helsingin kaupunki", "alt_text": null, "data_source": "helsinki", "publisher": "ahjo:02100", "@id": "http://api.hel.fi/linkedevents/v1/image/40308/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2017-11-22T12:48:37.880447Z", "last_modified_time": "2017-11-22T12:48:37.885810Z", "date_published": null, "start_time": "2018-01-31T16:00:16.453000Z", "end_time": "2018-01-31T20:00:16.453000Z", "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": true, "search_vector_fi": "'14':41C 'ajankohtais':14B,26C 'asia':30C 'asio':15B,27C 'edeltäv':38C 'el':9B,21C 'esityslist':34C 'helsing':1A,6B,18C 'helsink':48C 'helsinki-kanav':47C 'julk':36C 'kanav':49C 'kaupung':12B,24C 'kaupunginvaltuusto':2A,4B,16C 'kelo':40C 'kokou':37C,42C 'kokouks':10B,22C,28C 'kokous':3A 'kork':7B,19C 'kotisivu':33C 'käsiteltäv':29C 'lis':35C 'löytyv':31C 'myös':45C 'pääte':11B,23C 'päättäv':8B,20C 'seura':44C 'torst':39C 'tärk':13B,25C 'valtuusto':32C 'verko':46C 'voi':43C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kaupunginvaltuusto on Helsingin korkein päättävä elin. Kokouksessa päätetään kaupungin tärkeistä ajankohtaisista asioista.</p><p>Kokouksessa käsiteltävät asiat löytyvät valtuuston kotisivulta esityslistasta. Lista julkaistaan kokousta edeltävänä torstaina kello 14.</p><p>Kokousta voi seurata myös verkossa <a href=\"http://www.helsinkikanava.fi/www/kanava/fi/sarjat/sarja?id=48\">Helsinki-kanavalla</a>.</p>" }, "location_extra_info": { "fi": "Esteetön pääsy valtuuston lehterille os. Sofiankatu 3." }, "name": { "fi": "Helsingin kaupunginvaltuuston kokous" }, "short_description": { "fi": "Kaupunginvaltuusto on Helsingin korkein päättävä elin. Kokouksessa päätetään kaupungin tärkeistä ajankohtaisista asioista." }, "provider": null, "info_url": { "fi": "http://www.hel.fi/www/Helsinki/fi/kaupunki-ja-hallinto/paatoksenteko/kaupunginvaltuusto/esityslistat/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afp6hrpd7a/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afp6hrpd2q", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:28473/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:8/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p12259/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13862/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4679/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p742/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afp6hrovwa/" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_twitter", "link": "https://twitter.com/search?f=tweets&vertical=default&q=%23helvaltuusto", "language": "fi" } ], "offers": [ { "is_free": true, "price": null, "info_url": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:02100", "sub_events": [], "images": [ { "id": 40308, "license": "event_only", "created_time": "2017-11-22T12:48:27.926503Z", "last_modified_time": "2017-11-22T12:48:27.926525Z", "name": "Helsingin kaupunginvaltuusto 2017 kesällä.", "url": "http://api.hel.fi/linkedevents/media/images/Kaupunginvaltuusto_OK__2017_0061__webiso.jpg", "cropping": "210,0,790,581", "photographer_name": "Pertti Nisonen / Helsingin kaupunki", "alt_text": null, "data_source": "helsinki", "publisher": "ahjo:02100", "@id": "http://api.hel.fi/linkedevents/v1/image/40308/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2017-11-22T12:48:37.844754Z", "last_modified_time": "2017-11-22T12:48:37.850918Z", "date_published": null, "start_time": "2018-08-29T15:00:00Z", "end_time": "2018-08-29T19: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": true, "search_vector_fi": "'14':41C 'ajankohtais':14B,26C 'asia':30C 'asio':15B,27C 'edeltäv':38C 'el':9B,21C 'esityslist':34C 'helsing':1A,6B,18C 'helsink':48C 'helsinki-kanav':47C 'julk':36C 'kanav':49C 'kaupung':12B,24C 'kaupunginvaltuusto':2A,4B,16C 'kelo':40C 'kokou':37C,42C 'kokouks':10B,22C,28C 'kokous':3A 'kork':7B,19C 'kotisivu':33C 'käsiteltäv':29C 'lis':35C 'löytyv':31C 'myös':45C 'pääte':11B,23C 'päättäv':8B,20C 'seura':44C 'torst':39C 'tärk':13B,25C 'valtuusto':32C 'verko':46C 'voi':43C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kaupunginvaltuusto on Helsingin korkein päättävä elin. Kokouksessa päätetään kaupungin tärkeistä ajankohtaisista asioista.</p><p>Kokouksessa käsiteltävät asiat löytyvät valtuuston kotisivulta esityslistasta. Lista julkaistaan kokousta edeltävänä torstaina kello 14.</p><p>Kokousta voi seurata myös verkossa <a href=\"http://www.helsinkikanava.fi/www/kanava/fi/sarjat/sarja?id=48\">Helsinki-kanavalla</a>.</p>" }, "location_extra_info": { "fi": "Esteetön pääsy valtuuston lehterille os. Sofiankatu 3." }, "name": { "fi": "Helsingin kaupunginvaltuuston kokous" }, "short_description": { "fi": "Kaupunginvaltuusto on Helsingin korkein päättävä elin. Kokouksessa päätetään kaupungin tärkeistä ajankohtaisista asioista." }, "provider": null, "info_url": { "fi": "http://www.hel.fi/www/Helsinki/fi/kaupunki-ja-hallinto/paatoksenteko/kaupunginvaltuusto/esityslistat/" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afp6hrpd2q/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 66, "next": "