Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

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

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

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

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

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

See the result

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

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

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

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

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

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

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

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

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

See the result

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

See the result

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

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

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

See the result

event/?publisher_ancestor=ahjo:00001

See the result

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

See the result

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

See the result

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

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

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

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /linkedevents/v1/event/?end=2020-12-31&format=api&start=today
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 10,
        "next": null,
        "previous": null
    },
    "data": [
        {
            "id": "helsinki:aggnjuyayu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8675/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2851/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6889/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "18/12/0",
                        "sv": "18/12/0",
                        "en": "18/12/0"
                    },
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:3272340-6",
            "sub_events": [],
            "images": [
                {
                    "id": 101027,
                    "license": "cc_by",
                    "created_time": "2024-01-04T14:13:32.611538Z",
                    "last_modified_time": "2024-01-05T07:26:34.810921Z",
                    "name": "Tove Jansson: Juhlat maalla",
                    "url": "http://api.hel.fi/linkedevents/media/images/Juhlat-maalla_rajaus-2-scaled.jpg",
                    "cropping": "380,0,1900,1519",
                    "photographer_name": "HAM Helsinki / Tove Jansson",
                    "alt_text": "Maalaus nuoresta naisesta luonnon keskellä",
                    "data_source": "helsinki",
                    "publisher": "ytj:3272340-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/101027/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-01-04T14:14:07.310402Z",
            "last_modified_time": "2024-01-05T07:26:35.516645Z",
            "date_published": null,
            "start_time": "2019-11-23T09:30:00Z",
            "end_time": "2025-01-31T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "HAM esittelee freskojen lisäksi myös muita Tove Janssonin töitä vaihtuvissa ripustuksissa.",
                "sv": "Förutom freskerna presenterar HAM också andra verk av Tove Jansson i växlande upphängningar.",
                "en": "In addition to the frescoes, HAM also presents other works by Tove Jansson in changing installations."
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "sv": "HAM Helsingfors konstmuseum",
                "en": "HAM Helsinki Art Museum"
            },
            "name": {
                "fi": "Tove Jansson: Juhlat ja Leikki",
                "sv": "Tove Jansson: Fest och Spel",
                "en": "Tove Jansson: Party and Play"
            },
            "info_url": {
                "fi": "https://www.hamhelsinki.fi/exhibitions/tove-jansson/",
                "sv": "https://www.hamhelsinki.fi/sv/exhibitions/tove-jansson/",
                "en": "https://www.hamhelsinki.fi/en/exhibitions/tove-jansson/"
            },
            "description": {
                "fi": "<p>HAM esittelee freskojen lisäksi myös muita Tove Janssonin töitä vaihtuvissa ripustuksissa.</p><p>Helsingin kaupungintalossa avattiin vuonna 1947 henkilöstö- ja edustusravintola Kaupunginkellari, jonka seinille tilattiin Tove Janssonilta ajan tavan mukaisesti ”taidekoristelua”. Tilaaja oli apulaiskaupunginjohtaja Erik von Frenckell, Toven hyvän ystävän ja teatterinjohtaja Vivica Bandlerin isä.</p><p>Tilausta varten Tove Jansson luonnosteli kaksi kookasta juhla-aiheista seinämaalausta. Suunnitelmien hyväksynnän jälkeen Jansson toteutti varsinaisen maalausurakan nopeasti, kuudessa kuukaudessa. Siinä häntä avusti aluksi konservaattori Niilo Suihko, joka oli opiskellut freskomaalausta Italiassa. Juhlat maalla ja Juhlat kaupungissa -maalaukset ovat yhdistelmä fresko ja al secco -tekniikkaa, joiden teknistä toteutusta ideoi myös Toven isä, kuvanveistäjä Viktor Jansson.</p><p>Tove Jansson (1914–2001) oli todellinen taiteen monitaituri. Hän oli kuvataiteilija, kirjailija, sarjakuvapiirtäjä, kuvittaja ja käsikirjoittaja, joka parhaiten tunnetaan muumien luojana. HAM esittelee freskojen lisäksi myös muita Tove Janssonin töitä vaihtuvissa ripustuksissa, joiden yhteydessä on usein myös erityisesti nuoremmille vierailijoille sopivaa tekemistä.</p><p>Tervehdyttävä Leikki -kokonaisuudessa voi tutustua Tove Janssonin Auroran sairaalaan tekemiin maalauksiin ja napata itsestään valokuvan maalausten hahmojen kanssa. Lisäksi tilassa voi pysähtyä ihastelemaan Vaarallinen juhannus -kirjan kuvituksiin perustuvaa animointia tai koota suurista paloista koostuvaa palapeliä.&nbsp;</p><p>&nbsp;</p><p>HAM Helsinki</p><p>23.11.2019-31.1.2025</p><p>Sisäänpääsy 0-18€</p>",
                "sv": "<p>Förutom freskerna presenterar HAM också andra verk av Tove Jansson i växlande upphängningar.</p><p>År 1947 öppnades personal- och representationsrestaurangen Stadskällaren i Helsingfors stadshus. Enligt tidens anda beställde man ”konstutsmyckning” av Tove Jansson för restaurangens väggar. Beställaren var vice stadsdirektör Erik von Frenckell, Toves goda väns och teaterchef  Vivica Bandlers far.&nbsp;</p><p>För beställningen skisserade Tove Jansson två stora väggmålningar med festmotiv. Efter att planerna godkändes förverkligade Jansson det egentliga målningsarbetet snabbt, inom sex månader. I början fick hon hjälp av konservatorn Niilo Suihko som hade studerat freskomålning i Italien. Målningarna Fest på landet och Fest i stan är en kombination av al fresco och al secco-teknikerna och Toves far, skulptören Viktor Jansson kom även med idén för det tekniska genomförandet.&nbsp;</p><p>Tove Jansson (1914–2001) var verkligen en tusenkonstnär. Hon var bildkonstnär, författare, serietecknare, illustratör och manusförfattare och är bäst känd som mumintrollens skapare. Förutom freskerna presenterar HAM också andra verk av Tove Jansson i växlande upphängningar, ofta med aktiviteter som är särskilt lämpliga för yngre besökare.</p><p>I helheten Helande Lek kan du utforska Tove Janssons målningar för Aurorasjukhuset och ta ett foto av dig själv med figurerna i målningarna. Du kan också stanna upp och njuta av en animation baserad på illustrationerna i boken Farlig midsommar eller lägga pussel som består av stora bitar.</p><p>&nbsp;</p><p>HAM Helsinki</p><p>23.11.2019-31.1.2025</p><p>Sisäänpääsy 0-18€</p>",
                "en": "<p>In addition to the frescoes, HAM also presents other works by Tove Jansson in changing installations.</p><p>Helsinki City Hall’s new canteen and formal restaurant facility, Kaupunginkellari, opened in 1947. Jansson was commissioned to “decorate its walls”, as was the custom at that time. The commissioner was Deputy Mayor Erik von Frenckell, father of Tove’s good friend and theatre manager Vivica Bandler.&nbsp;</p><p>For the commission, Jansson drafted two large, party-themed wall paintings. After the drafts were approved, Jansson finished the paintings in just six months. Niilo Suihko, who had studied fresco painting in Italy, assisted her at the beginning. Both Party in the Countryside and Party in the City are a combination of the fresco and al secco techniques, and Tove’s father, sculptor Viktor Jansson, was involved in developing their technical implementation.&nbsp;</p><p>Tove Jansson (1914–2001) was an artistic multi-talent. She was an artist, writer, cartoonist, illustrator and scriptwriter, best known as the creator of the Moomins. In addition to the frescoes, HAM also presents other works by Tove Jansson in changing installations, often with activities especially suitable for younger visitors.</p><p>In Healing Play, you can explore the paintings Tove Jansson made for the Aurora Hospital and take a photo of yourself with the characters in the paintings. You can also stop to admire an animation based on the illustrations from the book Midsummer Madness or put together a jigsaw puzzle made up of large pieces.</p><p>&nbsp;</p><p>HAM Helsinki</p><p>23.11.2019-31.1.2025</p><p>Admission fee 0-18€</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aggnjuyayu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzarprjhy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16866/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "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/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-05-12T11:56:19.665014Z",
            "last_modified_time": "2023-12-28T10:56:17.044257Z",
            "date_published": null,
            "start_time": "2019-12-31T22:01:00Z",
            "end_time": "2024-12-31T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "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."
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Teatterimuseo",
                "en": "Theatre Museum"
            },
            "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"
            },
            "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>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzarprjhy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzapzc5sq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16866/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "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/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-05-12T07:58:26.210564Z",
            "last_modified_time": "2023-12-28T10:54:47.875233Z",
            "date_published": null,
            "start_time": "2019-12-31T22:01:00Z",
            "end_time": "2024-12-31T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "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. "
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Teatterimuseo",
                "en": "Theatre Museum"
            },
            "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"
            },
            "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>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzapzc5sq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzapwtbae",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "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/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-05-12T07:47:31.727363Z",
            "last_modified_time": "2023-12-28T10:53:37.570185Z",
            "date_published": null,
            "start_time": "2019-12-31T22:01:00Z",
            "end_time": "2024-12-31T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Teatterin ABC-sivustolla voi kokeilla Teatterimuseon ainutlaatuisia pukuja virtuaallisesti. "
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": "Teatterimuseo"
            },
            "name": {
                "fi": "Teatterimuseo: Teatterin ABC"
            },
            "info_url": {
                "fi": "http://veikko.teatterimuseo.fi/teatterinabc/"
            },
            "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&nbsp;<br>Vapaa pääsy</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzapwtbae/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af7ohjnmha",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21319/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "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/"
                    },
                    "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/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af7xqlozeu/?format=api"
                }
            ],
            "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/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-02-10T12:39:52.660895Z",
            "last_modified_time": "2023-10-23T10:35:36.520825Z",
            "date_published": null,
            "start_time": "2017-02-03T22:01:00Z",
            "end_time": "2024-12-31T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "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. "
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Designmuseo",
                "sv": "Designmuseet",
                "en": "Design Museum"
            },
            "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/"
            },
            "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.&nbsp;</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.&nbsp;</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>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af7ohjnmha/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "matko:16273",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20643/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8025/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "10€",
                        "sv": "10€",
                        "en": "10€"
                    },
                    "info_url": {
                        "fi": "http://www.mfa.fi",
                        "sv": "http://www.mfa.fi",
                        "en": "http://www.mfa.fi"
                    },
                    "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/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2023-10-23T10:31:34.611185Z",
            "date_published": "2010-03-26T22:00:00Z",
            "start_time": "2010-03-26T22:01:00Z",
            "end_time": "2024-12-31T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "provider_contact_info": null,
            "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. "
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Arkkitehtuurimuseo",
                "sv": "Arkitekturmuseet",
                "en": "Museum of Finnish Architecture"
            },
            "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"
            },
            "description": {
                "fi": "<p>Arkkitehtuurimuseon kauan kaivattu, pysyvä historianäyttely vie matkalle Suomen arkkitehtuurin vuosikymmeniin.&nbsp;</p><p>Eri kausien tyylipiirteitä, teknisiä ratkaisuja, materiaaleja ja sisustuksia seurataan ensimmäisten kotimaassa valmistuneiden arkkitehtien edustamasta kansallisromantiikasta klassismin, funktionalismin ja kansainvälisen maineen luoneen modernismin kautta 1970-luvulle.</p><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>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/matko:16273/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "hkm:3466",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8663/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22039/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4679/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8107/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": {
                        "fi": "Vapaa pääsy",
                        "sv": "Fritt inträde",
                        "en": "Free entry"
                    }
                }
            ],
            "data_source": "hkm",
            "publisher": "ahjo:u4804001020",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-28T06:11:03.175626Z",
            "last_modified_time": "2023-10-17T05:10:02.562962Z",
            "date_published": null,
            "start_time": "2010-02-01T09:00:00Z",
            "end_time": "2033-06-28T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Senaatintorin kulmalla Helsingin vanhimmissa kortteleissa sijaitsee siniharmaa Sederholmin talo, jok…",
                "sv": "Vid Senatstorgets hörn i Helsingfors äldsta kvarter finns det blågrå Sederholmska huset som blev…",
                "en": "Near the Senate Square, in the oldest city blocks of Helsinki, you can find the blue-grey Sederholm …"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Lasten kaupunki",
                "sv": "Barnens stad",
                "en": "Children’s Town"
            },
            "info_url": {
                "fi": "https://www.helsinginkaupunginmuseo.fi/nayttelyt/lasten-kaupunki/",
                "sv": "https://www.helsinginkaupunginmuseo.fi/sv/utstallningar/barnens-stad/",
                "en": "https://www.helsinginkaupunginmuseo.fi/en/exhibitions/childrens-town/"
            },
            "description": {
                "fi": "<p>Senaatintorin kulmalla Helsingin vanhimmissa kortteleissa sijaitsee siniharmaa Sederholmin talo, joka valmistui vuonna 1757. Se on Helsingin vanhin talo. Siellä sijaitsee pienimpien kaupunkilaisten oma Lasten kaupunki osana Helsingin kaupunginmuseota. Lasten kaupungissa leikki-ikäiset ja heidän seuralaisensa pääsevät tutustumaan Helsingin historiaan itse kokeillen ja yhdessä puuhaillen.</p><p>Lasten kaupungissa voi hypätä hevoskärryihin tai ohjata laivaa 1700-luvun tunnelmissa. Pienimmille museovieraille on oma merellinen leikki-, luku- ja leponurkkaus. Mummolassa saa tutkia 1970-luvun arjen esineitä ja katsoa televisiosta ajan suosikkiohjelmia. Viikonloppuisin mummolassa on mummo tai vaari kotona. 1930-luvun kansakoululuokkaan voi kuvitella tiukkailmeisen opettajan karttakeppeineen.</p><p>Tutkittavaa on paljon. Vitriineistä voi bongailla eri aikakausien suosikkileluja pikkuponeista mutanttikilpikonniin ja Tähtien sota -hahmoihin. Sederholmin 1700-luvun puodissa kauppaleikit kukoistavat. Teatterissa on käsinukkeja sekä hauskoja roolivaatteita ja roolikortteja. Kirjoitustaitojaan voi harjoittaa vanhan ajan välineillä hiekkapulpetista rihvelitauluun ja toisaalla leikkiä autoilla tai sisustaa suuren nukkekodin makunsa mukaan.</p><p>Lasten kaupungissa kaikkeen esillä olevaan saa koskea. Lapset leikkivät oman vanhempansa tai muun seuralaisensa vastuulla. Tervetuloa tutustumaan Helsingin historiaan omin käsin!</p><p><strong>Synttärit museossa!</strong></p><p>Lasten kaupunki on jo pitkään ollut suosittu syntymäpäiväjuhlien viettopaikka lapsiperheiden keskuudessa. Myynnissä nyt <a href=\"https://www.helsinginkaupunginmuseo.fi/2022/11/14/vieta-iloiset-juhlat-lasten-kaupungissa/\"><em>Synttärit museossa!</em></a> –juhlapaketit, jotka tarjoavat ikimuistoinen tutustumismatkan Helsingin historiaan päivänsankaria juhlistaen!</p><p>Kaupunginmuseo tekee yhteistyötä Helsingin kaupungin lastensuojelun kanssa tarjoamalla juhlapaketteja myös vähävaraisille perheille.⁣</p><p><em>Lastenvaunuille on katos museon sisäpihalla, jonne on kulku Aleksanterinkatu 16:n porttikongin kautta. Vaunut kannattaa jättää parkkiin katokseen ja jatkaa suoraan pääovesta sisään. Lasten kaupunkiin ei tilanahtauden vuoksi pääse lastenvaunuilla, mutta muualla museossa vaunuilla liikkuminen sujuu hyvin. Lasten kaupungin alakerrassa on eväidensyöntitila, jossa voi myös lämmittää ruokaa mikrossa.</em></p>&lt;h3 id=\"videot\"&gt;Lasten kaupunkiin pääsee myös kotisohvalta. Katso mainiot koko perheen videot!&lt;/h3&gt;<p>&nbsp;</p><p><strong>Lasten kaupunki Osa 1: Johan Sederholmin Helsinki</strong> Aikamatka 1700-luvun Helsinkiin alkaa tutustumalla talon rakennuttajan, kauppias <strong>Johan Sederholmin</strong> värikkäisiin vaiheisiin. Oppaana toimii <strong>Jonna Jylhä</strong>. Lasten kaupungissa, Helsingin keskustan vanhimmassa kivitalossa, niin lapset kuin aikuisetkin pääsevät tutustumaan entisaikojen kaupunkilaiselämään. Mukaan tarvitset vain uteliaan mielen ja hippusen mielikuvitusta.</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Lasten kaupunki Osa 2: Entisajan ammatteja</strong> Aikamatka 1700-luvun Helsingissä jatkuu. <strong>Jonna Jylhä</strong> johdattaa peruukintekijän ja suutarin verstaille. Kierroksella selviää muun muassa se, miksi entisaikaan käytettiin niin paljon peruukkeja ja mitä tarkoittaa vaaksa. Lasten kaupungissa, Helsingin keskustan vanhimmassa kivitalossa, niin lapset kuin aikuisetkin pääsevät tutustumaan entisaikojen kaupunkilaiselämään. Mukaan tarvitset vain uteliaan mielen ja hippusen mielikuvitusta.</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Lasten kaupunki Osa 3: Satamasta puotiin</strong> Laiva on saapunut satamaan ja sen mukanaan tuomat tavarat viedään <strong>Jonna Jylhän</strong> opastuksella myytäviksi <strong>Johan Sederholmin</strong> puotiin. Mitähän muuta puodista löytyy? Lasten kaupungissa, Helsingin keskustan vanhimmassa kivitalossa, niin lapset kuin aikuisetkin pääsevät tutustumaan entisaikojen kaupunkilaiselämään. Mukaan tarvitset vain uteliaan mielen ja hippusen mielikuvitusta.</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Vanhan ajan koulu Osa 1: Koulunkäynti ennen vanhaan</strong> Entisajan kansakoulussa opettajan sana oli laki ja tottelemattomuudesta rangaistiin. <strong>Suvi-Tuuli Waltari</strong> kertoo koulunkäynnistä aikana, jolloin oppilaat vastasivat opettajalle aina seisten ja koulupäivät alkoivat aamuhartaudella.</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Vanhan ajan koulu Osa 2: Kirjoitustunti</strong> Aikamatka 1930-luvun kansakouluun, jossa harjoitellaan tällä kertaa kaunokirjoitusta. Osallistumista varten tarvitset vain kirjoitusvälineet. Opettajana toimii <strong>Suvi-Tuuli Waltari</strong>.</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Vanhan ajan koulu Osa 3: Terveystunti</strong> Aikamatka 1930-luvun kansakouluun, jossa oppitunnin aiheena on tällä kertaa terveys. Ruumiin ja sielun puhtauden ja terveyden vaaliminen oli ennen tärkeä osa opetusta. Oikean yskimistavan ja käsienpesun muistaminen pelastavat henkiä tänäänkin.</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Lasten kaupunki: Mummola</strong> <strong>Annina Wallner</strong> esittelee mummolaa, jossa aika on pysähtynyt 1970-luvulle. Televisiosta löytyi silloin vain kaksi kanavaa ja puhelimella soittaessa piti aina jokainen numero pyörittää erikseen.</p><p>&nbsp;</p><p>&nbsp;</p><p><a href=\"http://www.helsinginkaupunginmuseo.fi/lasten-kaupungin-tekijatiedot/\">Tekijätiedot</a></p>",
                "sv": "<p>Vid Senatstorgets hörn i Helsingfors äldsta kvarter finns det blågrå Sederholmska huset som blev färdigt 1757. Det är det äldsta huset i Helsingfors. Där finns som en del av Helsingfors stadsmuseum Barnens stad för de minsta stadsborna. I Barnens stad kan barn i lekåldern och deras följeslagare bekanta sig med Helsingfors historia genom att själva experimentera och prova gemensamma aktiviteter.</p><p>I Barnens stad kan man hoppa upp på en hästvagn eller styra en båt i 1700-talets anda. För de minsta museigästerna finns en egen hörna där man kan leka, läsa och vila. I mormors hem får man undersöka vardagsföremål från 1970-talet och titta på den tidens favoritprogram på TV. Under veckosluten är mormor eller morfar hemma i mormors hem. I folkskoleklassrummet från 1930-talet kan man gott föreställa sig en lärare med sträng uppsyn och pekpinne.</p><p>Det finns mycket att titta på. I vitrinerna kan man se favoritleksaker från olika tidsperioder, allt från småponnyer till mutantsköldpaddor och Star Wars-figurer. I handelsboden från 1700-talet i Sederholmska huset kan man leka butik. I teatern finns det handdockor samt roliga rollkläder och rollkort. Man kan praktisera sina skrivkunskaper med hjälp av gammaldags redskap, som en skolbänk med sand eller griffeltavla, och leka med bilar eller inreda ett stort dockhus enligt eget tycke.</p><p>I Barnens stad får man röra allt som står framme. I Barnens stad ansvarar föräldrarna eller en annan följeslagare för barnen. Välkommen att genom lek bekanta dig med Helsingfors historia!</p><p><strong>Födiskalas på museet!</strong></p><p>Barnens stad har sedan länge varit populär hos barnfamiljer som en plats att fira födelsedagskalas på. Nu kan du köpa festpaketet <a href=\"https://www.helsinginkaupunginmuseo.fi/sv/2022/11/14/ha-en-trevlig-fest-i-barnens-stad/\"><em>Födelsedagskalas på museet!</em></a> som erbjuder en oförglömlig upptäcktsresa till Helsingfors historia medan du firar födelsedagsbarnet!</p><p>Stadsmuseet samarbetar med barnskyddet vid Helsingfors stad genom att erbjuda kalaspaket även till mindre bemedlade familjer.</p><p><em>Det finns ett skydd för barnvagnar på innergården. Dit kommer du via portgången vid Alexandersgatan 16. Du kan lämna barnvagnen i skyddet och fortsätta rakt in genom huvuddörren. Du kan inte ta barnvagnen in i Barnens stad på grund av utrymmesbrist, men i det övriga museet kan du röra dig med barnvagn. I den nedre våningen av Barnens stad finns en plats där du kan äta matsäck och även värma upp mat. </em></p>",
                "en": "<p>Near the Senate Square, in the oldest city blocks of Helsinki, you can find the blue-grey Sederholm House, built in 1757. It is the oldest house in Helsinki. There, as a part of the Helsinki City Museum, is located Children’s Town, an exhibition especially targeted at the youngest citizens. In Children’s Town, children and their companions can learn more about Helsinki’s history through own experiences and joint activities.</p><p>Children’s Town offers an opportunity to jump into a horse-drawn carriage or steer a ship in 18th century surroundings. For the youngest museum visitors, there is a special marine play, reading and rest corner. You can study everyday items from the 1970s in Grandma’s House and watch the favourite TV shows of the time. On weekends, a museum grandma or grandpa is at home in Grandma’s House. In the 1930s elementary school class, you can just picture a schoolmaster with a pointer and a stern face.</p><p>There is a lot to study and explore. Showcases feature favourite toys from different periods, from little ponies to mutant turtles and Star Wars figures. The Sederholm shop from the 18th century is a perfect environment for playing shop. Puppets and amusing role costumes and role cards are available in the theatre. You can practise your writing skills, using old tools from sandbox to blackboard, and in another room, you can play with cars or decorate the dolls’ house as you like.</p><p>In Children’s Town, everything that is on display may be touched. Children can play under the supervision of their parents or other accompanying adults.</p><p><strong>Birthday at the museum!</strong></p><p>Children’s Town has long been a popular venue for birthday parties for families with children. To celebrate the tenth anniversary, the museum is now launching its new <a href=\"https://www.helsinginkaupunginmuseo.fi/en/2022/11/14/arrange-a-joyful-party-at-the-childrens-town/\"><em>Birthday at the Museum!</em></a> party packages. The City Museum is working with the City of Helsinki’s Child Welfare to make these packages available to low-income families as well.</p><p><em>There is a shelter for prams in the courtyard that can be accessed through the gateway at Aleksanterinkatu 16. You can leave your pram in the shelter and enter the building through the main door. You cannot take prams to Children’s Town, due to lack of space, but other parts of museum are accessible with a pram. There is a place for eating snacks on the lower floor of Children’s Town, with a microwave oven for heating food.</em></p><p><a href=\"http://www.helsinginkaupunginmuseo.fi/lasten-kaupungin-tekijatiedot/\">Children's Town creators</a></p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/hkm:3466/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agcs7solg4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21189/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "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/"
                    },
                    "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/"
                    },
                    "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": "2023-11-28T13:01:17.142753Z",
                    "name": "Tekniikan museo",
                    "url": "http://api.hel.fi/linkedevents/media/images/P9104994.JPG",
                    "cropping": "240,0,1680,1440",
                    "photographer_name": "(c) Tekniikan museo",
                    "alt_text": "Ihmisiä tutustumassa museoon",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67302/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 5,
            "audience_max_age": 9,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "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."
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Tekniikan  museo",
                "sv": "Tekniska museet",
                "en": "Museum of Technology"
            },
            "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/"
            },
            "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>&nbsp;</p><p>Tekniikan museo</p><p>9.11.2019-31.12.2025</p><p>Suunnattu 5-9 -vuotiaille lapsille</p>",
                "sv": "<p>Utställningens&nbsp;fokus ligger på barns nyfikenhet, fantasi och utforskandets glädje.</p><p>&nbsp;</p><p>Utställningens&nbsp;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&nbsp;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>&nbsp;</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>&nbsp;</p><p>The exhibition includes different areas with different viewpoints into technology:&nbsp; 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>&nbsp;</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>&nbsp;</p><p>Museum of Technology</p><p>10.9.2016-31.12.2023</p><p>For children of 5 to 9 yrs</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcs7solg4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agcmhmphwi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:21189/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "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/"
                    },
                    "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/"
                    },
                    "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": "2023-11-28T13:01:17.142753Z",
                    "name": "Tekniikan museo",
                    "url": "http://api.hel.fi/linkedevents/media/images/P9104994.JPG",
                    "cropping": "240,0,1680,1440",
                    "photographer_name": "(c) Tekniikan museo",
                    "alt_text": "Ihmisiä tutustumassa museoon",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67302/?format=api",
                    "@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,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "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."
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "Tekniikan  museo",
                "sv": "Tekniska museet",
                "en": "Museum of Technology"
            },
            "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/"
            },
            "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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</p><p>Museum of Technology</p><p>1.10.2017-31.12.2027</p>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcmhmphwi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af23nmwzda",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8663/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10041/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1780/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18452/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22824/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2699/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8107/?format=api"
                }
            ],
            "registration": null,
            "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,
                    "price": null,
                    "info_url": 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/?format=api",
                    "@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,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "provider_contact_info": null,
            "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! "
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "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/"
            },
            "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>"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af23nmwzda/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}