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/?format=api&last_modified_since=2020-04-07&page=7150&show_deleted=True
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 146100,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&last_modified_since=2020-04-07&page=7151&show_deleted=True",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&last_modified_since=2020-04-07&page=7149&show_deleted=True"
    },
    "data": [
        {
            "id": "kulke:51924",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65214,
                    "license": "event_only",
                    "created_time": "2020-06-26T13:15:10.230415Z",
                    "last_modified_time": "2020-06-26T13:15:10.230441Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_674664.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65214/?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": "2020-06-26T13:15:10.185468Z",
            "last_modified_time": "2020-06-26T13:15:10.273278Z",
            "date_published": null,
            "start_time": "2020-10-02T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Myyrän seikkailut (S) – Skidikino"
            },
            "description": {
                "fi": "<p>Tsekkiläisen Zdenek Milerin iloinen pieni Myyrä on jo kauan ollut sekä lasten että aikuisten suursuosikki. Myyrä ystävineen kohtaa monia merkillisiä asioita seikkailuissaan.</p><p>Ikäsuositus: päiväkodeille</p><p>Kesto: noin 30 min.</p><p>Kieli: sanaton/suomi</p><p>---</p><p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata kotisivuiltamme.</p><p>Ryhmille pakolliset ennakkoilmoittautumiset 19.8. klo 10 alkaen: stoa.fi/fi/taidekasvatus</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E2F3143D3DC1C31D8E1478599ABAAD1D/Myyran_seikkailut_S_"
            },
            "provider": null,
            "short_description": {
                "fi": "Tsekkiläisen Zdenek Milerin iloinen pieni Myyrä on jo kauan ollut sekä lasten että aikuisten suursuosikki. Myyrä ystävineen kohtaa monia merkillisiä asioita seikkailuissaan."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51924/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51925",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65213,
                    "license": "event_only",
                    "created_time": "2020-06-26T13:15:10.080384Z",
                    "last_modified_time": "2020-06-26T13:15:10.080405Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_674663.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65213/?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": "2020-06-26T13:15:10.016643Z",
            "last_modified_time": "2020-06-26T13:15:10.125335Z",
            "date_published": null,
            "start_time": "2020-10-02T06:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Myyrän seikkailut (S) – Skidikino"
            },
            "description": {
                "fi": "<p>Tsekkiläisen Zdenek Milerin iloinen pieni Myyrä on jo kauan ollut sekä lasten että aikuisten suursuosikki. Myyrä ystävineen kohtaa monia merkillisiä asioita seikkailuissaan.</p><p>Ikäsuositus: päiväkodeille</p><p>Kesto: noin 30 min.</p><p>Kieli: sanaton/suomi</p><p>---</p><p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata kotisivuiltamme.</p><p>Ryhmille pakolliset ennakkoilmoittautumiset 19.8. klo 10 alkaen: stoa.fi/fi/taidekasvatus</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/2FA580FF4DA1FC6AF5F0C15CA8E9EDA6/Myyran_seikkailut_S_"
            },
            "provider": null,
            "short_description": {
                "fi": "Tsekkiläisen Zdenek Milerin iloinen pieni Myyrä on jo kauan ollut sekä lasten että aikuisten suursuosikki. Myyrä ystävineen kohtaa monia merkillisiä asioita seikkailuissaan."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51925/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzouopiie",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17179/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17728/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6198/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzouope6e/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1804561293001533/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/HelsinkiKymp",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/helsinkikymp",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 65124,
                    "license": "event_only",
                    "created_time": "2020-06-25T06:42:49.277520Z",
                    "last_modified_time": "2020-06-25T06:42:49.277543Z",
                    "name": "popup_tapahtuma_linkedevents.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/popup_tapahtuma_linkedevents.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Helsinki KYMP",
                    "alt_text": "merenrantanäkymä Vallisaaresta, ihmisiä istumassa rantakallion päällä kesäpäivänä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65124/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-06-25T06:46:03.086836Z",
            "last_modified_time": "2020-06-26T13:07:22.027575Z",
            "date_published": null,
            "start_time": "2020-07-15T09:00:00Z",
            "end_time": "2020-07-15T15:59: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,
            "name": {
                "fi": "Oodi Helsingin luonnolle pop-up",
                "sv": "Ode till Helsingfors natur pop-up",
                "en": "Ode to the Nature of Helsinki pop-up events"
            },
            "description": {
                "fi": "<p>Heinäkuun keskiviikkoina klo 12 luontoaiheisilla pop-up pisteillä Oodin ala-aulassa voit tutustua mm. Helsingin luontoon, retkikohteisiin, vapaaehtoistoimintaan, tutkimuksiin ja älyratkaisuihin, sekä kysyä asiantuntijoilta. Tule paikan päälle tai esitä kysymys tapahtumapäivänä facebook-tapahtuman kautta: https://www.facebook.com/events/1804561293001533</p><p><b>Ohjelma, klo 12-18</b><br>Ohjelma tarkentuu lisäyksin!</p><p><b>1.7.2020</b><br>Vapaaehtoistyön koordinaattori Armi Koskela<br>SATAKOLKYT -hanke, Jenni Jelkänen</p><p><b>8.7.2020</b> <br>Urban Eco Islands, Annika Harlio ja Maria Suomela</p><p><b>15.7.2020</b><br>Harakan luontokeskus<br>Vesistötutkimustiimi</p><p><b>22.7.2020</b><br>Vanhankaupunginlahden ympäristösuunnittelija Kalle Meller</p><p><b>29.7.2020</b><br>Ilmoitetaan myöhemmin</p><p><br>Lisätiedot Oodi Helsingin luonnolle -näyttelystä: <br>www.hel.fi/brygga </p>",
                "sv": "<p>Pop-up punkter varje onsdag kl 12-18 i juli i Odes entréhall</p><p>Ode till Helsingfors natur – utställningens evenemang hittar du i centrumbibliotekets entrèhall på första våningen varje onsdag i juli.<br>Vid pop-up punkter i natur tema kan du lära dej känna bl.a. om Helsingfors natur, frivilligarbete, naturutflykter och innovationer.<br>Välkommen och träffa natur experter eller fråga på evenemangdagen på Facebook sidan av pop-up evenemang: https://www.facebook.com/events/1804561293001533<br></p>",
                "en": "<p>The public program of the exhibition The Ode to the Nature of Helsinki spreads to the lobby of Oodi Library in July! You are welcome to meet the environmental experts and discuss different topics around Helsinki’s nature every Wednesday in July from 12pm to 6pm. Get information on local natural sights, find out how to participate in volunteer work, talk and learn about environmental research and local innovative solutions. </p><p>It is possible to send questions also via the facebook event page: https://www.facebook.com/events/1804561293001533</p><p>Updated program can be found on the facebook event page.</p>"
            },
            "location_extra_info": {
                "fi": "Ala-aulan pop-up -pisteet"
            },
            "info_url": {
                "fi": "https://www.facebook.com/events/1804561293001533"
            },
            "provider": null,
            "short_description": {
                "fi": "Oodi Helsingin luonnolle -näyttelyn oheistapahtumat levittäytyvät keskustakirjaston ala-aulaan heinäkuun keskiviikkoina.",
                "sv": "Pop-up punkter varje onsdag kl 12-18 i juli i Odes entréhall",
                "en": "The public program of the exhibition The Ode to the Nature of Helsinki spreads to the lobby of Oodi Library in July!"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzouopiie/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzouophre",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17179/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17728/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6198/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzouope6e/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1804561293001533/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/HelsinkiKymp",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/helsinkikymp",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 65124,
                    "license": "event_only",
                    "created_time": "2020-06-25T06:42:49.277520Z",
                    "last_modified_time": "2020-06-25T06:42:49.277543Z",
                    "name": "popup_tapahtuma_linkedevents.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/popup_tapahtuma_linkedevents.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Helsinki KYMP",
                    "alt_text": "merenrantanäkymä Vallisaaresta, ihmisiä istumassa rantakallion päällä kesäpäivänä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65124/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-06-25T06:46:02.902673Z",
            "last_modified_time": "2020-06-26T13:07:21.964464Z",
            "date_published": null,
            "start_time": "2020-07-01T09:00:00Z",
            "end_time": "2020-07-01T15:59: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,
            "name": {
                "fi": "Oodi Helsingin luonnolle pop-up",
                "sv": "Ode till Helsingfors natur pop-up",
                "en": "Ode to the Nature of Helsinki pop-up events"
            },
            "description": {
                "fi": "<p>Heinäkuun keskiviikkoina klo 12 luontoaiheisilla pop-up pisteillä Oodin ala-aulassa voit tutustua mm. Helsingin luontoon, retkikohteisiin, vapaaehtoistoimintaan, tutkimuksiin ja älyratkaisuihin, sekä kysyä asiantuntijoilta. Tule paikan päälle tai esitä kysymys tapahtumapäivänä facebook-tapahtuman kautta: https://www.facebook.com/events/1804561293001533</p><p><b>Ohjelma, klo 12-18</b><br>Ohjelma tarkentuu lisäyksin!</p><p><b>1.7.2020</b><br>Vapaaehtoistyön koordinaattori Armi Koskela<br>SATAKOLKYT -hanke, Jenni Jelkänen</p><p><b>8.7.2020</b> <br>Urban Eco Islands, Annika Harlio ja Maria Suomela</p><p><b>15.7.2020</b><br>Harakan luontokeskus<br>Vesistötutkimustiimi</p><p><b>22.7.2020</b><br>Vanhankaupunginlahden ympäristösuunnittelija Kalle Meller</p><p><b>29.7.2020</b><br>Ilmoitetaan myöhemmin</p><p><br>Lisätiedot Oodi Helsingin luonnolle -näyttelystä: <br>www.hel.fi/brygga </p>",
                "sv": "<p>Pop-up punkter varje onsdag kl 12-18 i juli i Odes entréhall</p><p>Ode till Helsingfors natur – utställningens evenemang hittar du i centrumbibliotekets entrèhall på första våningen varje onsdag i juli.<br>Vid pop-up punkter i natur tema kan du lära dej känna bl.a. om Helsingfors natur, frivilligarbete, naturutflykter och innovationer.<br>Välkommen och träffa natur experter eller fråga på evenemangdagen på Facebook sidan av pop-up evenemang: https://www.facebook.com/events/1804561293001533<br></p>",
                "en": "<p>The public program of the exhibition The Ode to the Nature of Helsinki spreads to the lobby of Oodi Library in July! You are welcome to meet the environmental experts and discuss different topics around Helsinki’s nature every Wednesday in July from 12pm to 6pm. Get information on local natural sights, find out how to participate in volunteer work, talk and learn about environmental research and local innovative solutions. </p><p>It is possible to send questions also via the facebook event page: https://www.facebook.com/events/1804561293001533</p><p>Updated program can be found on the facebook event page.</p>"
            },
            "location_extra_info": {
                "fi": "Ala-aulan pop-up -pisteet"
            },
            "info_url": {
                "fi": "https://www.facebook.com/events/1804561293001533"
            },
            "provider": null,
            "short_description": {
                "fi": "Oodi Helsingin luonnolle -näyttelyn oheistapahtumat levittäytyvät keskustakirjaston ala-aulaan heinäkuun keskiviikkoina.",
                "sv": "Pop-up punkter varje onsdag kl 12-18 i juli i Odes entréhall",
                "en": "The public program of the exhibition The Ode to the Nature of Helsinki spreads to the lobby of Oodi Library in July!"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzouophre/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzouoph4y",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17179/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17728/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6198/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzouope6e/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1804561293001533/",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/HelsinkiKymp",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/helsinkikymp",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 65124,
                    "license": "event_only",
                    "created_time": "2020-06-25T06:42:49.277520Z",
                    "last_modified_time": "2020-06-25T06:42:49.277543Z",
                    "name": "popup_tapahtuma_linkedevents.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/popup_tapahtuma_linkedevents.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Helsinki KYMP",
                    "alt_text": "merenrantanäkymä Vallisaaresta, ihmisiä istumassa rantakallion päällä kesäpäivänä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65124/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-06-25T06:46:02.994439Z",
            "last_modified_time": "2020-06-26T13:07:21.895755Z",
            "date_published": null,
            "start_time": "2020-07-08T09:00:00Z",
            "end_time": "2020-07-08T15:59: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,
            "name": {
                "fi": "Oodi Helsingin luonnolle pop-up",
                "sv": "Ode till Helsingfors natur pop-up",
                "en": "Ode to the Nature of Helsinki pop-up events"
            },
            "description": {
                "fi": "<p>Heinäkuun keskiviikkoina klo 12 luontoaiheisilla pop-up pisteillä Oodin ala-aulassa voit tutustua mm. Helsingin luontoon, retkikohteisiin, vapaaehtoistoimintaan, tutkimuksiin ja älyratkaisuihin, sekä kysyä asiantuntijoilta. Tule paikan päälle tai esitä kysymys tapahtumapäivänä facebook-tapahtuman kautta: https://www.facebook.com/events/1804561293001533</p><p><b>Ohjelma, klo 12-18</b><br>Ohjelma tarkentuu lisäyksin!</p><p><b>1.7.2020</b><br>Vapaaehtoistyön koordinaattori Armi Koskela<br>SATAKOLKYT -hanke, Jenni Jelkänen</p><p><b>8.7.2020</b> <br>Urban Eco Islands, Annika Harlio ja Maria Suomela</p><p><b>15.7.2020</b><br>Harakan luontokeskus<br>Vesistötutkimustiimi</p><p><b>22.7.2020</b><br>Vanhankaupunginlahden ympäristösuunnittelija Kalle Meller</p><p><b>29.7.2020</b><br>Ilmoitetaan myöhemmin</p><p><br>Lisätiedot Oodi Helsingin luonnolle -näyttelystä: <br>www.hel.fi/brygga </p>",
                "sv": "<p>Pop-up punkter varje onsdag kl 12-18 i juli i Odes entréhall</p><p>Ode till Helsingfors natur – utställningens evenemang hittar du i centrumbibliotekets entrèhall på första våningen varje onsdag i juli.<br>Vid pop-up punkter i natur tema kan du lära dej känna bl.a. om Helsingfors natur, frivilligarbete, naturutflykter och innovationer.<br>Välkommen och träffa natur experter eller fråga på evenemangdagen på Facebook sidan av pop-up evenemang: https://www.facebook.com/events/1804561293001533<br></p>",
                "en": "<p>The public program of the exhibition The Ode to the Nature of Helsinki spreads to the lobby of Oodi Library in July! You are welcome to meet the environmental experts and discuss different topics around Helsinki’s nature every Wednesday in July from 12pm to 6pm. Get information on local natural sights, find out how to participate in volunteer work, talk and learn about environmental research and local innovative solutions. </p><p>It is possible to send questions also via the facebook event page: https://www.facebook.com/events/1804561293001533</p><p>Updated program can be found on the facebook event page.</p>"
            },
            "location_extra_info": {
                "fi": "Ala-aulan pop-up -pisteet"
            },
            "info_url": {
                "fi": "https://www.facebook.com/events/1804561293001533"
            },
            "provider": null,
            "short_description": {
                "fi": "Oodi Helsingin luonnolle -näyttelyn oheistapahtumat levittäytyvät keskustakirjaston ala-aulaan heinäkuun keskiviikkoina.",
                "sv": "Pop-up punkter varje onsdag kl 12-18 i juli i Odes entréhall",
                "en": "The public program of the exhibition The Ode to the Nature of Helsinki spreads to the lobby of Oodi Library in July!"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzouoph4y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51375",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65161,
                    "license": "event_only",
                    "created_time": "2020-06-25T10:16:50.237650Z",
                    "last_modified_time": "2020-06-25T10:16:50.237669Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670417.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65161/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-25T10:16:50.171375Z",
            "last_modified_time": "2020-06-26T12:16:35.496670Z",
            "date_published": null,
            "start_time": "2020-10-26T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Hei, hei, linnut – Taideneuvola",
                "sv": "Hei, hei, linnut – Konstrådgivningen",
                "en": "Hei, hei, linnut – The Art Clinic"
            },
            "description": {
                "fi": "<p>Varma syksyn merkki on se, kun muuttolinnut alkavat lähteä pois Suomesta.</p><p>Jotkut linnut tekevät uskomattoman pitkän lentomatkan viettääkseen talven paikassa, jossa ei ole niin kylmää kuin Suomessa. Opettelemme tunnistamaan muuttolintuja ulkonäön ja äänen perusteella ja tutkimme kartoista, mihin kauas ne lentävät. Teemme myös taittelemalla, leikkaamalla ja liimaamalla omat paperilinnut. Opettajana Anne Rossi-Horto.</p><p>Taideneuvola innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Neuvola antaa ideoita myös taiteen kohtaamiseen kotona arjen keskellä. Taideneuvolan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. <br> <br>Samana päivänä järjestettävien opetuskertojen sisältö on samanlainen. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>3–6-v lapsi aikuisen kanssa</p><p>Työskentelykieli: Suomi</p><p>30 paikkaa</p>",
                "sv": "<p>Hej, hej, fåglarna. Vi lär oss känna igen flyttfåglar på utseende och ljud, och utforskar kartor för hur långt de flyger.</p><p>Vi lär oss känna igen flyttfåglar på utseende och ljud, och utforskar kartor för hur långt de flyger. Vi skapar också våra egna pappersfåglar.</p><p>Konstrådgivningen handleder och uppmuntrar hemmavarande helsingforsföräldrar och barn (3–6 år) att skapa och uppleva konst tillsammans. Verksamheten ger också information och idéer on hur man kan ordna utrymme och tid i hemmet för möten med konsten. Det finns plats för 30 först anmälda.</p><p>Arbetsspråk: Finska</p>",
                "en": "<p>Bye, bye birdies. We will learn to recognise migratory birds based on their appearance and sound and study the maps to see how far they fly.</p><p>We will also make our own paper birds.</p><p>The Art Clinic (for 3 to 6 year-olds accompanied by an adult) guides and inspires stay-at-home parents and children to make and experience art together. Activities also provide information and ideas on how to find time and space in everyday life at home, for encounters with art. There is room for the first 30 participants.</p><p>Language: In Finnish</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/62DECF046C0AF23796CE312C230610DC/Hei_hei_linnut",
                "sv": "http://www.annantalo.fi/sv/evenemangen/event/62DECF046C0AF23796CE312C230610DC/Hei_hei_linnut",
                "en": "http://www.annantalo.fi/en/events/event/62DECF046C0AF23796CE312C230610DC/Hei_hei_linnut"
            },
            "provider": null,
            "short_description": {
                "fi": "Varma syksyn merkki on se, kun muuttolinnut alkavat lähteä pois Suomesta.",
                "sv": "Hej, hej, fåglarna. Vi lär oss känna igen flyttfåglar på utseende och ljud, och utforskar kartor för hur långt de flyger.",
                "en": "Bye, bye birdies. We will learn to recognise migratory birds based on their appearance and sound and study the maps to see how far they fly."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51375/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:52131",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65209,
                    "license": "event_only",
                    "created_time": "2020-06-26T12:16:35.243645Z",
                    "last_modified_time": "2020-06-26T12:16:35.243664Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670388.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65209/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-26T12:16:35.190664Z",
            "last_modified_time": "2020-06-26T12:16:35.278752Z",
            "date_published": null,
            "start_time": "2020-10-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Woman at War (K16) – Kuukauden pohjoismainen elokuva",
                "sv": "Woman at War (F15) – Kuukauden pohjoismainen elokuva",
                "en": "Woman at War (PG-15) – Kuukauden pohjoismainen elokuva"
            },
            "description": {
                "fi": "<p>Halla on alkanut saada epäileviä katseita.</p><p>Voiko harmittomalta vaikuttava kuoronjohtaja ja yksinhuoltaja todella olla se paljon puhuttu naispuolinen ekoterroristi, joka on tehnyt sarjan iskuja Islannin taloutta ja infrastruktuuria vastaan? Women at War on omintakeinen islantilaisella temperamentilla ja huumorilla höystetty tarina rohkeasta naisesta, joka seuraa sydäntään. Elokuva on Islannin virallinen Oscar-ehdokas ja se on voittanut Pohjoismaisen Neuvoston elokuvapalkinnon ja useita elokuvafestivaalipalkintoja.</p><p>Ohjaus: Benedikt Erlingsson, Islanti 2018</p><p>Tekstitys: Suomeksi ja Ruotsiksi</p><p>K16</p><p>Kesto 100 min</p><p>Yhteistyössä: Walhalla</p>",
                "sv": "<p>Halla har börjat få misstänksamma blickar.</p><p>Kan denna ensamstående, till synes harmlösa körledare verkligen vara den omtalade kvinnliga ekoterrorist som genomfört en rad attentat mot Islands ekonomi och infrastruktur? Woman at War är en egensinnig historia om en modig kvinna som följer sitt hjärta, berättad med isländskt temperament och mycket humor. Filmen är Islands officiella Oscarsbidrag, som vann Nordiska rådets filmpris och flera filmfestivalpriser därtill.</p><p>16+</p><p>Regisserad av: Benedikt Erlingsson, Iceland 2018</p><p>Längt: 100 min</p><p>Undertexter: finska och svenska</p><p>I samarbete med Walhalla</p>",
                "en": "<p>The Nordic film of the month tells the story of choir conductor and single parent Halla, who is suspected of being the infamous ecoterrorist.</p><p>Directed by: Benedikt Erlingsson, Iceland 2018</p><p>R</p><p>Duration: 100 min</p><p>Language: Finnish & Swedish</p><p>Collaboration: Walhalla</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AEBF5434A793F42D9AF6DF9674D5CDF9/Woman_at_War_K16_",
                "sv": "http://www.malmitalo.fi/sv/evenemangen/event/AEBF5434A793F42D9AF6DF9674D5CDF9/Woman_at_War_F15_",
                "en": "http://www.malmitalo.fi/en/events/event/AEBF5434A793F42D9AF6DF9674D5CDF9/Woman_at_War_PG-15_"
            },
            "provider": null,
            "short_description": {
                "fi": "Halla on alkanut saada epäileviä katseita.",
                "sv": "Halla har börjat få misstänksamma blickar.",
                "en": "The Nordic film of the month tells the story of choir conductor and single parent Halla, who is suspected of being the infamous ecoterrorist."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:52131/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:52129",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65208,
                    "license": "event_only",
                    "created_time": "2020-06-26T12:16:35.079532Z",
                    "last_modified_time": "2020-06-26T12:16:35.079550Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670711.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65208/?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": "2020-06-26T12:16:35.017138Z",
            "last_modified_time": "2020-06-26T12:16:35.112301Z",
            "date_published": null,
            "start_time": "2020-10-22T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Hiiriä ja pöllöjä (K7) – Alakoulukino"
            },
            "description": {
                "fi": "<p>Meral ottaa lemmikikseen huoneestaan löytämänsä pienen hiiren.</p><p>Kun uudessa koulussa on vaikea saada ystäviä, tulee hiirestä myös Meralin ystävä. Lasten odottama leirikoulu luonnon helmassa tarjoaa vaihtelua arkeen, ja Meral ottaa uuden ystävänsä matkalle mukaan. Leirikoulusta muodostuu opettavainen kokemus ja jännittävä luontoseikkailu lapsille.</p><p>Elokuva kuvaa musikaalin ja huumorin keinoin tarkkanäköisesti lasten välistä vallankäyttöä ja ystävyyssuhteiden muodostumista lapsiryhmän sisällä. Aihepiiri laajentuu myös tietoa tarjoavaksi luontoelokuvaksi, jonka dramaattiset käänteet käsitellään kuitenkin lapsentasoisesti.</p><p>Ohjaus: Simone van Dusseldorp, Alankomaat 2016.</p><p>K7</p><p>Kesto 80 min</p><p>Kieli: Suomi</p><p>Pakollinen ennakkoilmoittautuminen esitykseen aukeaa 17.8. klo 12 osoitteessa:</p><p>https://www.kultus.fi/fi/tapahtumat/7344/alakoulukino-hiiria-ja-polloja</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/62A4940CE6203EFE279A12483CCA64BD/Hiiria_ja_polloja_K7_"
            },
            "provider": null,
            "short_description": {
                "fi": "Meral ottaa lemmikikseen huoneestaan löytämänsä pienen hiiren."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:52129/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51374",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65138,
                    "license": "event_only",
                    "created_time": "2020-06-25T08:16:46.176719Z",
                    "last_modified_time": "2020-06-25T08:16:46.176737Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670416.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-25T08:16:46.137766Z",
            "last_modified_time": "2020-06-26T12:16:34.601037Z",
            "date_published": null,
            "start_time": "2020-10-19T09:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Viitta viuhahtaa – Taideneuvola",
                "sv": "Viitta viuhahtaa – Konstrådgivningen",
                "en": "Viitta viuhahtaa – The Art Clinic"
            },
            "description": {
                "fi": "<p>Roolivaatteet ovat houkutteleva osa kodin leikkivarastoa, ja nyt rikastutamme sitä uudella viitalla.</p><p>Viitta voi muuttua leikeissä myös hameeksi tai päähineeksi tai jopa majan oviaukoksi. Suunnittelemme ja toteutamme viitat tekstiiliväreillä kankaalle. Mahdollista on myös loihtia viitta kierrätysvaatteista. Opettajana Anne Rossi-Horto.</p><p>Taideneuvola innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Neuvola antaa ideoita myös taiteen kohtaamiseen kotona arjen keskellä. Taideneuvolan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain.</p><p>Samana päivänä järjestettävien opetuskertojen sisältö on samanlainen. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Mukaan mahtuu 30 ensimmäistä.</p><p>3–6-v lapsi aikuisen kanssa</p><p>Työskentelykieli: Suomi</p><p>30 paikkaa</p>",
                "sv": "<p>Slängkappan svischar! Hemmets kostymgarderob kompletteras med en slängkappa färgad med textilfärg.</p><p>Konstrådgivningen handleder och uppmuntrar hemmavarande helsingforsföräldrar och barn (3–6 år) att skapa och uppleva konst tillsammans. Verksamheten ger också information och idéer on hur man kan ordna utrymme och tid i hemmet för möten med konsten. Det finns plats för 30 först anmälda.</p><p>Arbetsspråk: Finska</p>",
                "en": "<p>Get your cloaks on! Add a new cloak, dyed with textile colours, to your wardrobe.</p><p>The Art Clinic (for 3 to 6 year-olds accompanied by an adult) guides and inspires stay-at-home parents and children to make and experience art together. Activities also provide information and ideas on how to find time and space in everyday life at home, for encounters with art. There is room for the first 30 participants.</p><p>Language: Finnish</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F32782AD66574A7B22AA73DCF7F89678/Viitta_viuhahtaa",
                "sv": "http://www.annantalo.fi/sv/evenemangen/event/F32782AD66574A7B22AA73DCF7F89678/Viitta_viuhahtaa",
                "en": "http://www.annantalo.fi/en/events/event/F32782AD66574A7B22AA73DCF7F89678/Viitta_viuhahtaa"
            },
            "provider": null,
            "short_description": {
                "fi": "Roolivaatteet ovat houkutteleva osa kodin leikkivarastoa, ja nyt rikastutamme sitä uudella viitalla.",
                "sv": "Slängkappan svischar! Hemmets kostymgarderob kompletteras med en slängkappa färgad med textilfärg.",
                "en": "Get your cloaks on! Add a new cloak, dyed with textile colours, to your wardrobe."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51374/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51373",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65137,
                    "license": "event_only",
                    "created_time": "2020-06-25T08:16:46.056013Z",
                    "last_modified_time": "2020-06-25T08:16:46.056033Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670415.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65137/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-25T08:16:45.993617Z",
            "last_modified_time": "2020-06-26T12:16:34.502158Z",
            "date_published": null,
            "start_time": "2020-10-19T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Viitta viuhahtaa – Taideneuvola",
                "sv": "Viitta viuhahtaa – Konstrådgivningen",
                "en": "Viitta viuhahtaa – The Art Clinic"
            },
            "description": {
                "fi": "<p>Roolivaatteet ovat houkutteleva osa kodin leikkivarastoa, ja nyt rikastutamme sitä uudella viitalla.</p><p>Viitta voi muuttua leikeissä myös hameeksi tai päähineeksi tai jopa majan oviaukoksi. Suunnittelemme ja toteutamme viitat tekstiiliväreillä kankaalle. Mahdollista on myös loihtia viitta kierrätysvaatteista. Opettajana Anne Rossi-Horto.</p><p>Taideneuvola innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Neuvola antaa ideoita myös taiteen kohtaamiseen kotona arjen keskellä. Taideneuvolan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain.</p><p>Samana päivänä järjestettävien opetuskertojen sisältö on samanlainen. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Mukaan mahtuu 30 ensimmäistä. <br>3–6-v lapsi aikuisen kanssa</p><p>Työskentelykieli: Suomi</p><p>30 paikkaa</p>",
                "sv": "<p>Slängkappan svischar! Hemmets kostymgarderob kompletteras med en slängkappa färgad med textilfärg.</p><p>Konstrådgivningen handleder och uppmuntrar hemmavarande helsingforsföräldrar och barn (3–6 år) att skapa och uppleva konst tillsammans. Verksamheten ger också information och idéer on hur man kan ordna utrymme och tid i hemmet för möten med konsten. Det finns plats för 30 först anmälda.</p><p>Arbetsspråk: Finska</p>",
                "en": "<p>Get your cloaks on! Add a new cloak, dyed with textile colours, to your wardrobe.</p><p>The Art Clinic (for 3 to 6 year-olds accompanied by an adult) guides and inspires stay-at-home parents and children to make and experience art together. Activities also provide information and ideas on how to find time and space in everyday life at home, for encounters with art. There is room for the first 30 participants.</p><p>Language: Finnish</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/35DC73AD087BF814D0DC808A4AE2E973/Viitta_viuhahtaa",
                "sv": "http://www.annantalo.fi/sv/evenemangen/event/35DC73AD087BF814D0DC808A4AE2E973/Viitta_viuhahtaa",
                "en": "http://www.annantalo.fi/en/events/event/35DC73AD087BF814D0DC808A4AE2E973/Viitta_viuhahtaa"
            },
            "provider": null,
            "short_description": {
                "fi": "Roolivaatteet ovat houkutteleva osa kodin leikkivarastoa, ja nyt rikastutamme sitä uudella viitalla.",
                "sv": "Slängkappan svischar! Hemmets kostymgarderob kompletteras med en slängkappa färgad med textilfärg.",
                "en": "Get your cloaks on! Add a new cloak, dyed with textile colours, to your wardrobe."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51373/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:52117",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65200,
                    "license": "event_only",
                    "created_time": "2020-06-26T10:16:39.764026Z",
                    "last_modified_time": "2020-06-26T10:16:39.764046Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670899.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65200/?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": "2020-06-26T10:16:39.618883Z",
            "last_modified_time": "2020-06-26T12:16:33.860353Z",
            "date_published": null,
            "start_time": "2020-10-13T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Paddington 2 (K7) – Syyslomaleffa",
                "sv": "Paddington 2 (7+) – Syyslomaleffa",
                "en": "Paddington 2 (PG) – Syyslomaleffa"
            },
            "description": {
                "fi": "<p>Brownien perheeseen onnellisesti asettunut Paddington on päässyt yhteisönsä suosioon jakaen iloa ja marmeladia, minne ikinä meneekään.</p><p>Etsiessään täydellistä lahjaa Lucy-tädilleen tämän 100-vuotissyntymäpäivän kunniaksi, hän löytää ainutlaatuisen ponnahduskirjan herra Gruberin antiikkipuodista. Voidakseen ostaa kirjan, Paddington ryhtyy tekemään kaikenlaisia hanttihommia. Mutta kun kirja varastetaan, on Paddingtonin ja Brownien tehtävä selvittää, kuka on varkauden takana.</p><p>Suomeksi puhutun version äänirooleissa esiintyvät Paavo Kerosuo, Tuukka Leppänen, Markus Bäckman, Eeva Soivio, Juhana Vaittinen, Karoliina Pyöriä, Ella Pyhältö, Maija-Liisa Peuhu, Taisto Oksanen, Heikki Kujanpää, Tiina Bergström, Markku Huhtamo</p><p>Varaus aukeaa ma 7.9. klo 12. Paikkoja voi varata max 5 kpl/varaaja:<br>https://www.kultus.fi/fi/tapahtumat/7348/syyslomaleffa-paddington-2-findub</p><p>K7</p><p>Kesto 103 min</p>",
                "sv": "<p>Paddington som lyckligt flyttat hem till familjen Brown har blivit populär genom att dela på glädje och marmelad.</p><p>Längt: 103 min</p><p>7+</p><p>Språk: Finska</p><p>förhandsregistrering mån 7.9. klo 12. platser kan bokas max 5 / booker:<br>https://www.kultus.fi/fi/tapahtumat/7348/syyslomaleffa-paddington-2-findub</p>",
                "en": "<p>Paddington, a happy new member of the Brown family, has become an audience favourite, bringing joy and marmalade to everyone.</p><p>Language: Finnish</p><p>PG</p><p>103 min</p><p>Pre-bookings on mon 7.9. 12:00. Maximum 5 bookings / person:<br>https://www.kultus.fi/fi/tapahtumat/7348/syyslomaleffa-paddington-2-findub</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D87F0505C65E43CB63C0A7ED672387E0/Paddington_2_K7_",
                "sv": "http://www.malmitalo.fi/sv/evenemangen/event/D87F0505C65E43CB63C0A7ED672387E0/Paddington_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D87F0505C65E43CB63C0A7ED672387E0/Paddington_2_PG_"
            },
            "provider": null,
            "short_description": {
                "fi": "Brownien perheeseen onnellisesti asettunut Paddington on päässyt yhteisönsä suosioon jakaen iloa ja marmeladia, minne ikinä meneekään.",
                "sv": "Paddington som lyckligt flyttat hem till familjen Brown har blivit populär genom att dela på glädje och marmelad.",
                "en": "Paddington, a happy new member of the Brown family, has become an audience favourite, bringing joy and marmalade to everyone."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:52117/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:52112",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65191,
                    "license": "event_only",
                    "created_time": "2020-06-26T08:16:45.744900Z",
                    "last_modified_time": "2020-06-26T08:16:45.744920Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670378.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65191/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-26T08:16:45.671129Z",
            "last_modified_time": "2020-06-26T12:16:33.404089Z",
            "date_published": null,
            "start_time": "2020-10-08T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Psycho (K16) – Kuukauden klassikko",
                "sv": "Psycho (F15) – Månadens klassiker",
                "en": "Psycho (PG-15) – Classic of the month"
            },
            "description": {
                "fi": "<p>Kauhuelokuvien klassikko Psyko on Alfred Hitchcockin kuuluisimpia, ellei kuuluisin ohjaustyö.</p><p>Psyko oli suorastaan uhkarohkea projekti ikääntyvälle Hollywood-mestarille. Paramount-studio piti tarinaa vastenmielisenä, joten Hitchcock tuotti elokuvan itse. Hän teki elokuvan pienellä budjetilla, mustavalkoisena ja käytti tv-sarjansa kuvausryhmää. Markkinoinnin Hitchcock hoiti suvereeniin tyyliinsä itse.</p><p>Riski kannatti, elokuvasta tuli heti suurmenestys. Vuonna 1960 valmistunut Psyko mullisti kauhuelokuvan genren, mutta sen vaikutus ulottui paljon laajemmalle koko elokuvakulttuuriin ja -bisnekseen.</p><p>Syrjäisessä motellissa yöpyvästä naisesta kertovan elokuvan pääosissa ovat Janet Leigh, Anthony Perkins ja Vera Miles. Sen enempää ei ensikertalaisille sovi kertoakaan. \"Ohjasin siinä katsojia. Voisi jopa sanoa minun soittaneen heitä kuin urkuja\", Hitchcock totesi François Truffaut'lle.</p><p>Psykon tärkeitä tekijöitä Hitchcockin lisäksi olivat ainakin elokuvan viiltävän musiikin säveltänyt Bernard Herrmann, leikkaaja George Tomasini sekä alkutekstijakson ja kuuluisan suihkukohtauksen suunnitellut Saul Bass. Elokuva perustuu Robert Blochin romaaniin, joka puolestaan perustuu hyvin löyhästi sarjamurhaaja Ed Geinin tapaukseen.</p><p>Kesto 109 min</p><p>K16</p>",
                "sv": "<p>Skräckfilmsklassikern Psycho är en av Alfred Hitchcocks mest berömda om inte den mest berömda regi.</p><p>For ages 16+</p>",
                "en": "<p>Classic horror movie Psycho is one of the most famous, if not the most famous, movie directed by Alfred Hitchcock.</p><p>Film Rating: R, 17+</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2806CB6120A4E63F9767BC5AE6C60A3D/Psycho_K16_",
                "sv": "http://www.malmitalo.fi/sv/evenemangen/event/2806CB6120A4E63F9767BC5AE6C60A3D/Psycho_F15_",
                "en": "http://www.malmitalo.fi/en/events/event/2806CB6120A4E63F9767BC5AE6C60A3D/Psycho_PG-15_"
            },
            "provider": null,
            "short_description": {
                "fi": "Kauhuelokuvien klassikko Psyko on Alfred Hitchcockin kuuluisimpia, ellei kuuluisin ohjaustyö.",
                "sv": "Skräckfilmsklassikern Psycho är en av Alfred Hitchcocks mest berömda om inte den mest berömda regi.",
                "en": "Classic horror movie Psycho is one of the most famous, if not the most famous, movie directed by Alfred Hitchcock."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:52112/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51368",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65121,
                    "license": "event_only",
                    "created_time": "2020-06-24T16:15:49.756198Z",
                    "last_modified_time": "2020-06-24T16:15:49.756216Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670408.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-24T16:15:49.721682Z",
            "last_modified_time": "2020-06-26T12:16:31.800924Z",
            "date_published": null,
            "start_time": "2020-09-21T09:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Majaleikkejä pihamaalla – Taideneuvola",
                "sv": "Majaleikkejä pihamaalla – Konstrådgivningen",
                "en": "Majaleikkejä pihamaalla – The Art Clinic"
            },
            "description": {
                "fi": "<p>Annantalon piha kutsuu meidät rakentamaan majoja kepeistä, naruista ja kankaista.</p><p>Muodostuuko majoista pieniä kyliä? Majat saavat jäädä pihaan leikittäviksi viikon ajaksi, eli leikki voi jatkua muinakin päivinä ja kavereita voi kutsua katsomaan majaa. Opettajana Anne Rossi-Horto.</p><p>Taideneuvola innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Neuvola antaa ideoita myös taiteen kohtaamiseen kotona arjen keskellä. Taideneuvolan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Samana päivänä järjestettävien opetuskertojen sisältö on samanlainen. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>3–6-v lapsi aikuisen kanssa</p><p>30 paikkaa</p><p>Kieli: Suomi</p>",
                "sv": "<p>Annegården bjuder in oss att bygga kojor av käppar, snören och dukar på dess gård.</p><p>Konstrådgivningen handleder och uppmuntrar hemmavarande helsingforsföräldrar och barn (3–6 år) att skapa och uppleva konst tillsammans. Verksamheten ger också information och idéer on hur man kan ordna utrymme och tid i hemmet för möten med konsten. Det finns plats för 30 först anmälda.</p><p>Arbetsspråk: Finska</p>",
                "en": "<p>Annantalo’s yard invites us to build forts using sticks, string and pieces of fabric.</p><p>The Art Clinic (for 3 to 6 year-olds accompanied by an adult) guides and inspires stay-at-home parents and children to make and experience art together. Activities also provide information and ideas on how to find time and space in everyday life at home, for encounters with art. There is room for the first 30 participants.</p><p>Language: Finnish</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/156F5F5745CB10E32E8A015501B8DD3E/Majaleikkeja_pihamaalla",
                "sv": "http://www.annantalo.fi/sv/evenemangen/event/156F5F5745CB10E32E8A015501B8DD3E/Majaleikkeja_pihamaalla",
                "en": "http://www.annantalo.fi/en/events/event/156F5F5745CB10E32E8A015501B8DD3E/Majaleikkeja_pihamaalla"
            },
            "provider": null,
            "short_description": {
                "fi": "Annantalon piha kutsuu meidät rakentamaan majoja kepeistä, naruista ja kankaista.",
                "sv": "Annegården bjuder in oss att bygga kojor av käppar, snören och dukar på dess gård.",
                "en": "Annantalo’s yard invites us to build forts using sticks, string and pieces of fabric."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51368/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51367",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 64986,
                    "license": "event_only",
                    "created_time": "2020-06-22T11:16:06.948362Z",
                    "last_modified_time": "2020-06-22T11:16:06.948391Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670407.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64986/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-22T11:16:06.880151Z",
            "last_modified_time": "2020-06-26T12:16:31.727506Z",
            "date_published": null,
            "start_time": "2020-09-21T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Majaleikkejä pihamaalla – Taideneuvola",
                "sv": "Majaleikkejä pihamaalla – Konstrådgivningen",
                "en": "Majaleikkejä pihamaalla – The Art Clinic"
            },
            "description": {
                "fi": "<p>Annantalon piha kutsuu meidät rakentamaan majoja kepeistä, naruista ja kankaista.</p><p>Muodostuuko majoista pieniä kyliä? Majat saavat jäädä pihaan leikittäviksi viikon ajaksi, eli leikki voi jatkua muinakin päivinä ja kavereita voi kutsua katsomaan majaa. Opettajana Anne Rossi-Horto.</p><p>Taideneuvola innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Neuvola antaa ideoita myös taiteen kohtaamiseen kotona arjen keskellä. Taideneuvolan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Samana päivänä järjestettävien opetuskertojen sisältö on samanlainen. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>3–6-v lapsi aikuisen kanssa</p><p>30 paikkaa</p><p>Kieli: Suomi</p>",
                "sv": "<p>Annegården bjuder in oss att bygga kojor av käppar, snören och dukar på dess gård.</p><p>Konstrådgivningen handleder och uppmuntrar hemmavarande helsingforsföräldrar och barn (3–6 år) att skapa och uppleva konst tillsammans. Verksamheten ger också information och idéer on hur man kan ordna utrymme och tid i hemmet för möten med konsten. Det finns plats för 30 först anmälda.</p><p>Arbetsspråk: Finska</p>",
                "en": "<p>Annantalo’s yard invites us to build forts using sticks, string and pieces of fabric.</p><p>The Art Clinic (for 3 to 6 year-olds accompanied by an adult) guides and inspires stay-at-home parents and children to make and experience art together. Activities also provide information and ideas on how to find time and space in everyday life at home, for encounters with art. There is room for the first 30 participants.</p><p>Language: Finnish</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/63153511B0DB9E1DE9F5406DC5E365E2/Majaleikkeja_pihamaalla_",
                "sv": "http://www.annantalo.fi/sv/evenemangen/event/63153511B0DB9E1DE9F5406DC5E365E2/Majaleikkeja_pihamaalla_",
                "en": "http://www.annantalo.fi/en/events/event/63153511B0DB9E1DE9F5406DC5E365E2/Majaleikkeja_pihamaalla_"
            },
            "provider": null,
            "short_description": {
                "fi": "Annantalon piha kutsuu meidät rakentamaan majoja kepeistä, naruista ja kankaista.",
                "sv": "Annegården bjuder in oss att bygga kojor av käppar, snören och dukar på dess gård.",
                "en": "Annantalo’s yard invites us to build forts using sticks, string and pieces of fabric."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51367/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51364",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 64955,
                    "license": "event_only",
                    "created_time": "2020-06-18T13:16:01.181017Z",
                    "last_modified_time": "2020-06-18T13:16:01.181056Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670404.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64955/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-18T13:16:01.138653Z",
            "last_modified_time": "2020-06-26T12:16:30.815641Z",
            "date_published": null,
            "start_time": "2020-09-07T09:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Peukalo-Liisan maailmassa – Taideneuvola",
                "sv": "Peukalo-Liisan maailmassa – Konstrådgivningen",
                "en": "Peukalo-Liisan maailmassa – The Art Clinic"
            },
            "description": {
                "fi": "<p>Oletko kuullut sadun pikkuruisesta Peukalo-Liisasta? Hän on niin pieni, että nukkuu kukan lehdillä ja lentää perhosen kyydissä.</p><p>Kuulemme hänen seikkailuistaan ja teemme omat pienet Peukalo-Liisa-nuket. Opettajana Anne Rossi-Horto.</p><p>Taideneuvola innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Neuvola antaa ideoita myös taiteen kohtaamiseen kotona arjen keskellä. Taideneuvolan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillakin.  Samana päivänä järjestettävien opetuskertojen sisältö on samanlainen. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>3–6-v lapsi aikuisen kanssa</p><p>30 paikkaa</p><p>Työskentelykieli: Suomi</p>",
                "sv": "<p>I verkstaden får vi höra om Tummelisas äventyr och skapa egna små Tummelisadockor.</p><p>Konstrådgivningen handleder och uppmuntrar hemmavarande helsingforsföräldrar och barn (3–6 år) att skapa och uppleva konst tillsammans. Verksamheten ger också information och idéer on hur man kan ordna utrymme och tid i hemmet för möten med konsten. Det finns plats för 30 först anmälda.</p><p>Språk: Finska</p>",
                "en": "<p>The participants of the workshop will hear about the adventures of tiny Thumbelina and make their own little Thumbelina dolls.</p><p>The Art Clinic (for 3 to 6 year-olds accompanied by an adult) guides and inspires stay-at-home parents and children to make and experience art together. Activities also provide information and ideas on how to find time and space in everyday life at home, for encounters with art. There is room for the first 30 participants.</p><p>Language: Finnish</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/ABC2A6A42CECD77EC54DFFCAAAD662EC/Peukalo-Liisan_maailmassa_",
                "sv": "http://www.annantalo.fi/sv/evenemangen/event/ABC2A6A42CECD77EC54DFFCAAAD662EC/Peukalo-Liisan_maailmassa_",
                "en": "http://www.annantalo.fi/en/events/event/ABC2A6A42CECD77EC54DFFCAAAD662EC/Peukalo-Liisan_maailmassa_"
            },
            "provider": null,
            "short_description": {
                "fi": "Oletko kuullut sadun pikkuruisesta Peukalo-Liisasta? Hän on niin pieni, että nukkuu kukan lehdillä ja lentää perhosen kyydissä.",
                "sv": "I verkstaden får vi höra om Tummelisas äventyr och skapa egna små Tummelisadockor.",
                "en": "The participants of the workshop will hear about the adventures of tiny Thumbelina and make their own little Thumbelina dolls."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51364/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51363",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 64954,
                    "license": "event_only",
                    "created_time": "2020-06-18T13:16:01.021954Z",
                    "last_modified_time": "2020-06-18T13:16:01.021974Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670403.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64954/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-18T13:16:00.860580Z",
            "last_modified_time": "2020-06-26T12:16:30.626744Z",
            "date_published": null,
            "start_time": "2020-09-07T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Peukalo-Liisan maailmassa – Taideneuvola",
                "sv": "Peukalo-Liisan maailmassa – Konstrådgivningen",
                "en": "Peukalo-Liisan maailmassa – The Art Clinic"
            },
            "description": {
                "fi": "<p>Oletko kuullut sadun pikkuruisesta Peukalo-Liisasta? Hän on niin pieni, että nukkuu kukan lehdillä ja lentää perhosen kyydissä.</p><p>Kuulemme hänen seikkailuistaan ja teemme omat pienet Peukalo-Liisa-nuket. Opettajana Anne Rossi-Horto.</p><p>Taideneuvola innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Neuvola antaa ideoita myös taiteen kohtaamiseen kotona arjen keskellä. Taideneuvolan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillakin. Samana päivänä järjestettävien opetuskertojen sisältö on samanlainen.</p><p>Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>30 paikkaa</p><p>3–6-v lapset aikuisen kanssa.</p><p>Työskentelykieli: Suomi</p>",
                "sv": "<p>I verkstaden får vi höra om Tummelisas äventyr och skapa egna små Tummelisadockor.</p><p>Konstrådgivningen handleder och uppmuntrar hemmavarande helsingforsföräldrar och barn (3–6 år) att skapa och uppleva konst tillsammans. Verksamheten ger också information och idéer on hur man kan ordna utrymme och tid i hemmet för möten med konsten. Det finns plats för 30 först anmälda.</p><p>Språk: Finska</p>",
                "en": "<p>The participants of the workshop will hear about the adventures of tiny Thumbelina and make their own little Thumbelina dolls.</p><p>The Art Clinic (for 3 to 6 year-olds accompanied by an adult) guides and inspires stay-at-home parents and children to make and experience art together. Activities also provide information and ideas on how to find time and space in everyday life at home, for encounters with art. There is room for the first 30 participants.</p><p>Language: Finnish</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/884ECEE90D2DC8734F06E10DC0E7975C/Peukalo-Liisan_maailmassa",
                "sv": "http://www.annantalo.fi/sv/evenemangen/event/884ECEE90D2DC8734F06E10DC0E7975C/Peukalo-Liisan_maailmassa",
                "en": "http://www.annantalo.fi/en/events/event/884ECEE90D2DC8734F06E10DC0E7975C/Peukalo-Liisan_maailmassa"
            },
            "provider": null,
            "short_description": {
                "fi": "Oletko kuullut sadun pikkuruisesta Peukalo-Liisasta? Hän on niin pieni, että nukkuu kukan lehdillä ja lentää perhosen kyydissä.",
                "sv": "I verkstaden får vi höra om Tummelisas äventyr och skapa egna små Tummelisadockor.",
                "en": "The participants of the workshop will hear about the adventures of tiny Thumbelina and make their own little Thumbelina dolls."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51363/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51643",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65155,
                    "license": "event_only",
                    "created_time": "2020-06-25T09:16:27.437187Z",
                    "last_modified_time": "2020-06-25T09:16:27.437216Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_672448.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-25T09:16:27.395103Z",
            "last_modified_time": "2020-06-26T11:16:38.134755Z",
            "date_published": null,
            "start_time": "2020-10-28T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Ihmeiden Aika – Teatteriryhmä Saturnus"
            },
            "description": {
                "fi": "<p>Mitä aika on? Miksi aika menee välillä nopeasti ja välillä hitaasti? Mitä kasvaminen tuo tullessaan? Ihmeiden aika on ryhmälähtöisesti työstetty mosaiikkimainen esitys ajasta, kasvamisesta ja niistä ihmeellisyyksistä, jotka näihin molempiin liittyvät.</p><p>Esiintyjät ovat 9–11-vuotiaita.</p><p>Tekijät/esiintyjät: Teatteriryhmä Saturnus</p><p>Dramaturgia ja ohjaus: Karoliina Helminen</p><p>Valo- ja äänisuunnittelu: Janne Storm</p><p>Puvustus: Niina Huovinen ja ryhmäläiset</p><p>Kesto: noin 25 min</p><p>Esitys sopii kaikenikäisille</p><p>Kieli: Suomi</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8A0894A39BE5DB23199390EF95542394/Ihmeiden_Aika"
            },
            "provider": null,
            "short_description": {
                "fi": "Mitä aika on? Miksi aika menee välillä nopeasti ja välillä hitaasti? Mitä kasvaminen tuo tullessaan? Ihmeiden aika on ryhmälähtöisesti työstetty mosaiikkimainen esitys ajasta, kasvamisesta ja niistä ihmeellisyyksistä, jotka näihin molempiin liittyvät."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51643/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51640",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65152,
                    "license": "event_only",
                    "created_time": "2020-06-25T09:16:26.738472Z",
                    "last_modified_time": "2020-06-25T09:16:26.738491Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_672436.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65152/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-06-25T09:16:26.676124Z",
            "last_modified_time": "2020-06-26T11:16:37.390303Z",
            "date_published": null,
            "start_time": "2020-10-21T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Ihmeiden aika – Teatteriryhmä Saturnus"
            },
            "description": {
                "fi": "<p>Mitä aika on? Miksi aika menee välillä nopeasti ja välillä hitaasti? Mitä kasvaminen tuo tullessaan? Ihmeiden aika on ryhmälähtöisesti työstetty mosaiikkimainen esitys ajasta, kasvamisesta ja niistä ihmeellisyyksistä, jotka näihin molempiin liittyvät.</p><p>Esiintyjät ovat 9–11-vuotiaita.</p><p>Tekijät/esiintyjät: Teatteriryhmä Saturnus</p><p>Dramaturgia ja ohjaus: Karoliina Helminen</p><p>Valo- ja äänisuunnittelu: Janne Storm</p><p>Puvustus: Niina Huovinen ja ryhmäläiset</p><p>Kesto: noin 25 min</p><p>Kieli: Suomi</p><p>Esitys sopii kaikenikäisille</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/60526F6A9B2AEB5C76453199C5230BC4/Ihmeiden_aika"
            },
            "provider": null,
            "short_description": {
                "fi": "Mitä aika on? Miksi aika menee välillä nopeasti ja välillä hitaasti? Mitä kasvaminen tuo tullessaan? Ihmeiden aika on ryhmälähtöisesti työstetty mosaiikkimainen esitys ajasta, kasvamisesta ja niistä ihmeellisyyksistä, jotka näihin molempiin liittyvät."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51640/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51631",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:102/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 65116,
                    "license": "event_only",
                    "created_time": "2020-06-24T14:16:48.885077Z",
                    "last_modified_time": "2020-06-24T14:16:48.885105Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_669331.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65116/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2020-06-24T14:16:48.844842Z",
            "last_modified_time": "2020-06-26T11:16:35.290362Z",
            "date_published": null,
            "start_time": "2020-10-01T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Kullervo – Teatteriryhmä Vire"
            },
            "description": {
                "fi": "<p>Kalevalan Kullervo on inspiroinut eri aikakausien taiteilijoita.</p><p>Heidän teoksiinsa tutustuessaan teatteriryhmä Vire löysi sopeutumattomasta Kullervosta sodan traumatisoiman lapsen. Sodan aiheuttama pakolaisuus ihmissalakuljettajineen tuo Kullervon tarinan tähän päivään. Kullervo on kaikkialla ulkopuolinen ja erilainen, ja lopulta vihan ja koston kierre tekee hänestä murhaajan. Perheen onnettomuutta lisäävät hajotetun perheen traagiset kohtaamiset.</p><p>Vireen Kullervolta on sankarinviitta riisuttu, mutta pohdittavaksi jää, kuka on syyllinen ja kuka syytön.</p><p>Kieli: Suomi</p><p>Ohjaus: Sari Tupamäki</p><p>Ikäsuositus: yli 10-vuotiaille</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E8AA3034ED6946E18E53580901B4E38B/Kullervo"
            },
            "provider": null,
            "short_description": {
                "fi": "Kalevalan Kullervo on inspiroinut eri aikakausien taiteilijoita."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51631/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51629",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:102/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 64987,
                    "license": "event_only",
                    "created_time": "2020-06-22T11:16:07.308160Z",
                    "last_modified_time": "2020-06-22T11:16:07.308180Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_669329.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64987/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2020-06-22T11:16:07.238652Z",
            "last_modified_time": "2020-06-26T11:16:34.349129Z",
            "date_published": null,
            "start_time": "2020-09-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "name": {
                "fi": "Kullervo – Teatteriryhmä Vire"
            },
            "description": {
                "fi": "<p>Kalevalan Kullervo on inspiroinut eri aikakausien taiteilijoita.</p><p>Heidän teoksiinsa tutustuessaan teatteriryhmä Vire löysi sopeutumattomasta Kullervosta sodan traumatisoiman lapsen. Sodan aiheuttama pakolaisuus ihmissalakuljettajineen tuo Kullervon tarinan tähän päivään. Kullervo on kaikkialla ulkopuolinen ja erilainen, ja lopulta vihan ja koston kierre tekee hänestä murhaajan. Perheen onnettomuutta lisäävät hajotetun perheen traagiset kohtaamiset.</p><p>Vireen Kullervolta on sankarinviitta riisuttu, mutta pohdittavaksi jää, kuka on syyllinen ja kuka syytön.</p><p>Kieli: Suomi</p><p>Ohjaus: Sari Tupamäki</p><p>Ikäsuositus: yli 10-vuotiaille</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/36DEC2B8F44898E43AF71092AA1DA034/Kullervo"
            },
            "provider": null,
            "short_description": {
                "fi": "Kalevalan Kullervo on inspiroinut eri aikakausien taiteilijoita."
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51629/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}