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/?start=today&end=2020-12-31
http://api.hel.fi/linkedevents/v1/place/tprek:21189/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2339/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "info_url": { "fi": "https://www.tekniikanmuseo.fi/nayttely/kummituksen-keksintokoje/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/spokets-uppfinningsapparat/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/the-ghost-and-the-invention-device/" }, "price": { "fi": "https://www.tekniikanmuseo.fi/nayttely/kummituksen-keksintokoje/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/spokets-uppfinningsapparat/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/the-ghost-and-the-invention-device/" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 67302, "license": "event_only", "created_time": "2020-10-02T06:36:14.191078Z", "last_modified_time": "2022-02-25T11:45:25.517972Z", "name": "Tekniikan museo", "url": "http://api.hel.fi/linkedevents/media/images/P9104994.JPG", "cropping": "240,0,1680,1440", "photographer_name": "Tekniikan museo", "alt_text": "Ihmisiä tutustumassa museoon", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/67302/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2022-12-20T13:47:12.075721Z", "last_modified_time": "2023-01-12T06:53:45.268491Z", "date_published": null, "start_time": "2019-11-09T09:00:00Z", "end_time": "2025-12-31T15:00:00Z", "custom_data": null, "audience_min_age": 5, "audience_max_age": 9, "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": "'-9':93C '31.12.2025':90C '5':92C '9.11.2019':89C 'avu':42C 'elämyksellin':6B,23C 'ilmiö':17B,34C 'ilo':86C 'innost':12B,29C 'kannust':61C 'kaut':73C 'kehittymin':83C 'keksijyyd':82C 'keksimis':67C 'keksintö':47C 'keksintöko':2A,4B,21C 'kerto':66C 'keskiö':74C 'kokeilem':64C 'kone':53C 'kummallis':52C 'kummituks':1A,3B,20C,41C,51C 'kutsu':38C 'käynnistäm':50C 'lait':45C 'laps':13B,30C,39C,76C,95C 'last':9B,26C,56C 'lopu':49C 'luovuut':58C 'lähtökohd':69C 'mielikuvitus':79C 'museo':40C,88C 'muuto':19B,36C 'muutoks':72C 'näyttely':10B,27C,37C,54C,65C 'olemu':16B,33C 'oma':57C,81C 'ongelmanratkaisukyky':59C 'pohtim':14B,31C 'suunnatu':91C 'tekniik':15B,32C,71C,87C 'teknis':44C 'teknologia':68C 'toiminnallin':8B,25C 'tutkim':43C,62C 'tutkimis':85C 'tutustum':46C 'uteliaisuus':77C 'vahvist':55C 'vuotia':94C", "search_vector_en": "'10.9.2016':160C '31.12.2023':161C '5':165C '9':167C 'area':50C 'center':121C 'chang':71C 'child':120C 'child-cent':119C 'children':32C,89C,136C,163C 'collabor':67C 'creativ':138C 'culmin':84C 'devic':6A,97C,114C 'differ':49C,52C 'encourag':142C 'engag':140C 'environ':123C,130C 'essenc':56C 'everyday':155C 'exhibit':8B,19C,47C,108C 'finnish':68C 'ghost':2A,14B,25C,30C,94C,110C 'hand':41C 'handl':146C 'hands-on':40C 'includ':48C,125C 'interact':117C 'invent':5A,45C,61C,69C,96C,113C 'learn':34C,105C,122C,127C 'life':156C 'long':80C 'method':128C 'museum':17B,28C,87C,133C,139C,157C 'mysteri':39C 'new':101C 'object':134C 'observ':145C 'part':152C 'place':75C 'play':38C 'relev':64C 'request':31C 'run':81C 'skill':102C 'stage':59C 'stori':11B,22C 'support':135C 'switch':91C 'taken':74C 'task':43C 'technolog':36C,55C,58C,66C,77C,149C,159C 'tell':9B,20C 'togeth':131C 'tour':88C 'understand':148C 'use':99C 'valu':62C 'versatil':126C 'via':37C 'viewpoint':53C 'yrs':168C", "search_vector_sv": "'10.9.2016':99C '31.12.2023':100C '5':40C,104C '9':42C,106C 'andr':94C 'barn':7B,17C,27C,38C,47C,78C,102C 'egen':83C 'fantasi':9B,19C,29C 'fenom':54C 'fokus':4B,14C,24C 'fram':90C 'främst':35C 'förändring':56C 'genom':62C 'glädj':12B,22C,32C 'hjälp':72C 'inspirer':46C 'ligg':5B,15C,25C 'museet':98C 'museiföremål':70C 'nyfiken':8B,18C,28C 'också':80C 'olik':69C,74C 'prov':51C,65C 'pysselverkstad':86C 'se':96C 'sinn':75C 'skap':81C 'spöket':1A 'studer':59C 'ställ':88C 'teknik':52C,61C 'teknisk':97C 'titt':64C 'undersök':49C 'uppfinning':84C 'uppfinningsappar':2A 'utforsk':68C 'utforskandet':11B,21C,31C 'utställning':3B,13C,23C,33C,58C,92C 'verktyg':77C 'väs':53C 'ämn':36C 'åld':44C,108C 'års':43C,107C 'öva':66C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Kummituksen keksintökoje on elämyksellinen ja toiminnallinen lasten näyttely, joka innostaa lapset pohtimaan tekniikan olemusta, ilmiöitä ja muutosta. Näyttely kutsuu lapset museon kummituksen avuksi tutkimaan teknisiä laitteita, tutustumaan keksintöihin ja lopuksi käynnistämään kummituksen kummallisen koneen.</p><p>Näyttely vahvistaa lasten omaa luovuutta, ongelmanratkaisukykyä ja kannustaa tutkimaan ja kokeilemaan. Näyttely kertoo keksimisestä teknologian lähtökohdista ja tekniikan muutoksen kautta. Keskiössä on lapsen uteliaisuus ja mielikuvitus sekä oman keksijyyden kehittyminen ja tutkimisen ilo.</p><p> </p><p>Tekniikan museo</p><p>9.11.2019-31.12.2025</p><p>Suunnattu 5-9 -vuotiaille lapsille</p>", "sv": "<p>Utställningens fokus ligger på barns nyfikenhet, fantasi och utforskandets glädje.</p><p> </p><p>Utställningens fokus ligger på barns nyfikenhet, fantasi och utforskandets glädje. Utställningen är främst ämnad för barn mellan 5 och 9 års ålder. Här inspireras barn att undersöka och prova teknikens väsen, fenomen och förändring.</p><p>I utställningen studerar man teknik genom att titta, prova, öva och utforska olika museiföremål med hjälp av olika sinnen och verktyg. Barn kan också skapa en egen uppfinning i pysselverkstaden och ställa den fram i utställningen för andra att se.</p><p> </p><p>Tekniska museet</p><p>10.9.2016-31.12.2023</p><p>För barn mellan 5 och 9 års ålder</p>", "en": "<p>The exhibition tells a story about the Ghost of the Museum. The Ghost requests children to learn about technology via play, mysteries, hands-on tasks and inventing.</p><p> </p><p>The exhibition includes different areas with different viewpoints into technology: essence of technology, stages of invention, values and relevance of technology, collaboration, Finnish inventions and changes that have taken place in technology in the long run. As a culmination of the museum tour children can switch on The Ghost’s Invention Device by using the new skills they have learned in the exhibition.</p><p> </p><p>The Ghost and the Invention Device is an interactive and child-centered learning environment that includes versatile learning methods. The environment together with museum objects support children’s creative museum engagement and encourages them to observe, handle and understand technology as a part of their everyday life.</p><p> </p><p>Museum of Technology</p><p>10.9.2016-31.12.2023</p><p>For children of 5 to 9 yrs</p>" }, "name": { "fi": "Kummituksen keksintökoje", "sv": "Spökets uppfinningsapparat", "en": "The Ghost and the Invention Device" }, "info_url": { "fi": "https://www.tekniikanmuseo.fi/nayttely/kummituksen-keksintokoje/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/spokets-uppfinningsapparat/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/the-ghost-and-the-invention-device/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Kummituksen keksintökoje on elämyksellinen ja toiminnallinen lasten näyttely, joka innostaa lapset pohtimaan tekniikan olemusta, ilmiöitä ja muutosta. ", "sv": "Utställningens fokus ligger på barns nyfikenhet, fantasi och utforskandets glädje.", "en": "The exhibition tells a story about the Ghost of the Museum." }, "provider": { "fi": "Tekniikan museo", "sv": "Tekniska museet", "en": "Museum of Technology" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcs7solg4/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agcs7otrsy", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21189/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2339/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "info_url": { "fi": "https://www.tekniikanmuseo.fi/nayttely/etaunelmia-yhteys-yli-ajan-ja-paikan/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/teledrommar-2/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/teledreams-a-connection-over-time-and-place-2/" }, "price": { "fi": "https://www.tekniikanmuseo.fi/nayttely/etaunelmia-yhteys-yli-ajan-ja-paikan/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/teledrommar-2/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/teledreams-a-connection-over-time-and-place-2/" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 67302, "license": "event_only", "created_time": "2020-10-02T06:36:14.191078Z", "last_modified_time": "2022-02-25T11:45:25.517972Z", "name": "Tekniikan museo", "url": "http://api.hel.fi/linkedevents/media/images/P9104994.JPG", "cropping": "240,0,1680,1440", "photographer_name": "Tekniikan museo", "alt_text": "Ihmisiä tutustumassa museoon", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/67302/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-20T13:30:26.111851Z", "last_modified_time": "2022-12-20T13:30:26.111880Z", "date_published": null, "start_time": "2016-09-10T08:00:00Z", "end_time": "2023-12-31T15:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'10.9.2016':103C '100':89C '1800':92C '1960':74C '31.12.2023':104C 'aart':100C 'ainutlaatuist':45C 'aja':4A,11B,23C,42C 'armstrong':82C 'avu':18B,30C 'ensiaskel':83C 'es':50C,87C 'esimerk':72C 'esin':91C 'etäunelm':1A,8B,20C 'etäunelmia-näyttely':7B,19C 'filmiarkisto':54C,99C 'helm':55C 'historia':15B,27C 'keksintö':34C 'kerto':10B,22C 'kiinnostav':51C 'koht':58C 'koke':63C 'kokoelmaesin':46C 'kosk':64C 'kuus':84C 'kuva':52C,97C 'kävij':60C 'lisä':47C 'lopu':94C 'luvu':75C,93C 'lähety':80C 'maailm':69C 'men':67C 'museo':102C 'neil':81C 'nykypäiv':95C 'näyttely':9B,21C,31C,48C,85C 'olev':38C 'olohuon':76C 'osallistu':66C 'paika':6A,13B,25C,40C 'riippumattom':43C 'saava':61C 'seuraam':73C 'suora':77C 'sähköist':16B,28C 'taust':37C 'tekniik':101C 'tutustu':32C 'tv':79C 'tv-lähety':78C 'unelm':39C 'uppoutu':71C 'use':57C 'viestintätekniik':33C 'viestintäteknologia':90C 'viestintävälin':17B,29C 'voi':70C 'vuosikymment':68C 'yhteydenpido':44C 'yhteys':2A 'ylittämis':14B,26C", "search_vector_en": "'10.9.2016':138C '100':110C '19th':120C '31.12.2023':139C 'across':72C 'adopt':94C 'archiv':134C 'built':90C 'centuri':121C 'communic':23B,40C,97C,113C 'connect':3A 'cross':14B,31C 'daili':103C 'day':125C 'devic':86C 'distanc':74C 'dream':66C 'electron':22B,39C 'end':117C 'exhibit':9B,26C,76C,106C 'featur':107C 'film':133C 'hear':69C 'histori':12B,29C 'humankind':64C 'imag':131C 'internet':58C 'kind':81C 'light':78C 'live':104C 'long':73C 'mean':20B,37C 'messag':71C 'modern':50C 'museum':135C 'network':84C 'new':96C 'object':111C 'place':7A 'present':124C 'radio':45C 'recount':10B,27C 'see':68C 'shed':77C 'smartphon':55C 'space':17B,34C 'technic':83C 'technolog':24B,41C,51C,98C,114C,137C 'teledream':1A 'telegraph':42C 'telephon':43C 'televis':54C 'time':5A,15B,32C 'treasur':129C 'use':101C 'well':47C,127C", "search_vector_sv": "'10.9.2016':136C '31.12.2023':137C 'anordning':74C,117C 'berät':9B,26C,111C 'bruk':127C 'bygg':119C 'bärbar':73C 'del':46C 'dock':84C 'drömt':102C 'elektronisk':22B,39C,42C 'erbjud':58C 'finn':83C 'förbind':2A,51C,104C 'förefall':63C 'givet':61C 'global':53C 'histori':10B,27C,92C 'hitt':129C 'hjälp':20B,37C 'hurdan':113C 'just':67C,79C 'kast':94C 'kommunikation':90C 'kommunikationsmedel':23B,40C 'kommunikationsmedl':124C 'kommunikationsnät':57C 'kommunikationsteknik':43C 'koppl':65C 'ljus':95C 'medl':91C 'museet':135C 'ny':123C 'nätverk':55C,115C 'också':72C 'olik':100C 'plat':131C 'redan':86C 'rum':6A,18B,35C,109C 'snabb':50C 'social':54C 'stund':69C 'tagit':125C 'tas':59C 'teknisk':114C,134C 'teledrömm':1A,8B,25C 'tid':4A,16B,33C,71C,81C,89C,101C,107C 'typisk':77C 'utställning':7B,24C,93C 'vardag':48C,133C 'verk':75C 'överbrygg':106C 'övervunnit':15B,32C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Etäunelmia-näyttely kertoo ajan ja paikan ylittämisen historiasta sähköisten viestintävälineiden avulla. Näyttelyssä tutustutaan viestintätekniikan keksintöihin sekä niiden taustalla olevaan unelmaan paikasta ja ajasta riippumattomasta yhteydenpidosta.</p><p> </p><p>Ainutlaatuisten kokoelmaesineiden lisäksi näyttelyssä on esillä kiinnostavia kuva- ja filmiarkistojen helmiä sekä useita kohteita, joissa kävijät saavat itse kokeilla, koskea ja osallistua. Menneiden vuosikymmenten maailmaan voi uppoutua esimerkiksi seuraamalla 1960-luvun olohuoneessa suoraa tv-lähetystä Neil Armstrongin ensiaskelista kuussa.</p><p> </p><p>Näyttelyssä on esillä yli 100 viestintäteknologian esinettä 1800-luvun lopulta nykypäivään sekä kuva- ja filmiarkistojen aarteita.</p><p> </p><p>Tekniikan museo</p><p>10.9.2016-31.12.2023</p>", "sv": "<p>Utställningen Teledrömmar berättar historien om hur man har övervunnit tid och rum med hjälp av elektroniska kommunikationsmedel.</p><p>Den elektroniska kommunikationstekniken är en del av vardagen. De snabba förbindelserna och globala sociala nätverken som kommunikationsnäten erbjuder tas för givet och förefaller vara kopplade till just denna stund i tiden. Också bärbara anordningar verkar vara typiska för just vår tid. De finns dock med redan i de tidiga kommunikations medlens historia.</p><p>Utställningen kastar ljus på hur vi i olika tider drömt om förbindelser som överbryggar tid och rum. Den berättar om hurdana tekniska nätverk och anordningar som byggts och hur de ny kommunikationsmedlen tagits i bruk och hittat sin plats i vardagen.</p><p> </p><p>Tekniska museet</p><p>10.9.2016-31.12.2023</p>", "en": "<p>The exhibition recounts the history of crossing time and space by the means of electronic communication technology. Telegraphs, telephones and radios as well as more modern technologies, such as televisions, smartphones and the Internet, all have to do with humankind’s dream of seeing, hearing or messaging across long distances.</p><p> </p><p>The exhibition sheds light on the kinds of technical networks and devices that have been built and on the adoption of new communication technologies and their use in daily lives.</p><p> </p><p>The exhibition features more than 100 objects of communication technology from the end of the 19th century to the present day, as well as treasures from image and film archives.</p><p> </p><p>Museum of Technology</p><p>10.9.2016-31.12.2023</p>" }, "name": { "fi": "Etäunelmia - Yhteys yli ajan ja paikan", "sv": "Teledrömmar - Förbindelser över tid och rum", "en": "Teledreams - a Connection Over Time and Place" }, "info_url": { "fi": "https://www.tekniikanmuseo.fi/nayttely/etaunelmia-yhteys-yli-ajan-ja-paikan/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/teledrommar-2/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/teledreams-a-connection-over-time-and-place-2/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Etäunelmia-näyttely kertoo ajan ja paikan ylittämisen historiasta sähköisten viestintävälineiden avulla. ", "sv": "Utställningen Teledrömmar berättar historien om hur man har övervunnit tid och rum med hjälp av elektroniska kommunikationsmedel.", "en": "The exhibition recounts the history of crossing time and space by the means of electronic communication technology. " }, "provider": { "fi": "Tekniikan museo", "sv": "Tekniska museet", "en": "Museum of Technology" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcs7otrsy/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afzapzc5sq", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16866/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "", "en": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 64298, "license": "event_only", "created_time": "2020-05-12T11:37:23.625912Z", "last_modified_time": "2020-05-12T11:37:23.625936Z", "name": "Tuovi Hirvisuo näyttelijättärien pukuhuoneessa Viipurin Kaupunginteatterissa marraskuussa 1937", "url": "http://api.hel.fi/linkedevents/media/images/tuovi.jpg", "cropping": "360,0,1560,1199", "photographer_name": "Teatterimuseon arkisto (c) Eino Partanen", "alt_text": "Nainen peilin ääressä", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/64298/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2020-05-12T07:58:26.210564Z", "last_modified_time": "2022-12-20T13:08:18.457024Z", "date_published": null, "start_time": "2019-12-31T22:01:00Z", "end_time": "2023-12-31T21:59:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'10':12B,26C '1902':7B,21C '1929':16B,30C '1962':8B,22C '39':17B,31C 'aja':14B,28C 'eino':5B,19C 'elegans':3A,35C,46C,59C 'ilois':40C 'ilto':63C 'intern':65C 'johdat':36C 'katsomo':56C 'kesk':39C 'koke':57C 'kuva':9B,23C 'liityi':64C 'mukais':50C 'nime':49C 'näyttely':47C 'partan':6B,20C 'pääsy':67C 'sai':55C 'taaks':38C 'teatter':11B,25C,62C 'teatteri-ilto':61C 'teatterieläm':43C 'tunt':1A,33C,44C,52C 'valokuvaaj':4B,18C 'vapa':66C 'verkkonäyttely':32C 'viipur':41C 'viipuril':10B,24C 'vireä':42C 'vuode':13B,27C 'vuos':15B,29C 'vuosikymment':37C 'välit':48C 'yleisö':54C", "search_vector_en": "'1902':7B,25C '1929':20B,38C '1939':21B,39C '1962':8B,26C 'across':49C 'audienc':78C 'buoyant':62C 'convey':68C 'decad':50C 'eino':5B,23C 'eleg':3A,45C,66C,81C 'emot':1A,43C,64C,74C 'entri':90C 'exhibit':42C,67C 'free':89C 'internet':88C 'lead':46C 'middl':53C 'onlin':41C 'partanen':6B,24C 'period':16B,34C 'photograph':4B,22C 'provok':75C 'record':9B,27C 'scene':13B,31C,59C 'soiré':84C 'ten':18B,36C 'theatr':12B,30C,58C,87C 'titl':72C 'true':69C 'vibrant':57C 'viipuri':11B,29C,63C 'visitor':48C 'year':19B,37C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Valokuvaaja Eino Partanen (1902–1962) kuvasi viipurilaista teatteria 10 vuoden ajan vuosina 1929–39. </p><p>Verkkonäyttely Tunteita ja eleganssia johdattaa vuosikymmenten taakse, keskelle iloisen Viipurin vireää teatterielämää.</p><p>Tunteita ja eleganssia -näyttely välittää nimensä mukaisesti niitä tunteita, joita yleisö sai katsomossa kokea, ja eleganssia, joka teatteri-iltoihin liittyi.</p><p>Internet<br>Vapaa pääsy</p>", "en": "<p>Photographer Eino Partanen (1902–1962) recorded the Viipuri theatre scene for a period of ten years 1929–1939. </p><p>The online exhibition Emotions and Elegance leads the visitor across decades, in the middle of the of vibrant theatre scene of the buoyant Viipuri.</p><p>Emotions and Elegance exhibition conveys, true to its title, the emotions provoked in the audience, and the elegance of a soirée at the theatre.</p><p>Internet <br>Free entry</p>" }, "name": { "fi": "Tunteita ja eleganssia", "en": "Emotions and Elegance" }, "info_url": { "fi": "https://www.teatterimuseo.fi/fi/Tunteita-ja-eleganssia", "en": "https://www.teatterimuseo.fi/en/Emotions-and-Elegance" }, "location_extra_info": { "fi": "", "en": "" }, "short_description": { "fi": "Valokuvaaja Eino Partanen (1902–1962) kuvasi viipurilaista teatteria 10 vuoden ajan vuosina 1929–39. ", "en": "Photographer Eino Partanen (1902–1962) recorded the Viipuri theatre scene for a period of ten years 1929–1939. " }, "provider": { "fi": "Teatterimuseo", "en": "Theatre Museum" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzapzc5sq/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afzarprjhy", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16866/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "", "en": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 64299, "license": "event_only", "created_time": "2020-05-12T11:46:38.187746Z", "last_modified_time": "2020-05-12T11:46:38.187769Z", "name": "Herakles, Helsingin Ylioppilasteatteri, TeatteriTeltta 2008", "url": "http://api.hel.fi/linkedevents/media/images/Herakles.jpg", "cropping": "320,0,1600,1279", "photographer_name": "Teatterimuseo / Ylioppilasteatteri (c) Kai Bäckström", "alt_text": "Näyttelijöitä lavalla", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/64299/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2020-05-12T11:56:19.665014Z", "last_modified_time": "2022-12-20T13:02:51.772410Z", "date_published": null, "start_time": "2019-12-31T22:01:00Z", "end_time": "2023-12-31T21:59:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'1980':31C '2013':37C,79C '2014':80C '2500':52C 'agor':91C 'aika':47C 'aina':36C 'aja':2A,7B,18C 'ajanjakso':46C 'ajato':3A,8B,19C 'ajattom':68C 'ammattiteatter':49C 'ant':13B,24C 'eli':104C 'es':82C 'esitettyj':12B,23C 'esittel':10B,21C 'esityks':33C,42C 'haastan':72C 'hurmos':93C 'innoittan':74C 'intern':107C 'jakaantu':88C 'kaht':89C 'kaksikymmen':51C 'kaut':106C 'koetu':69C 'kokeilu':60C 'kreikkalais':14B,25C 'kreikkalaist':40C 'kulk':35C 'kuoro':62C 'käsiohjelm':101C 'käsit':96C 'käsittelem':45C 'liik':30C 'luvu':32C 'läht':29C 'maksuto':108C 'monenlaist':58C 'mukail':77C 'naamio':63C,100C 'näytelmätekst':55C 'näyttely':27C,44C,85C,86C 'ohjaajahaastattelu':99C 'ollut':83C 'pääteem':90C 'runomuotois':64C 'saak':39C 'samannim':84C 'sisältö':28C,87C 'suomalais':48C 'suome':11B,22C 'taipun':57C 'teatteriesteettist':59C 'teatterimuseo':81C 'teatteritaiteilij':75C 'teema':70C 'teemo':95C 'tekst':65C 'tekstikatkelm':105C 'traged':1A,4A,6B,9B,17C,20C 'tragediaään':103C 'tragedio':15B,26C,41C 'valokuvamateriaal':97C 'vanh':54C 'verkkonäyttely':5B,16C,76C 'videotallent':98C 'vuos':78C 'vuot':53C 'vuote':38C 'välin':61C", "search_vector_en": "'14':122C '1980s':24B,45C '2013':26B,47C,121C '2500':71C 'aesthet':85C 'agora':130C 'ancient':10B,31C 'artist':102C 'challeng':98C 'charg':155C 'chorus':87C 'composit':92C 'decad':21B,42C 'divid':125C 'ecstasi':132C 'exhibit':8B,29C,53C,108C,115C 'experiment':82C 'explor':9B,30C,136C 'extract':151C 'finland':17B,38C 'finnish':64C 'follow':109C 'four':20B,41C 'free':153C 'greek':11B,32C,59C 'i.e':149C 'inspir':100C 'intern':68C 'internet':152C 'interview':142C 'leaflet':145C 'lent':76C 'main':128C 'mask':88C,143C 'materi':139C 'museum':114C 'old':73C 'onlin':7B,28C,107C 'perform':13B,34C,57C 'photograph':138C 'programm':144C 'record':141C 'reflect':66C 'span':19B,40C 'stage':15B,36C,62C 'structur':104C 'text':74C,89C,150C 'theatr':65C,84C,101C,113C 'theme':96C,129C,134C 'time':3A,118C 'timeless':4A,95C,119C 'timelin':50C 'tragedi':1A,5A,12B,33C,60C,116C,120C,147C 'trend':69C 'twenti':56C 'two':127C 'varieti':80C 'vers':91C 'video':140C 'voic':148C 'within':48C 'year':72C", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Verkkonäyttely Tragedia ajassa – ajaton tragedia esittelee Suomessa esitettyjä antiikin kreikkalaisia tragedioita. Näyttelyn sisältö lähtee liikkeelle 1980-luvun esityksistä ja kulkee aina 2013 vuoteen saakka.</p><p>Kreikkalaisten tragedioiden esityksiä oli näyttelyn käsittelemän ajanjakson aikana suomalaisissa ammattiteattereissa yli kaksikymmentä.</p><p>2500 vuotta vanhat näytelmätekstit ovat taipuneet monenlaisten teatteriesteettisten kokeilujen välineiksi. Kuoro, naamiot, runomuotoiset tekstit ja niiden ajattomiksi koetut teemat ovat haastaneet ja innoittaneet teatteritaiteilijoita.</p><p>Verkkonäyttely mukailee vuosina 2013–2014 Teatterimuseossa esillä ollutta samannimistä näyttelyä. Näyttelyn sisältö jakaantuu kahteen pääteemaan: Agora ja Hurmos. Näitä teemoja käsitellään valokuvamateriaalien, videotallenteiden, ohjaajahaastattelujen, naamioiden, käsiohjelmien ja tragediaäänien eli tekstikatkelmien kautta. </p><p>Internet<br>Maksuton</p>", "en": "<p>This online exhibition explores ancient Greek tragedies performed on stage in Finland. It spans four decades, from the 1980s to 2013.</p><p>Within the timeline of this exhibition, more than twenty performances of Greek tragedies were staged in Finnish theatres reflecting an international trend. </p><p>The 2500 years old texts have lent themselves to a variety of experimentations in theatre aesthetics. The chorus, masks, texts in verse composition, and their timeless themes have challenged and inspired theatre artists.</p><p>The structure of the online exhibition follows that of the Theatre Museum exhibition (Tragedy in Time – Timeless Tragedy, 2013–14), which was divided into two main themes, Agora and Ecstasy. These themes are explored through photographic materials, video recordings, interviews, masks, programme leaflets, and tragedy voices i.e. text extracts.</p><p>Internet<br>Free of charge </p>" }, "name": { "fi": "Tragedia ajassa – ajaton tragedia", "en": "Tragedy in Time – Timeless Tragedy" }, "info_url": { "fi": "https://www.teatterimuseo.fi/fi/Tragedia-ajassa-ajaton-tragedia", "en": "https://www.teatterimuseo.fi/en/Tragedy-in-Time--Timeless-Tragedy" }, "location_extra_info": { "fi": "", "en": "" }, "short_description": { "fi": "Verkkonäyttely Tragedia ajassa – ajaton tragedia esittelee Suomessa esitettyjä antiikin kreikkalaisia tragedioita. ", "en": "This online exhibition explores ancient Greek tragedies performed on stage in Finland. It spans four decades, from the 1980s to 2013." }, "provider": { "fi": "Teatterimuseo", "en": "Theatre Museum" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzarprjhy/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afzapwtbae", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 64297, "license": "cc_by", "created_time": "2020-05-12T11:32:27.695030Z", "last_modified_time": "2020-05-12T11:32:27.695075Z", "name": "Pyörteitä, Alpo Aaltokoski Company 2011", "url": "http://api.hel.fi/linkedevents/media/images/Py%C3%B6rteit%C3%A4.jpg", "cropping": "376,0,1544,1169", "photographer_name": "Teatterimuseo / Alpo Aaltokoski Company (c) Marko Mäkinen", "alt_text": "Tanssijoita lavalla", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/64297/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2020-05-12T07:47:31.727363Z", "last_modified_time": "2022-12-20T12:57:57.385104Z", "date_published": null, "start_time": "2019-12-31T22:01:00Z", "end_time": "2023-12-31T21:59:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'abc':3A,6B,16C,77C 'abc-sivusto':5B,15C 'ainutlaatuis':11B,21C 'ava':71C 'edust':58C 'en':59C 'esit':65C 'esitys':57C 'helpo':27C 'helpost':53C 'hyvä':47C 'intern':87C 'jul':69C 'koke':9B,19C 'kotikonst':30C 'lavastuks':84C 'löytyy':25C 'miettiny':61C 'mite':29C 'myös':26C,80C 'määrittelem':54C 'näytelm':64C 'näyttelijäntyö':82C 'ohj':28C 'ole':49C,60C 'oma':33C 'on':40C 'osa':36C 'peli':70C 'pienoismaailm':35C 'pienoismal':34C 'profiloij':48C 'puku':12B,22C 'pukusuunnittelu':86C 'pysty':52C 'pääse':79C 'pääsy':89C 'romeo':67C 'roolitu':38C 'salapoliis':42C 'sama':63C 'siel':24C 'silm':72C 'sivusto':7B,17C,78C 'teatter':2A,4B,14C,76C 'teatterimuseo':1A,10B,20C 'tehd':32C,37C 'tutustum':81C 'tyylilaj':56C,83C 'tyylitaitur':50C 'uude':66C 'vapa':88C 'vika':43C 'virtuaallis':13B,23C 'voi':8B,18C,31C 'voisi':45C 'ymmär':74C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Teatterin ABC-sivustolla voi kokeilla Teatterimuseon ainutlaatuisia pukuja virtuaallisesti. Sieltä löytyy myös helpot ohjeet, miten kotikonstein voi tehdä oman pienoismallin, pienoismaailman.</p><p>Osaatko tehdä roolitusta? Vai onko sinussa salapoliisin vikaa ja voisit olla hyvä profiloija?<br>Oletko tyylitaituri ja pystyt helposti määrittelemään mitä tyylilajia esitys edustaa?<br>Entä oletko miettinyt miksi sama näytelmä esitetään uudelleen? Romeo ja Julia -peli avaa silmäsi ja ymmärrät, miksi.</p><p>Teatterin ABC -sivustolla pääsee myös tutustumaan näyttelijäntyön tyylilajeihin, lavastukseen ja pukusuunnitteluun.</p><p>Internet <br>Vapaa pääsy</p>" }, "name": { "fi": "Teatterimuseo: Teatterin ABC" }, "info_url": { "fi": "http://veikko.teatterimuseo.fi/teatterinabc/" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Teatterin ABC-sivustolla voi kokeilla Teatterimuseon ainutlaatuisia pukuja virtuaallisesti. " }, "provider": { "fi": "Teatterimuseo" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzapwtbae/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:af7qdysw6q", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20878/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1780/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18452/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "info_url": { "fi": "https://www.kansallismuseo.fi/fi/naeyttelyt/suomen-tarina", "sv": "https://www.kansallismuseo.fi/sv/utstallningar/suomen-tarina", "en": "https://www.kansallismuseo.fi/en/exhibitions/suomen-tarina" }, "price": { "fi": "https://www.kansallismuseo.fi/fi/naeyttelyt/suomen-tarina", "sv": "https://www.kansallismuseo.fi/sv/utstallningar/suomen-tarina", "en": "https://www.kansallismuseo.fi/en/exhibitions/suomen-tarina" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 77766, "license": "event_only", "created_time": "2022-02-16T09:29:51.689630Z", "last_modified_time": "2022-02-16T09:34:44.524439Z", "name": "Suomen tarina", "url": "http://api.hel.fi/linkedevents/media/images/Kansallismuseon-perusn%C3%A4ytte.jpg", "cropping": "200,0,1000,801", "photographer_name": "Kansallismuseo (c) James Medcraft", "alt_text": "Äitiyspakkaus", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/77766/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-02-16T09:34:45.003433Z", "last_modified_time": "2022-12-20T12:48:02.571853Z", "date_published": null, "start_time": "2018-12-31T22:01:00Z", "end_time": "2023-12-31T21:59:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'arvo':40C 'demokratia':37C 'digitaalis':100C 'elv':91C 'eläv':97C 'ensimmäist':75C 'es':66C 'esin':68C,105C 'evako':87C 'haavo':21C 'helläst':44C 'hetk':99C 'hev':62C 'historia':96C 'huole':65C 'hyvinvoin':42C 'ihmist':79C 'itsenäistymis':17C 'jatkav':102C 'jokais':125C 'jät':122C 'kaatun':72C 'kans':55C,56C 'kansallismuseo':130C 'karjal':86C 'kasvanu':36C 'kerto':111C 'kosk':115C 'kukkopil':92C 'kultaesin':84C 'kummallisuuks':49C 'kurahaalar':61C 'kuv':106C 'käsit':22C 'lahjoittam':83C 'liittyv':20C 'lähimenneisyys':4B,11C 'lähten':88C 'maa':43C 'maailmansod':81C 'matkalauku':94C 'muumej':59C 'myös':29C,46C,124C 'naure':45C 'näyttely':23C,27C,121C,132C 'oivalluks':127C 'om':126C 'onnellin':54C 'ot':71C 'outo':52C 'pallotuol':60C 'pikku-elv':89C 'piku':48C,90C 'pitäv':69C 'punasotil':73C 'pysyv':131C 'rakast':58C 'riemu':30C 'rohkeast':24C 'saap':74C 'sada':32C 'sano':108C 'sauna':64C 'sot':19C 'suomalais':50C 'suomalaist':47C 'suome':1A,3B,10C,34C 'syv':8B,15C 'tar':2A,113C 'tarj':116C 'tasa':39C 'tasa-arvo':38C 'tava':26C 'tavallist':78C 'tila':123C 'tiukast':70C 'toise':80C 'toteutuks':101C 'tulkino':129C 'tulv':28C 'tuova':95C 'uude':25C 'uur':77C 'vaal':76C 'vaikuttav':112C 'vain':117C 'valitu':67C 'valm':118C 'valo':6B,13C 'valtio':82C 'varj':9B,16C 'vastauks':119C 'voida':110C 'vuode':33C", "search_vector_en": "'100':54C 'alon':191C 'also':48C 'answer':207C 'audienc':202C 'ball':98C 'ballot':130C 'bold':32C 'boot':123C 'box':131C 'brim':49C 'bunch':88C 'care':110C 'chair':99C 'children':100C 'connect':169C 'continu':177C 'countri':66C 'deep':14B,26C 'democraci':68C 'digit':180C 'display':114C 'donat':137C 'elect':135C 'elvi':158C 'equal':69C 'exhibit':29C,212C,227C 'fallen':126C 'finland':3A,4B,16C,58C,225C 'finn':82C 'first':134C 'format':181C 'fun':75C 'girl':157C 'goldwar':136C 'grip':118C 'grow':63C 'happi':87C 'heart':121C 'heavi':104C 'histori':7B,19C 'home':164C 'idea':219C 'imag':188C 'independ':45C 'interpret':221C 'item':112C 'joy':51C 'karelia':166C 'leav':162C,213C 'left':38C 'light':12B,24C 'littl':80C,155C 'look':34C 'love':74C,94C 'made':206C 'manag':61C 'metal':105C 'mingl':10B,22C 'moomin':96C 'museum':223C 'music':106C 'nation':78C,222C 'never':199C 'new':33C 'object':187C 'ocarina':151C 'old':57C 'ordinari':142C 'overal':103C 'past':171C 'peculiar':81C 'peopl':92C,143C,216C 'perman':226C 'physic':186C 'place':183C 'poke':73C 'power':196C 'present':174C 'provid':200C 'readi':205C 'ready-mad':204C 'recent':6B,18C 'red':127C 'refuge':156C 'room':214C 'sauna':108C 'second':146C 'select':111C 'shadow':15B,27C 'soldier':128C 'state':140C 'stori':1A,176C,197C 'strong':117C 'struggl':43C 'suffici':194C 'suitcas':153C 'take':30C 'vivid':168C 'war':40C,148C 'waterproof':102C 'weird':85C 'wellb':71C 'word':190C 'world':147C 'wound':37C 'year':56C 'year-old':55C", "search_vector_sv": "'aldr':157C 'andr':111C 'bar':158C 'bastu':81C 'behandl':28C 'berät':146C,151C 'berätt':1A,155C 'består':6B,14C 'besök':168C 'betrak':87C 'bild':141C 'bjud':156C 'bollstol':77C 'demokrati':52C 'digital':150C 'djup':10B,18C 'djärvt':33C 'därför':162C 'egn':169C 'elvi':122C 'evakuer':125C 'finland':3A,4B,12C,46C,173C 'finländ':61C,64C 'flöd':38C 'folk':70C,72C 'färd':160C 'föremål':85C,140C 'först':101C 'galonoverall':78C 'glädj':40C 'grepp':91C 'guldföremål':103C 'histori':131C 'hundr':43C 'håll':86C 'hårdrock':79C 'hör':22C 'ihop':23C 'imponer':154C 'insik':170C 'jämlik':53C 'karel':127C 'konst':63C 'krig':27C 'land':50C 'lergök':115C 'lill':121C 'liv':136C 'ljus':8B,16C 'lyck':69C 'lämn':163C 'mumintroll':75C 'människ':106C 'nationalmuseum':174C 'noggrant':83C 'nytt':34C 'närhistori':5B,13C 'också':39C 'ord':143C 'permanent':175C 'plat':166C 'resväsk':118C 'röd':94C 'samt':113C 'självständighetsprocess':25C 'skratt':57C 'skugg':11B,19C 'skänk':107C 'små':62C 'soldat':95C 'stad':90C 'stat':109C 'stup':93C 'stövl':96C 'svar':161C 'sätt':35C 'sår':20C 'tar':128C,148C 'tid':134C 'tillhörd':120C 'tolkning':172C 'under':67C 'utställning':30C,37C,164C,176C 'utvald':84C 'valet':102C 'valurn':98C 'van':105C 'vuxit':47C 'välfärd':55C 'världskriget':112C 'älsk':74C 'även':58C,165C 'år':44C 'åskboll':76C 'ömt':59C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Suomen lähimenneisyys on valoa ja syviä varjoja. Itsenäistymiseen ja sotiin liittyviä haavoja käsitellään näyttelyssä rohkeasti uudella tavalla. Näyttely tulvii myös riemua, sillä sadassa vuodessa Suomesta on kasvanut demokratian, tasa-arvon ja hyvinvoinnin maa. Hellästi nauretaan myös suomalaisten pikku kummallisuuksille – suomalaiset ovat outo, mutta onnellinen kansa! Kansa, joka rakastaa Muumeja, pallotuolia, kurahaalareita, heviä ja saunaa.</p>\n<p></p>\n<p>Huolella esille valitut esineet pitävät tiukasti otteessaan. Kaatuneen punasotilaan saappaat, ensimmäisten vaalien uurna, tavallisten ihmisten toisessa maailmansodassa valtiolle lahjoittamat kultaesineet sekä Karjalasta evakkona lähteneen pikku-Elvin kukkopilli ja matkalaukku tuovat historian elävästi tähän hetkeen. Digitaaliset toteutukset jatkavat siitä, mitä esinein, kuvin ja sanoin ei voida kertoa.</p>\n<p></p>\n<p>Vaikuttava tarina ei koskaan tarjoa vain valmiita vastauksia. Siksi näyttely jättää tilaa myös jokaisen omille oivalluksille ja tulkinnoille.</p>\n<p></p>\n<p>Kansallismuseo</p>\n<p>Pysyvä näyttely</p>", "sv": "<p>Finlands närhistoria består av ljus och djupa skuggor. Sår som hör ihop med självständighetsprocessen och krigen behandlas i utställningen på ett djärvt, nytt sätt. I utställningen flödar också glädjen, för under hundra år har Finland vuxit till ett land av demokrati, jämlikhet och välfärd. Man skrattar även ömt åt finländarnas små konstigheter – finländarna är ett underligt men lyckligt folk! Ett folk som älskar Mumintrollen, Åskbollen (”bollstolen”), galonoveraller, hårdrock och bastu.</p>\n<p></p>\n<p>De noggrant utvalda föremålen håller betraktaren i ett stadigt grepp. En stupad röd soldats stövlar, en valurna från det första valet, guldföremål som vanliga människor skänkte till staten under andra världskriget samt en lergök och en resväska som tillhörde lilla Elvi när hon evakuerades från Karelen tar med sig historien till vår tid och livar upp den. Där föremål, bilder och ord inte kan berätta allt tar det digitala berättandet vid.</p>\n<p></p>\n<p>En imponerande berättelse bjuder aldrig bara på färdiga svar. Därför lämnar utställningen även plats för besökarnas egna insikter och tolkningar.</p>\n<p></p>\n<p>Finlands nationalmuseum</p>\n<ol>\n<li>Permanent utställning</li>\n</ol>", "en": "<p>Finland’s recent history is a mingling of light and deep shadows. The exhibition takes a bold new look at the wounds left by wars and the struggle for independence. But it also brims with joy for the 100-year-old Finland, which has managed to grow into a country of democracy, equality and wellbeing, and pokes loving fun at the nation’s little peculiarities – Finns are a weird but happy bunch! We are a people who love the Moomins, the Ball Chair, children’s waterproof overalls, heavy metal music and sauna.</p>\n<p></p>\n<p>The carefully selected items on display have a strong grip on our hearts. The boots of a fallen red soldier, a ballot box from the first election, goldware donated to the state by ordinary people during the Second World War, and the ocarina and suitcase of little refugee girl Elvi who had to leave her home in Karelia all vividly connect the past with the present. The story continues on in digital format in places where the physical objects, images and words alone are not sufficient.</p>\n<p></p>\n<p>A powerful story will never provide the audience with ready-made answers, which is why the exhibition leaves room for people’s own ideas and interpretations.</p>\n<p></p>\n<p>National Museum of Finland</p>\n<p>Permanent exhibition</p>" }, "name": { "fi": "Suomen tarina", "sv": "Berättelsen om Finland", "en": "Story of Finland" }, "info_url": { "fi": "https://www.kansallismuseo.fi/fi/naeyttelyt/suomen-tarina", "sv": "https://www.kansallismuseo.fi/sv/utstallningar/suomen-tarina", "en": "https://www.kansallismuseo.fi/en/exhibitions/suomen-tarina" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Suomen lähimenneisyys on valoa ja syviä varjoja. ", "sv": "Finlands närhistoria består av ljus och djupa skuggor.", "en": "Finland’s recent history is a mingling of light and deep shadows." }, "provider": { "fi": "Kansallismuseo", "sv": "Finlands nationalmuseum", "en": "National Museum of Finland" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af7qdysw6q/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:afy7gk6qci", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20878/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1780/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4622/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "info_url": { "fi": "http://www.kansallismuseo.fi", "sv": "http://www.kansallismuseo.fi", "en": "http://www.kansallismuseo.fi" }, "price": { "fi": "14/10€", "sv": "14/10€", "en": "14/10€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 72737, "license": "event_only", "created_time": "2021-08-06T07:08:39.449165Z", "last_modified_time": "2021-08-06T07:09:12.905283Z", "name": "Esihistoria", "url": "http://api.hel.fi/linkedevents/media/images/Esihistoria-1.jpg", "cropping": "180,0,1020,840", "photographer_name": "Suomen Kansallismuseo (c) Titus Verhe", "alt_text": "Pääkalloja vitriinissä", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/72737/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2020-05-08T07:24:27.039689Z", "last_modified_time": "2022-12-20T12:47:06.448553Z", "date_published": null, "start_time": "2018-01-01T09:00:00Z", "end_time": "2023-12-31T21: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": "'000':8B,19C '10':7B,18C '11':61C,65C,74C,78C,87C,91C '14/10':94C '18':62C,75C,88C,96C '20':66C,79C,92C 'aikahypy':30C 'aja':47C 'al':95C 'alue':6B,17C 'ast':37C 'asuk':3B,14C 'eloku':69C 'eläv':31C 'ensimmäis':2B,13C 'esihistor':1A 'esihistoria':27C,32C,46C 'huhtiku':56C 'ihmis':43C 'ihmist':48C 'ilmais':98C 'jouluku':82C 'kansallismuseo':25C,51C 'ke':63C,76C,89C 'kerto':39C 'klo':60C,64C,73C,77C,86C,90C 'ma':71C 'ma-su':70C 'maailm':12B,23C 'mite':40C 'nykyaj':42C 'nykypäiv':36C 'näyttely':28C,38C,53C 'palj':41C 'pysyv':52C 'rakentu':34C 'saapuiv':4B,15C 'silto':35C 'sisäänpääsy':93C 'sitten.millainen':10B,21C 'su':59C,72C,85C 'suome':5B,16C,50C 'syys':81C 'syys-jouluku':80C 'tam':55C 'tammi-huhtiku':54C 'ti':58C,84C 'ti-su':57C,83C 'touko':68C 'touko-eloku':67C 'uudistunu':26C 'vuot':9B,20C 'vuotia':97C 'yht':45C", "search_vector_en": "'-10.00':121C '-18.00':98C,109C,118C '-20.00':101C,112C '000':11B,32C '10':10B,31C '11.00':97C,100C,108C,111C,117C,120C '14/10':124C '18':126C 'admiss':122C 'ago':13B,34C 'april':93C 'area':3B,24C 'august':104C 'back':56C 'build':63C 'common':81C 'compris':5B,26C 'connect':64C 'decemb':115C 'entri':129C 'exhibit':53C,74C,90C 'experi':60C 'extend':66C 'fee':123C 'finland':6B,27C,49C,88C 'first':8B,29C 'free':128C 'januari':92C 'january-april':91C 'kind':15B,36C 'live':22B,43C,61C 'may':103C 'may-august':102C 'modern':71C 'mon':106C 'mon-sun':105C 'much':77C 'museum':47C,86C 'nation':46C,85C 'peopl':21B,42C,55C,84C 'perman':89C 'prehistor':83C 'prehistori':1A,52C,62C 'septemb':114C 'september-decemb':113C 'settl':9B,30C 'showcas':75C 'sun':96C,107C 'take':54C 'time':58C,72C 'tue':95C 'tue-sun':94C 'tue.sun':116C 'updat':51C 'way':69C 'wed':99C,110C,119C 'world':18B,39C 'year':12B,33C 'yrs':127C", "search_vector_sv": "'000':14B,33C '10':13B,32C '11':85C,89C,98C,102C,111C,115C '14/10':118C '18':86C,99C,112C,120C '20':90C,103C,116C 'april':80C 'augusti':93C 'berät':63C 'broar':56C 'bygg':55C 'dag':61C 'decemb':106C 'faktisk':67C 'finland':11B,30C,74C 'finländ':66C 'fram':58C 'fritt':122C 'förhistori':1A,51C 'förhistorisk':72C 'förny':42C 'först':3B,22C 'gemensamt':69C 'inträd':117C,123C 'januari':79C 'januari-april':78C 'kl':84C,88C,97C,101C,110C,114C 'kom':5B,24C 'lev':50C 'maj':92C 'maj-augusti':91C 'människ':4B,23C,73C 'må':95C 'må-sö':94C 'nationalmuseet':45C 'nationalmuseum':75C 'nuvar':10B,29C 'området':7B,26C 'ons':87C,100C,113C 'permanent':76C 'septemb':105C 'september-decemb':104C 'såg':18B,37C 'sö':83C,96C,109C 'ti':82C,108C 'ti-sö':81C,107C 'tidshopp':48C 'utställning':43C,62C,77C 'värld':20B,39C 'änd':57C 'år':15B,34C,121C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Ensimmäiset asukkaat saapuivat Suomen alueelle 10 000 vuotta sitten.Millainen heidän maailmansa oli? </p>\n<p>Kansallismuseon uudistunut esihistorian näyttely on aikahyppy elävään esihistoriaan, josta rakentuu siltoja nykypäivään asti. </p>\n<p>Näyttely kertoo, miten paljon nykyajan ihmisllä on yhteistä esihistorian ajan ihmisten kanssa.</p>\n<p>Suomen kansallismuseo<br>Pysyvä näyttely</p>\n<p>Tammi-huhtikuu<br>ti-su klo 11–18 (ke klo 11–20)</p>\n<p>Touko-elokuu<br>ma-su klo 11–18 (ke klo 11–20)</p>\n<p>Syys-joulukuu<br>ti-su klo 11–18 (ke klo 11–20)</p>\n<p>Sisäänpääsy 14/10€, alle 18-vuotiaat ilmaiseksi</p>", "sv": "<p>De första människorna kom till området för det nuvarande Finland för 10 000 år sedan. Hur såg deras värld ut?</p>\n<p>Den förnyade utställningen på Nationalmuseet är ett tidshopp till levande förhistorien från vilken den bygger broar ända fram till våra dagar. </p>\n<p>Utställningen berättar, hur mycket finländare faktiskt har gemensamt med de förhistoriska människorna. </p>\n<p>Finlands nationalmuseum</p>\n<p>Permanent utställning</p>\n<p></p>\n<p>januari-april<br>ti-sö kl 11–18 (ons kl 11–20)</p>\n<p>maj-augusti<br>må-sö kl 11–18 (ons kl 11–20)</p>\n<p>september-december<br>ti-sö kl 11–18 (ons kl 11–20)</p>\n<p>Inträde 14/10€, under 18 år fritt inträde</p>", "en": "<p>The area now comprising Finland was first settled 10,000 years ago. What kind of a world did these people live in? </p>\n<p>The National Museum of Finland's updated prehistory exhibition takes people back in time to experience living prehistory, building connections that extend all the way to modern times. </p>\n<p>The exhibition showcases, how much we have in common with prehistoric people. </p>\n<p>National Museum of Finland<br>Permanent Exhibition</p>\n<p></p>\n<p>January-April<br>Tue-Sun 11.00-18.00 (Wed 11.00-20.00</p>\n<p>May-August<br>Mon-Sun 11.00-18.00 (Wed 11.00-20.00)</p>\n<p>September-December<br>Tue.Sun 11.00-18.00 (Wed 11.00-10.00)</p>\n<p>Admission fee 14/10€, under 18 yrs free entry</p>" }, "name": { "fi": "Esihistoria", "sv": " Förhistorien", "en": "Prehistory" }, "info_url": { "fi": "http://www.kansallismuseo.fi", "sv": "http://www.kansallismuseo.fi", "en": "http://www.kansallismuseo.fi" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Ensimmäiset asukkaat saapuivat Suomen alueelle 10 000 vuotta sitten.Millainen heidän maailmansa oli? ", "sv": "De första människorna kom till området för det nuvarande Finland för 10 000 år sedan. Hur såg deras värld ut?", "en": "The area now comprising Finland was first settled 10,000 years ago. What kind of a world did these people live in? " }, "provider": { "fi": "Suomen kansallismuseo", "sv": "Finlands nationalmuseum", "en": "National Museum of Finland" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy7gk6qci/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agcmhmphwi", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21189/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2339/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "info_url": { "fi": "https://www.tekniikanmuseo.fi/nayttely/tekniikan-maa/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/teknikens-land/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/techland/" }, "price": { "fi": "https://www.tekniikanmuseo.fi/nayttely/tekniikan-maa/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/teknikens-land/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/techland/" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 67302, "license": "event_only", "created_time": "2020-10-02T06:36:14.191078Z", "last_modified_time": "2022-02-25T11:45:25.517972Z", "name": "Tekniikan museo", "url": "http://api.hel.fi/linkedevents/media/images/P9104994.JPG", "cropping": "240,0,1680,1440", "photographer_name": "Tekniikan museo", "alt_text": "Ihmisiä tutustumassa museoon", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/67302/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-11-29T14:02:07.199198Z", "last_modified_time": "2022-11-29T14:02:07.199237Z", "date_published": null, "start_time": "2017-10-01T08:00:00Z", "end_time": "2027-12-31T15:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'1.10.2017':116C '100':13B,27C '2026':67C '31.12.2027':117C 'aiem':91C 'aine':61C 'aja':75C 'ala':10B,24C,108C 'ark':35C 'ast':68C 'elinkaar':74C 'es':40C,69C 'esitety':92C 'identifioituv':78C 'infrastruktuur':57C 'innost':104C 'innovaatio':11B,25C 'insinöörikans':80C 'kekseliä':79C 'kerto':32C 'kokemin':95C 'koko':73C 'kosk':90C 'koti':53C 'laajenev':56C 'lähtöpist':51C 'maa':2A,4B,18C 'menneisyys':46C 'museo':111C,115C 'nope':83C 'nykyisyys':47C 'näkökulm':94C 'näyttely':6B,20C,31C,50C,71C,99C 'olev':70C 'omaksu':84C 'proses':63C 'raaka':60C 'raaka-ain':59C 'rakentaj':16B,30C 'rool':12B,26C,101C 'silt':88C 'suomalais':76C 'suome':15B,29C,85C 'tarin':86C 'tavoit':102C 'teema':55C 'tekemin':97C 'tekniik':1A,3B,17C,33C,82C,93C,114C 'teknologia':7B,21C,43C 'teollisuud':8B,22C,45C 'tulevaisuus':49C 'tuntev':109C 'tuotanto':58C 'työhö':36C 'tärkeä':100C 'use':77C 'uude':112C 'uudistu':72C 'uusiokäytö':65C 'vaikutuks':34C 'vuote':66C 'vuotia':14B,28C 'yleisö':113C 'yllät':106C 'ympäristö':38C", "search_vector_en": "'1.10.2017':111C '100':16B,35C '2026':100C '31.12.2027':112C 'construct':14B,33C 'cycl':107C 'daili':48C 'display':98C 'environ':53C 'exhibit':3B,22C,41C,69C,93C 'expand':77C 'finland':20B,39C 'futur':59C 'highlight':4B,23C 'home':72C 'industri':9B,28C,63C 'influenc':44C 'infrastructur':79C 'innov':11B,30C 'life':49C,106C 'materi':82C,91C 'museum':108C 'old':19B,38C 'past':56C 'point':66C 'present':57C 'process':83C 'product':80C 'raw':81C 'recycl':87C 'renew':103C 'reus':89C 'reveal':42C 'role':6B,25C 'showcas':54C 'start':65C 'techland':1A 'technolog':8B,27C,46C,61C,110C 'theme':76C 'throughout':104C 'well':85C 'work':50C 'year':18B,37C 'year-old':17B,36C", "search_vector_sv": "'1.10.2017':138C '100':22B,44C '31.12.2027':139C 'aktivitet':98C 'aldr':89C 'arbetet':53C 'berät':48C 'bransch':116C 'dock':88C 'egen':97C 'finland':24B,46C,85C 'finländ':70C 'folk':78C 'framtid':69C 'förgångn':63C 'förut':90C 'hemmet':123C 'histori':86C 'identifier':71C 'industriell':14B,36C 'industrin':10B,32C,62C 'infrastruktur':128C 'ingenjörsfolk':76C 'innovationer':15B,37C 'inspirer':108C 'känn':114C 'land':2A,4B,26C 'miljön':55C 'museet':137C 'museibesök':119C 'målet':105C 'nutid':67C 'nya':118C 'oft':72C 'perspektiv':94C 'presenter':58C 'presenterat':91C 'process':132C 'produktion':129C 'påverk':51C 'roll':16B,38C,102C 'råvar':130C 'samt':11B,33C,133C 'snabbt':80C 'spel':99C 'såväl':59C,111C 'tar':81C 'teknik':1A,3B,25C,50C,84C,93C 'teknisk':136C 'teknologin':9B,31C,60C 'teknologisk':12B,34C 'teman':125C 'tid':64C 'uppbygg':18B,40C 'uppfinningsrik':75C 'upplev':95C 'ur':92C 'utgångspunk':121C 'utställning':7B,29C,47C,57C,104C,120C 'utvidg':126C 'vardag':52C 'varifrån':124C 'vikt':101C 'årig':23B,45C 'återanvändning':135C 'överrask':110C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tekniikan maa on näyttely teknologian, teollisuuden ja alan innovaatioiden roolista 100-vuotiaan Suomen rakentajina. Näyttely kertoo tekniikan vaikutuksesta arkeen, työhön ja ympäristöön ja esillä ovat niin teknologian ja teollisuuden menneisyys, nykyisyys kuin tulevaisuus.</p><p> </p><p>Näyttelyn lähtöpisteenä on koti, josta teemat laajenevat infrastruktuuriin, tuotantoon, raaka-aineisiin ja prosesseihin sekä uusiokäyttöön. Vuoteen 2026 asti esillä oleva näyttely uudistuu koko elinkaarensa ajan.</p><p> </p><p>Suomalaiset usein identifioituvat kekseliääksi insinöörikansaksi ja tekniikan nopeiksi omaksujiksi. Suomen tarinaa ei silti ole koskaan aiemmin esitetty tekniikan näkökulmasta.</p><p>Kokeminen ja tekeminen ovat näyttelyssä tärkeässä roolissa. Tavoite on innostaa ja yllättää niin alaa tuntevat kuin museon uudet yleisöt.</p><p> </p><p>Tekniikan museo</p><p>1.10.2017-31.12.2027</p>", "sv": "<p>Teknikens land är en utställning om teknologins, industrins samt teknologiska och industriella innovationers roll i uppbyggandet av det över 100-åriga Finland.</p><p> </p><p>Utställningen berättar hur tekniken påverkar vardagen, arbetet och miljön och utställningen presenterar såväl teknologins och industrins förgångna tid som deras nutid och framtid.</p><p> </p><p>Finländarna identifieras ofta som ett uppfinningsrikt ingenjörsfolk, ett folk som snabbt tar till sig teknik. Finlands historia har dock aldrig förut presenterats ur teknikens perspektiv.</p><p> </p><p>Upplevelser och egen aktivitet spelar en viktig roll på utställningen. Målet är att inspirera och överraska såväl dem som känner till branschen som nya museibesökare. Utställningens utgångspunkt är hemmet, varifrån teman utvidgas till infrastrukturen, produktionen, råvarorna och processerna samt till återanvändning.</p><p> </p><p>Tekniska museet</p><p>1.10.2017-31.12.2027</p>", "en": "<p>The exhibition highlights the role of technology, industry and innovation in the construction of 100-year-old Finland. The exhibition reveals the influence of technology on daily life, work and the environment, showcasing the past, present and future of technology and industry.</p><p> </p><p>The starting point of the exhibition is the home, from where the themes expand to infrastructure, production, raw materials, processes as well as recycling and reuse of materials. The exhibition, which will be on display until 2026, will be renewed throughout its life cycle.</p><p> </p><p>Museum of Technology</p><p>1.10.2017-31.12.2027</p>" }, "name": { "fi": "Tekniikan maa", "sv": "Teknikens land", "en": "TechLand" }, "info_url": { "fi": "https://www.tekniikanmuseo.fi/nayttely/tekniikan-maa/", "sv": "https://www.tekniikanmuseo.fi/sv/Utst%C3%A4llningen/teknikens-land/", "en": "https://www.tekniikanmuseo.fi/en/exhibition/techland/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Tekniikan maa on näyttely teknologian, teollisuuden ja alan innovaatioiden roolista 100-vuotiaan Suomen rakentajina. ", "sv": "Teknikens land är en utställning om teknologins, industrins samt teknologiska och industriella innovationers roll i uppbyggandet av det över 100-åriga Finland.", "en": "The exhibition highlights the role of technology, industry and innovation in the construction of 100-year-old Finland." }, "provider": { "fi": "Tekniikan museo", "sv": "Tekniska museet", "en": "Museum of Technology" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcmhmphwi/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:af7ohjnmha", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21319/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "info_url": { "fi": "https://www.designmuseum.fi/fi/exhibitions/utopia-nyt-kertomus-suomalaisesta-muotoilusta/", "sv": "https://www.designmuseum.fi/sv/exhibitions/utopi-nu-en-berattelse-on-finlandsk-formgivning/", "en": "https://www.designmuseum.fi/en/exhibitions/utopia-now-the-story-of-finnish-design/" }, "price": { "fi": "https://www.designmuseum.fi/fi/exhibitions/utopia-nyt-kertomus-suomalaisesta-muotoilusta/", "sv": "https://www.designmuseum.fi/sv/exhibitions/utopi-nu-en-berattelse-on-finlandsk-formgivning/", "en": "https://www.designmuseum.fi/en/exhibitions/utopia-now-the-story-of-finnish-design/" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "helsinki", "publisher": "ytj:0586977-6", "sub_events": [ { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af7xqlozeu/" } ], "images": [ { "id": 77668, "license": "event_only", "created_time": "2022-02-10T12:34:31.770793Z", "last_modified_time": "2022-02-10T12:39:52.286366Z", "name": "Utopia nyt - kertomus suomalaisesta muotoilusta", "url": "http://api.hel.fi/linkedevents/media/images/dm_designmuseum_collectione.jpg", "cropping": "200,0,1000,800", "photographer_name": "Designmuseo (c) Paavo Lehtonen", "alt_text": "Kuviollinen sienä, nainen katsoo pöytää", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/77668/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-02-10T12:39:52.660895Z", "last_modified_time": "2022-11-28T09:24:09.238065Z", "date_published": null, "start_time": "2017-02-03T22:01:00Z", "end_time": "2023-12-31T21:59: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": "'aika':102C 'aikajanakäytäv':67C 'alusto':18B,32C 'ark':76C 'ava':8B,22C,74C 'designmuseo':6B,20C,112C 'digitaalis':17B,31C 'eläv':11B,25C 'en':80C 'eri':56C 'eril':95C 'esimerk':96C 'esin':82C 'esittel':92C 'huone':105C 'hyvinvointivaltio':40C 'hyödyntäe':19B,33C 'ikonihuon':68C 'jaetu':62C 'jokain':98C 'jota':48C 'kaut':58C 'kehityks':41C 'kerto':35C 'kertomus':3A 'kokoelmanäyttely':7B,21C,43C 'kute':104C 'kuute':63C 'kännyk':108C 'käytännönläh':45C 'luoda':47C 'lähesty':54C 'merkity':51C 'mone':55C 'muotoilu':5A,36C,75C 'muotoiluhistoria':10B,24C,53C 'muotoiluproses':93C 'muuttuv':89C 'nokia':107C 'nähtäv':106C 'näyttely':34C,60C,114C 'olennais':37C 'oma':101C 'osa':64C 'palvelu':84C 'peli':111C 'proses':88C 'prosessihuon':65C,73C 'pysyv':113C 'päivä':14B,28C 'rool':38C 'rovio':110C 'seitsem':94C 'suomal':9B,23C,52C 'suomalais':4A,39C 'tapa':46C 'tapahtu':79C 'tarino':12B,26C 'tarkoit':44C 'teema':57C 'teknologia':15B,29C 'tila':70C,91C 'tilallis':59C 'tule':85C 'tuote':87C 'utop':1A,103C 'utopia':42C 'vaihtuv':69C 'valmis':86C 'varasto':72C 'virtuaalihuon':66C", "search_vector_en": "'1950s':22B,46C 'age':16B,40C 'alik':31B,55C 'amount':111C 'angri':28B,52C 'applic':99C 'bird':29B,53C 'central':67C 'collect':62C 'design':7A,19B,43C,59C,70C,89C,116C 'digit':98C 'display':102C 'emerg':73C 'exhibit':9B,33C,63C,96C,119C 'fall':80C 'featur':10B,34C 'finnish':6A,18B,42C,76C 'five':82C 'game':30B,54C 'golden':15B,39C 'greater':110C 'histori':87C 'icon':11B,35C 'inform':113C 'live':93C 'materi':106C 'mobil':24B,48C 'much':109C 'museum':60C,117C 'narrat':94C 'nokia':23B,47C 'perman':118C 'permit':100C 'phone':25B,49C 'piec':12B,36C 'present':91C 'previous':104C,115C 'role':68C 'state':78C 'stori':4A 'tell':64C 'theme':83C 'unseen':105C 'utopia':1A,56C 'welfar':77C", "search_vector_sv": "'aldr':54C 'användargrupp':70C 'applikation':48C 'beakt':67C 'berät':9B,22C,42C 'berätt':3A 'dat':60C 'design':6A 'designmuseet':7B,20C,76C 'digital':47C 'elevgrupp':75C 'fem':37C 'finsk':5A,18B,31C 'formgivning':11B,24C,40C 'fördjup':62C 'genom':65C 'gör':49C 'histori':41C 'lev':45C 'material':57C 'museet':68C 'mångfald':59C 'möj':51C 'olik':69C 'permanent':77C 'presenter':53C 'roll':13B,26C 'samlingsutställning':8B,21C 'samtid':61C 'skåd':56C 'sätt':46C 'teman':38C 'tid':55C 'turist':73C 'uppdel':35C 'utopi':1A 'utställning':33C,78C 'utställningsupplev':64C 'utveckling':15B,28C 'vikt':12B,25C 'välfärdsstat':19B,32C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Designmuseon kokoelmanäyttely avaa suomalaista muotoiluhistoriaa elävinä tarinoina, tämän päivän teknologiaa ja digitaalisia alustoja hyödyntäen. Näyttely kertoo muotoilun olennaisesta roolista suomalaisen hyvinvointivaltion kehityksessä.</p>\n<p></p>\n<p>Utopialla kokoelmanäyttelyssä tarkoitetaan käytännönläheistä tapaa luoda jotain, millä on merkitystä. Suomalaista muotoiluhistoriaa lähestytään monen eri teeman kautta. Tilallisesti näyttely on jaettu kuuteen osaan: Prosessihuoneeseen, Virtuaalihuoneeseen, Aikajanakäytävään, Ikonihuoneeseen, Vaihtuvaan tilaan ja Varastoon.</p>\n<p></p>\n<p>Prosessihuone avaa muotoilun arkea, sitä mitä tapahtuu ennen kuin esineestä tai palvelusta tulee valmis tuote. Prosessit muuttuvat ja tila esittelee muotoiluprosesseista seitsemän erilaista esimerkkiä. Niistä jokainen on ollut oman aikansa utopia, kuten huoneessa nähtävät Nokian kännykät tai Rovion pelit.</p>\n<p></p>\n<p>Designmuseo</p>\n<p>Pysyvä näyttely</p>\n<p></p>", "sv": "<p>Designmuseets samlingsutställning berättar om formgivningens viktiga roll i utvecklingen av den finska välfärdsstaten. </p>\n<p></p>\n<p>Utställningen är uppdelad i fem teman, där formgivningens historia berättas på ett levande sätt: Digitala applikationer gör det möjligt att presentera aldrig tidigare skådat material och mångfaldiga data. Samtidigt fördjupar de utställningsupplevelsen genom att beakta museets olika användargrupper, allt från turister till elevgrupper.</p>\n<p></p>\n<p>Designmuseet</p>\n<p>Permanent utställning</p>", "en": "<p>This exhibition features iconic pieces from the golden age of Finnish design of the 1950s, Nokia mobile phones and the Angry Birds game alike. </p>\n<p></p>\n<p>Utopia Now is Design Museum’s collections exhibition, telling about the central role of design in the emergence of the Finnish welfare state. It falls into five themes in which the history of design is presented in living narratives. The exhibition’s digital applications permit the display of previously unseen materials and a much greater amount of information than previously.</p>\n<p></p>\n<p>Design Museum</p>\n<p>Permanent exhibition</p>" }, "name": { "fi": "Utopia nyt - kertomus suomalaisesta muotoilusta", "sv": "Utopi nu - berättelsen om finsk design", "en": "Utopia Now - The Story of Finnish Design" }, "info_url": { "fi": "https://www.designmuseum.fi/fi/exhibitions/utopia-nyt-kertomus-suomalaisesta-muotoilusta/", "sv": "https://www.designmuseum.fi/sv/exhibitions/utopi-nu-en-berattelse-on-finlandsk-formgivning/", "en": "https://www.designmuseum.fi/en/exhibitions/utopia-now-the-story-of-finnish-design/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Designmuseon kokoelmanäyttely avaa suomalaista muotoiluhistoriaa elävinä tarinoina, tämän päivän teknologiaa ja digitaalisia alustoja hyödyntäen. ", "sv": "Designmuseets samlingsutställning berättar om formgivningens viktiga roll i utvecklingen av den finska välfärdsstaten. ", "en": "This exhibition features iconic pieces from the golden age of Finnish design of the 1950s, Nokia mobile phones and the Angry Birds game alike. " }, "provider": { "fi": "Designmuseo", "sv": "Designmuseet", "en": "Design Museum" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af7ohjnmha/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "matko:16273", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20643/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8025/" } ], "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "info_url": { "fi": "http://www.mfa.fi", "sv": "http://www.mfa.fi", "en": "http://www.mfa.fi" }, "price": { "fi": "10€", "sv": "10€", "en": "10€" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "matko", "publisher": "ytj:0586977-6", "sub_events": [], "images": [ { "id": 43572, "license": "event_only", "created_time": "2018-04-20T11:03:48.634438Z", "last_modified_time": "2021-12-27T08:33:58.702272Z", "name": "Arkkitehtuurimme vuosikymmenet 1900-1970", "url": "http://api.hel.fi/linkedevents/media/images/20141002_1537_L1005693_4371.jpg", "cropping": "318,0,1602,1283", "photographer_name": "Helsinki Marketing (c) Jussi Hellsten", "alt_text": "Temppeliaukion kirkko sisältä", "data_source": "helsinki", "publisher": "ytj:0586977-6", "@id": "http://api.hel.fi/linkedevents/v1/image/43572/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": null, "last_modified_time": "2022-11-24T10:24:50.903801Z", "date_published": "2010-03-26T22:00:00Z", "start_time": "2010-03-26T22:01:00Z", "end_time": "2023-12-31T21: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": "'-18':56C '-1970':4A '-20':60C '11':55C,59C '1900':3A '1970':48C 'arkkiteht':37C 'arkkitehtuur':1A,13B,23C 'arkkitehtuurimuseo':5B,15C,50C 'edustam':38C 'ensimmäist':34C 'eri':25C 'funktionalism':41C 'historianäyttely':9B,19C 'kaivatu':7B,17C 'kansainvälis':43C 'kansallisromantiik':39C 'kauan':6B,16C 'kaus':26C 'kaut':47C 'ke':57C 'klassism':40C 'klo':54C,58C 'kotim':35C 'luone':45C 'luvu':49C 'maine':44C 'materiaal':30C 'matk':11B,21C 'modernism':46C 'pysyv':8B,18C 'ratkaisu':29C 'seura':33C 'sisustuks':32C 'su':53C 'suome':12B,22C 'teknis':28C 'ti':52C 'ti-su':51C 'tyylipiirt':27C 'valmistun':36C 'vie':10B,20C 'vuosikymmen':2A,14B,24C", "search_vector_en": "'-18.00':99C '-1970':6A '-20.00':102C '11.00':98C,101C '1900':5A '1970':89C '20th':28B,51C 'architectur':4A,15B,25B,38C,48C,86C,94C 'centuri':29B,52C 'classic':71C 'countri':80C 'creat':78C 'decad':1A,64C,66C 'design':60C 'differ':53C 'exhibit':9B,32C 'featur':54C 'finnish':3A,14B,24B,37C,47C,93C 'follow':62C 'function':73C 'interior':59C 'intern':82C 'journey':21B,44C 'materi':57C 'modern':76C 'museum':12B,35C,91C 'nation':68C 'perman':8B,31C 'reput':83C 'romantic':69C 'solut':56C 'sun':97C 'take':16B,39C 'technic':55C 'tue':96C 'tue-sun':95C 'visitor':18B,41C 'wed':100C", "search_vector_sv": "'-18':24C '-1970':5A '-20':28C '11':23C,27C '1900':4A 'arkitektur':2A 'arkitekturhistori':9B,15C 'arkitekturmuseet':11B,17C,18C 'finland':8B,14C 'kl':22C,26C 'ons':25C 'presenter':7B,13C 'sö':21C 'ti':20C 'ti-sö':19C 'utställning':6B,12C 'årtiond':3A", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Arkkitehtuurimuseon kauan kaivattu, pysyvä historianäyttely vie matkalle Suomen arkkitehtuurin vuosikymmeniin. Eri kausien tyylipiirteitä, teknisiä ratkaisuja, materiaaleja ja sisustuksia seurataan ensimmäisten kotimaassa valmistuneiden arkkitehtien edustamasta kansallisromantiikasta klassismin, funktionalismin ja kansainvälisen maineemme luoneen modernismin kautta 1970-luvulle.</p>\n<p>Arkkitehtuurimuseo<br>Ti-su klo 11-18, ke klo 11-20</p>", "sv": "<p>Utställningen presenterar Finlands arkitekturhistoria på Arkitekturmuseet.</p>\n<p>Arkitekturmuseet<br>ti-sö kl 11-18, ons kl 11-20</p>", "en": "<p>The permanent exhibition in the Museum of Finnish Architecture takes its visitors on a journey into the Finnish architecture of the 20th century. Different features, technical solutions, materials and interior design are followed from decade to decade; from National Romanticism to Classicism and Functionalism, through the Modernism that created the country's international reputation to the architecture of the 1970's.</p>\n<p>Museum of Finnish Architecture<br>Tue-Sun 11.00-18.00, Wed 11.00-20.00</p>" }, "name": { "fi": "Arkkitehtuurimme vuosikymmenet 1900-1970", "sv": "Vår arkitekturs årtionden 1900-1970", "en": "Decades of Finnish Architecture 1900-1970" }, "info_url": { "fi": "http://www.mfa.fi/nayttelyesittely?nid=13642975", "sv": "http://www.mfa.fi/exhibition?nid=13642975", "en": "http://www.mfa.fi/exhibition?nid=13642975" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Arkkitehtuurimuseon kauan kaivattu, pysyvä historianäyttely vie matkalle Suomen arkkitehtuurin vuosikymmeniin.", "sv": "Utställningen presenterar Finlands arkitekturhistoria på Arkitekturmuseet.", "en": "The permanent exhibition in the Museum of Finnish Architecture takes its visitors on a journey into the Finnish architecture of the 20th century. " }, "provider": { "fi": "Arkkitehtuurimuseo", "sv": "Arkitekturmuseet", "en": "Museum of Finnish Architecture" }, "@id": "http://api.hel.fi/linkedevents/v1/event/matko:16273/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:af23nmwzda", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8663/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10041/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1780/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18452/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22824/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2699/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8107/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/helsinginkaupunginmuseo", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/helsinginkaupunginmuseo/?hl=fi", "language": "fi" }, { "name": "extlink_twitter", "link": "https://twitter.com/kaupunginmuseo?lang=fi", "language": "fi" } ], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u4804001020", "sub_events": [], "images": [ { "id": 68022, "license": "event_only", "created_time": "2020-11-11T09:42:21.821331Z", "last_modified_time": "2020-11-11T09:42:21.821354Z", "name": "Aikakone johdattelee kävijänsä menneen ajan Helsinkiin.", "url": "https://www.helsinginkaupunginmuseo.fi/wp-content/uploads/2016/01/190408_Aikakone2_vr_2-Edit.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginmuseo | Yehia Eweis", "alt_text": "Poika kokeilee virtuaalilaseja Aikakone-näyttelyssä", "data_source": "helsinki", "publisher": "ahjo:u4804001020", "@id": "http://api.hel.fi/linkedevents/v1/image/68022/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2020-11-11T09:46:15.723014Z", "last_modified_time": "2022-10-13T07:53:58.715482Z", "date_published": null, "start_time": "2020-11-11T09:00:00Z", "end_time": "2030-12-31T17: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": "'15':138C '1869':140C '1900':70C '1907':162C '1913':163C '2.0':67C,121C,175C,199C '3d':219C '3d-virtuaaliteknologiaa':218C '907':165C 'aika':96C 'aikakon':1A,6B,36C,51C,66C,120C,174C,198C,210C,257C 'aikamatk':3B 'aikamatkaaj':69C 'aikamatkaelämyks':221C 'ala':79C 'alu':72C,150C 'ammatillist':206C 'animoint':216C 'arkis':118C 'associatio':192C 'astu':2B,35C 'avu':18B,228C 'avustuks':205C 'brander':9B,46C,54C,95C,109C,127C,142C,160C 'demos':186C 'eli':134C 'elo':15B,50C,56C 'eläm':27C 'elämänmeno':147C 'eläv':40C 'ensim':99C 'entisaj':25C 'erilaist':259C 'etual':236C 'finnish':189C 'haastattelu':263C 'haaveilu':22C 'hank':209C 'helsing':14B,28C,48C,65C,152C,187C 'helsink':5B,44C,73C,97C,144C 'helsinkil':146C 'herät':7B,52C 'herääv':49C 'huhtiku':139C 'hyödyn':211C 'ihmist':26C,238C 'imais':38C 'immersiivin':58C 'innovatiivis':208C 'interaktiivin':59C 'jolo':151C 'joskus':21C 'jugend':86C 'kalio':130C 'kansallismuseo':105C 'kansallisromantiik':85C 'katutaso':113C 'kaupunginmuseo':29C,168C,245C 'kaupunk':77C,82C,159C 'kaupunkieläm':117C 'kaupunkilais':252C 'kaupunkilaist':249C 'kaut':264C 'kehitety':177C 'kert':100C 'keskustelu':261C 'kiivaast':157C 'kirko':131C 'kivilino':76C 'klassism':89C 'kohtaamis':240C 'koke':223C 'kokoelm':169C 'kuite':232C 'kuljet':61C 'kurkist':24C 'kute':104C 'kuva':110C,143C 'kuvaam':164C 'kyselyj':260C 'käs':137C 'kävij':62C 'lait':229C 'lasinegatiiv':166C 'lintuperspektiiv':107C 'lisä':108C 'luvu':71C 'läpi':63C 'mahdollisuud':23C 'men':244C 'menneisyyd':4B,43C,64C 'moni':19C 'muas':213C 'muinaismuistolautakun':153C 'muisto':241C 'muka':255C 'museo':173C,207C 'museokävij':33C 'museovirasto':204C 'muun':212C 'muuttuv':158C 'myös':112C,203C,256C 'n':182C,194C 'nikolainkirko':133C 'nousev':237C 'nykyis':135C 'nähd':123C 'nähtäv':101C 'näin':116C 'näköalapaiko':103C 'onnistu':31C 'osa':185C 'ottam':128C 'oy':181C 'palk':154C 'panoraamakuv':129C 'panoraamo':111C 'perin':91C 'peru':170C 'perustuv':126C 'pohjoism':88C 'projekt':197C 'projisio':124C 'puutalo':80C 'pysyttelev':233C 'rahoitu':202C 'reality':191C 'research':180C 'ry':193C 'sa':122C 'saanu':201C 'sada':10B 'seinäprojisoint':214C 'sekoitus':84C 'sign':8B,45C,53C 'suunnittelu':258C 'syntyny':141C 'takais':12B 'tallentam':156C 'taust':234C 'tavoit':115C 'teatim':179C 'tehty':247C 'teknolog':231C 'teknologia':17B,172C 'tila':225C 'tilainstallaatio':60C 'todentuntuis':42C 'torn':106C 'tulevaisuud':171C 'tuomiokirko':136C 'tuul':94C 'uude':16B 'uus':93C,102C 'uusi':75C,81C 'valokuv':13B,47C,55C 'valt':78C 'vanh':90C 'vie':68C 'viime':148C 'virtuaalihub':196C 'virtuaalihubit-projekt':195C 'virtuaaliteknologia':220C 'virtuaalitodellisuuslait':227C 'virtual':190C 'voi':222C 'voiva':34C 'vuode':11B 'vuos':161C 'vuosisad':149C 'välis':239C 'yhd':248C 'yhteistyö':178C 'yhteys':243C 'yksityiskohd':119C 'ään':215C", "search_vector_en": "'15':239C '150th':74C '1869':241C '1907':281C '1913':283C '2.0':81C,129C,218C,295C,321C '20th':137C '20th-century':136C '907':274C 'addit':195C 'agenc':329C 'aliv':70C 'also':204C 'anniversari':75C 'antiqu':266C 'april':240C 'art':162C 'associ':313C 'authent':56C 'away':49C,133C 'back':4B 'base':221C 'basi':286C 'begin':251C 'bird':198C 'board':264C 'born':237C 'brander':64C,78C,98C,173C,203C,223C,242C,279C 'bring':96C 'captur':210C 'castl':152C 'cathedr':236C 'centuri':138C,255C 'chang':271C 'church':229C,233C 'citi':149C,155C,263C,272C,289C 'classic':166C 'collabor':299C 'collect':292C 'come':69C 'commemor':72C 'could':20C 'creat':85C,110C 'demo':307C 'detail':212C 'develop':297C 'earli':135C 'everyday':211C 'exact':38C 'experi':91C 'eye':201C 'finnish':310C,327C 'first':180C 'fund':324C 'glass':275C 'grant':331C 'help':105C 'helsinki':9B,57C,68C,124C,139C,176C,235C,244C,248C,262C,308C 'heritag':328C 'hire':259C 'hous':142C 'hub':317C 'hundr':60C 'immers':112C 'innov':333C 'instal':116C 'interact':114C 'journey':122C 'kallio':228C 'level':209C 'life':102C,215C,246C 'lifetim':175C 'live':33C,54C 'machin':2A,45C,89C,95C,128C,217C,294C,320C 'make':144C 'mix':158C 'museum':191C,290C,337C 'nation':160C,190C 'negat':276C 'new':80C,93C,148C,154C,170C,184C 'nichola':232C 'nordic':165C 'nouveau':163C 'old':167C 'onboard':42C 'oy':303C 'panorama':206C,225C 'part':305C 'partial':323C 'past':12B,26C,62C,126C 'peek':23C 'peopl':30C 'photo':226C 'photograph':66C,100C,205C,243C 'point':186C 'previous':254C 'probabl':17C 'produc':277C 'profession':336C 'project':220C,318C,334C 'rapid':270C 'realiti':312C,316C 'record':268C 'research':302C 'romantic':161C 's-ey':199C 'see':28C 'show':219C 'sign':63C,77C,97C 'sneak':21C 'spatial':115C 'st':231C 'step':41C 'stone':151C 'street':208C 'take':118C 'teatim':301C 'technolog':108C 'time':1A,6B,44C,88C,94C,127C,181C,216C,293C,319C 'tower':193C 'tradit':168C 'travel':3B 'urban':214C 'us':15C 'use':31C 'vantag':185C 'version':82C 'view':202C 'virtual':90C,311C,315C 'visibl':182C 'visit':51C 'visitor':119C,132C 'vr':107C 'way':145C 'whisk':47C,131C 'wind':171C 'wish':18C 'wooden':141C 'year':61C", "search_vector_sv": "'15':181C '1869':183C '1900':93C '1907':215C '1913':216C '2.0':85C,157C,227C,251C '3d':275C '3d-virtuell':274C '907':208C 'alltså':172C 'animering':272C 'anläggning':293C,294C 'ann':269C 'anställd':198C 'april':182C 'association':248C 'autentisk':55C 'bakgrund':300C 'baser':162C 'berghäll':168C 'beskåd':131C 'besök':80C 'bidrag':257C 'bild':217C 'bland':268C 'blandning':111C 'brand':142C,176C,211C 'brander':58C,70C,124C,165C 'båd':283C 'början':91C,191C 'demo':242C 'detalj':154C 'dock':298C 'domkyrkan':175C 'drivn':263C 'drömm':17C 'finansierat':254C 'finnish':245C 'fornminnesnämnd':197C 'fotografer':141C,184C,212C 'fotografi':59C,71C 'fram':230C 'framtid':222C 'främst':315C 'fågelperspektiv':140C 'fång':148C 'född':179C 'förbind':308C 'förblir':297C 'förev':202C 'förflutn':83C,311C 'förr':30C,193C 'först':129C 'förutom':139C 'förändr':205C 'gaml':104C,118C 'gatunivån':146C 'genom':81C 'glasnegativ':209C 'grund':218C 'gång':15C,130C 'haft':16C 'helsingfor':10B,34C,53C,61C,82C,89C,127C,185C,189C,196C 'helsinki':243C 'hjälp':288C 'hos':241C,261C 'hundr':46C 'immersiv':76C 'in':39C 'innovativ':259C 'interaktiv':77C 'jugend':114C 'kik':24C 'klassicism':117C 'kyrk':169C 'känsl':56C 'led':79C 'levern':29C 'liv':27C,64C,73C 'livet':187C 'livfull':52C 'ljud':271C 'minn':306C 'muse':264C 'museet':225C 'museibesök':37C 'museiverket':256C 'människ':305C 'människor':26C 'mång':11C 'möj':22C 'möt':303C 'nationalmuseet':137C 'nationalromantik':113C 'nikolaikyrkan':171C 'nordisk':116C 'nuvar':174C 'nya':66C,97C,107C,121C,134C 'också':253C 'oy':236C 'panoramabild':143C,166C 'projek':260C 'projektet':239C 'projicering':160C 'reality':247C 'resan':278C 'research':235C 'rummet':316C 'rumsinstallation':78C 'ry':249C 'samarbet':232C 'samling':221C 'ser':158C 'sign':57C,69C 'snabbt':204C 'stad':99C,108C,206C 'stadslivet':152C 'stadsmuseet':220C 'stadsmuseum':35C 'stenslot':98C 'stå':313C 'svunnet':9B 'säker':13C 'sätt':151C 'såsom':136C 'tagit':229C 'talet':94C 'tar':43C,86C 'teatim':234C 'teknologi':223C,277C 'teknologin':296C 'terräng':101C 'tid':32C,49C,125C,280C 'tidmaskin':1A 'tidsmaskin':41C,67C,84C,156C,226C,250C,266C 'tidsres':6B 'tidsresenär':87C 'tillbak':45C 'torn':138C 'tradition':119C 'träd':38C 'trähus':105C 'upplev':282C 'utnyttj':267C 'utrymmet':285C 'utsiktsplats':135C 'vakn':62C 'vardag':153C 'verk':292C 'verklighet-anläggning':291C 'vind':122C 'vinn':100C 'virtuaalihubit':240C 'virtual':246C 'virtuell':276C,290C 'väck':68C 'väggprojektion':270C 'vällkomm':2B 'yrkesmäss':262C 'även':144C 'år':47C 'åren':214C 'århundradet':194C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Moni on joskus haaveillut mahdollisuudesta kurkistaa entisajan ihmisten elämään. Helsingin kaupunginmuseossa se onnistuu, sillä museokävijät voivat astua Aikakoneeseen, joka imaisee heidät elävään ja todentuntuiseen menneisyyden Helsinkiin.</p>\n<p>Signe Branderin valokuvat Helsingistä heräävät eloon<br>Aikakone herättää Signe Branderin valokuvat eloon ja immersiivinen, interaktiivinen tilainstallaatio kuljettaa kävijän läpi menneisyyden Helsingin. Aikakone 2.0 vie aikamatkaajan 1900-luvun alun Helsinkiin, jossa uusi kivilinnojen kaupunki valtaa alaa puutaloilta. Uusi kaupunki on sekoitus kansallisromantiikkaa, jugendia, sekä pohjoismaista klassismia – vanhaa perinnettä ja uusia tuulia.</p>\n<p>Branderin aikana Helsinki oli ensimmäistä kertaa nähtävissä uusista näköalapaikoista, kuten Kansallismuseon tornista. Lintuperspektiivin lisäksi Brander kuvasi panoraamoja myös katutasosta ja tavoitti näin kaupunkielämän arkiset yksityiskohdat. Aikakone 2.0:ssa nähdään projisioita, jotka perustuvat Branderin ottamiin panoraamakuviin Kallion kirkosta ja Nikolainkirkosta eli nykyisestä Tuomiokirkosta käsin.</p>\n<p>15. huhtikuuta 1869 syntynyt Brander kuvasi Helsinkiä ja helsinkiläistä elämänmenoa viime vuosisadan alussa, jolloin Helsingin muinaismuistolautakunta palkkasi hänet tallentamaan kiivaasti muuttuvaa kaupunkia. Branderin vuosina 1907–1913 kuvaamat 907 lasinegatiivia ovat kaupunginmuseon kokoelmien perusta.</p>\n<p>Tulevaisuuden teknologiaa museossa<br>Aikakone 2.0 on kehitetty yhteistyössä Teatime Research Oy:n kanssa ja osana Demos Helsingin ja Finnish Virtual Reality Association ry:n Virtuaalihubit-projektia. Aikakone 2.0 on saanut rahoitusta myös Museoviraston avustuksista ammatillisten museoiden innovatiivisiin hankkeisiin.</p>\n<p>Aikakoneessa hyödynnetään muun muassa seinäprojisointeja, ääntä, animointia ja 3D-virtuaaliteknologiaa. Aikamatkaelämyksen voi kokea sekä tilassa että virtuaalitodellisuuslaitteiden avulla. Laitteet ja teknologia kuitenkin pysyttelevät taustalla ja etualalle nousevat ihmisten väliset kohtaamiset, muistot ja yhteys menneeseen.</p>\n<p>Kaupunginmuseo on tehty yhdessä kaupunkilaisten kanssa, ja kaupunkilaiset ovat olleet mukana myös Aikakoneen suunnittelussa erilaisten kyselyjen, keskustelujen ja haastattelujen kautta.</p>", "sv": "<p>Många har säkerligen någon gång haft drömmen om att ha en möjlighet att kika i människors liv och leverne förr i tiden. I Helsingfors stadsmuseum kan museibesökarna träda in i Tidsmaskinen som tar oss tillbaka hundra år i tiden till ett livfullt Helsingfors med autentisk känsla.</p>\n<p>Signe Branders fotografier av Helsingfors vaknar till liv<br>Den nya Tidsmaskinen väcker Signe Branders fotografier till liv och den immersiva, interaktiva rumsinstallationen leder besökaren genom Helsingfors förflutna. Tidsmaskin 2.0 tar tidsresenären till Helsingfors i början av 1900-talet, där de nya stenslottens stad vinner terräng från de gamla trähusen. Den nya staden är en blandning av nationalromantik, jugend och nordisk klassicism – gamla traditioner och nya vindar.</p>\n<p>På Branders tid kunde Helsingfors för första gång beskådas från de nya utsiktsplatserna, såsom Nationalmuseets torn. Förutom fågelperspektiven fotograferade Brander panoramabilder även på gatunivån och fångade på så sätt stadslivets vardagliga detaljer. I Tidsmaskin 2.0 ser man projiceringar som baserar sig på Branders panoramabilder av Berghälls kyrka och Nikolaikyrkan, alltså den nuvarande Domkyrkan.</p>\n<p>Brander, som var född den 15 april 1869, fotograferade Helsingfors och livet i Helsingfors i början av förra århundradet, då Helsingfors fornminnesnämnd anställde henne till att föreviga den snabbt förändrande staden. De 907 glasnegativen som Brander fotograferade under åren 1907–1913 bildar grunden till stadsmuseets samlingar.</p>\n<p>Framtidens teknologi i museet<br>Tidsmaskin 2.0 har tagits fram i samarbete med Teatime Research Oy och inom projektet Virtuaalihubit hos Demos Helsinki och Finnish Virtual Reality Association ry. Tidsmaskin 2.0 har också finansierats med Museiverkets bidrag till innovativa projekt hos yrkesmässigt drivna museer.</p>\n<p>I Tidsmaskinen utnyttjas bland annat väggprojektioner, ljud, animering och 3D-virtuell teknologi. Resan i tiden kan upplevas både i utrymmet och med hjälp av virtuell verklighet-anläggningar. Anläggningarna och teknologin förblir dock i bakgrunden så att möten mellan människor, minnen och förbindelsen med det förflutna kan stå i främsta rummet.<br></p>", "en": "<p>Most of us have probably wished we could sneak a peek into the past to see how people used to live. Now, you can do exactly that and step onboard our Time Machine that whisks you away to visit a very lively and authentic Helsinki of a hundred years past.</p>\n<p>Signe Brander’s photographs of Helsinki come alive<br>To commemorate the 150th anniversary of Signe Brander, a new 2.0 version has been created of the Time Machine virtual experience. The new Time Machine brings Signe Brander’s photographs to life with the help of VR technology to create an immersive and interactive spatial installation that takes visitors on a journey through Helsinki’s past. Time Machine 2.0 will whisk visitors away to early 20th-century Helsinki, where wooden houses are making way for a new city of stone castles. The new city is a mix of national romanticism, Art Nouveau and Nordic classicism – old traditions and new winds.</p>\n<p>During Brander’s lifetime, Helsinki was for the first time visible from new vantage points, such as the National Museum’s tower. In addition to the bird’s-eye view, Brander also photographed panoramas at street level, capturing everyday details of urban life. Time Machine 2.0 shows projections based on Brander’s panorama photos of Kallio Church and St Nicholas’ Church (now Helsinki Cathedral).</p>\n<p>Born on 15 April 1869, Brander photographed Helsinki and life in Helsinki at the beginning of the previous century, when she was hired by the Helsinki City Board of Antiquities to record the rapidly changing city. The 907 glass negatives produced by Brander between 1907 and 1913 are the basis of the City Museum’s collections.</p>\n<p>Time Machine 2.0 was developed in collaboration with Teatime Research Oy as part of Demos Helsinki and Finnish Virtual Reality Association’s Virtual Reality Hubs project. Time Machine 2.0 was partially funded with the Finnish Heritage Agency’s grants for innovative projects by professional museums.</p>" }, "name": { "fi": "Aikakone", "sv": "Tidmaskin", "en": "Time machine" }, "info_url": { "fi": "https://www.helsinginkaupunginmuseo.fi/nayttelyt/aikakone/", "sv": "https://www.helsinginkaupunginmuseo.fi/sv/utstallningar/tidsmaskin/", "en": "https://www.helsinginkaupunginmuseo.fi/en/exhibitions/time-machine/" }, "location_extra_info": { "fi": "", "sv": "", "en": "" }, "short_description": { "fi": "Astu aikamatkalle menneisyyden Helsinkiin! Aikakone herättää Signe Branderin sadan vuoden takaiset valokuvat Helsingistä eloon uuden teknologian avulla. ", "sv": "Vällkommen med på en tidsresa till ett svunnet Helsingfors! ", "en": "Travel back in time to the Helsinki of the past! " }, "provider": { "fi": "", "sv": "", "en": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23nmwzda/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo:129322", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20404/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "info_url": null, "price": { "fi": "12 / 10 euroa<br>\nAlle 18-vuotiaat ja yli 70-vuotiaat ilmaiseksi<br>\nKaikukortilla ja Helsinki Cardilla ilmainen sisäänpääsy" }, "description": null } ], "data_source": "espoo", "publisher": "espoo:kaupunki", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": null, "last_modified_time": "2021-02-09T10:13:01.456821Z", "date_published": "2017-11-22T14:11:00Z", "start_time": "2017-11-17T08:30:00Z", "end_time": "2025-12-30T22:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'17.11.2017':48C,109C '22.4.2018':129C '5000':94C 'aart':62C,139C 'ainutlaatuis':49C 'ast':130C 'aukio':21B,66C,112C,147C 'aukio-katseluvarasto':146C 'avasiv':46C 'avautui':110C 'avautunu':14B 'bryk':2A,26B,41C,51C,88C,134C,152C 'design':84C 'em':9A,10B,33C,56C,107C,128C,140C 'ensimmäin':75C,113C 'es':8A,106C,127C 'esin':95C 'esit':63C 'esittely':32B 'espo':34C,44C 'har':117C 'kansainvälisest':57C 'katseluvarasto':16B,72C,76C,148C 'kaupunk':45C 'kiinnostav':58C 'kokoelm':7A,55C,61C,103C,138C,156C 'koskis':118C 'kuratoim':119C 'käsittäv':102C 'laaja':6A,60C,92C 'laajennuks':85C 'life':121C,160C 'lisä':144C,150C,158C 'lue':143C,149C,157C 'luono':98C 'luova':30B 'mahdollisuud':80C 'mal':96C 'modern':35C 'muodo':73C 'muotoilij':116C 'museo':37C 'myös':111C 'myötä':86C 'nimis':67C 'näyttely':115C,125C,164C 'näyttelyid':19B,70C 'näyttelykeskus':11B,141C 'omistetu':24B 'perinö':31B 'perjant':47C,108C 'piirustu':97C 'poikkeuksellis':79C 'prototyyp':99C 'pysyv':105C 'retrospectiv':124C,163C 'rut':1A,25B,40C,50C,87C,133C,151C 'sekä':100C 'stil':120C,159C 'suome':74C 'säätiö':42C,91C 'taite':36C,82C 'tapio':4A,28B,38C,53C,89C,122C,136C,154C,161C 'tarjoa':77C 'tervetulo':131C 'tila':20B,68C 'tutustu':81C 'tutustum':132C 'uude':65C,145C 'uusi':15B 'vaihtuv':18B,69C,114C 'valokuv':101C 'weege':12B,142C 'wirkkal':5A,29B,39C,54C,90C,123C,137C,155C,162C 'yleisö':64C,78C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p> <br>\nEMMA – Espoon modernin taiteen museo, Tapio Wirkkala Rut Bryk Säätiö ja Espoon kaupunki avasivat perjantaina 17.11.2017 ainutlaatuisen Rut Brykin ja Tapio Wirkkalan kokoelman EMMAssa.</p><p>Kansainvälisestikin kiinnostavan ja laajan kokoelman aarteita esitellään yleisölle uudessa <em>Aukio</em>-nimisessä tilassa vaihtuvien näyttelyiden ja katseluvaraston muodossa. Suomen ensimmäinen katseluvarasto tarjoaa yleisölle poikkeuksellisen mahdollisuuden tutustua taiteeseen ja designiin.</p><p>Laajennuksen myötä Rut Bryk Tapio Wirkkalan säätiön laaja yli 5000 esinettä, mallia, piirustusta, luonnosta, prototyyppiä sekä valokuvaa käsittävä kokoelma on pysyvästi esille EMMAan. </p><p>Perjantaina 17.11.2017 avautui myös Aukion ensimmäinen vaihtuva näyttely, muotoilija Harri Koskisen kuratoima <em>STILL / LIFE – Tapio Wirkkala Retrospective</em>. Näyttely on esillä EMMAssa 22.4.2018 asti.</p><p>Tervetuloa tutustumaan Rut Brykin ja Tapio Wirkkalan kokoelmien aarteisiin EMMAan Näyttelykeskus WeeGeelle! </p><p>Lue lisää <a href=\"http://emma.museum/bryk_wirkkala_katseluvarasto\">uudesta Aukio-katseluvarastosta</a>.</p><p>Lue lisää <a href=\"http://emma.museum/kokoelmat/wirkkala\">Rut Brykin ja Tapio Wirkkalan kokoelmista.</a></p><p>Lue lisää <a href=\"http://www.emma.museum/still_life\">STILL / LIFE - Tapio Wirkkala Retrospective -näyttelystä.</a></p>" }, "name": { "fi": "Rut Brykin ja Tapio Wirkkalan laaja kokoelma esillä EMMAssa" }, "info_url": { "fi": "http://www.emma.museum/bryk_wirkkala_katseluvarasto" }, "location_extra_info": { "fi": "EMMA Espoon modernin taiteen museo / Näyttelykeskus WeeGee" }, "short_description": { "fi": "EMMAssa Näyttelykeskus WeeGeellä on avautunut uusi katseluvarasto ja vaihtuvien näyttelyiden tila Aukio, joka on omistettu Rut Brykin ja Tapio Wirkkalan luovan perinnön esittelylle." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:129322/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 12, "next": null, "previous": null }, "data": [ { "id": "helsinki:agcs7solg4", "location": { "@id": "